mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-30 21:21:09 -04:00 
			
		
		
		
	fix amount int issue
This commit is contained in:
		| @ -296,7 +296,7 @@ export default { | ||||
|       }, | ||||
|       set: function (newValue) { | ||||
|         if (parseFloat(newValue) > 0) { | ||||
|           this.item.price = newValue * 100 | ||||
|           this.item.price = (newValue * 100).toFixed(2) | ||||
|           this.maxDiscount = this.item.price | ||||
|         } else { | ||||
|           this.item.price = newValue | ||||
|  | ||||
		Reference in New Issue
	
	Block a user