Merge pull request #7543 from RobertSchouten/leave_allocation_fix
[fix] remove invalid parameter from leave allocation
This commit is contained in:
		
						commit
						548cf183ea
					
				| @ -93,7 +93,7 @@ class LeaveAllocation(Document): | |||||||
| 		 | 		 | ||||||
| 		if flt(leaves_taken) > flt(self.total_leaves_allocated): | 		if flt(leaves_taken) > flt(self.total_leaves_allocated): | ||||||
| 			if frappe.db.get_value("Leave Type", self.leave_type, "allow_negative"): | 			if frappe.db.get_value("Leave Type", self.leave_type, "allow_negative"): | ||||||
| 				frappe.msgprint(_("Note: Total allocated leaves {0} shouldn't be less than already approved leaves {1} for the period").format(self.total_leaves_allocated, leaves_taken), LessAllocationError) | 				frappe.msgprint(_("Note: Total allocated leaves {0} shouldn't be less than already approved leaves {1} for the period").format(self.total_leaves_allocated, leaves_taken)) | ||||||
| 			else: | 			else: | ||||||
| 				frappe.throw(_("Total allocated leaves {0} cannot be less than already approved leaves {1} for the period").format(self.total_leaves_allocated, leaves_taken), LessAllocationError) | 				frappe.throw(_("Total allocated leaves {0} cannot be less than already approved leaves {1} for the period").format(self.total_leaves_allocated, leaves_taken), LessAllocationError) | ||||||
| 
 | 
 | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user