patch fix

This commit is contained in:
Rohit Waghchaure 2016-09-08 01:27:16 +05:30
parent a8b8d81e2a
commit aaa6d1f1bc
2 changed files with 5 additions and 5 deletions

View File

@ -29,8 +29,8 @@ def execute():
row.db_update() row.db_update()
si_doc.set_paid_amount() si_doc.set_paid_amount()
si_doc.db_set("paid_amount", si_doc.paid_amount) si_doc.db_set("paid_amount", si_doc.paid_amount, update_modified = False)
si_doc.db_set("base_paid_amount", si_doc.base_paid_amount) si_doc.db_set("base_paid_amount", si_doc.base_paid_amount, update_modified = False)
count +=1 count +=1

View File

@ -9,6 +9,6 @@ def execute():
ts = si_doc.append('timesheets',{}) ts = si_doc.append('timesheets',{})
ts.time_sheet = time_sheet.name ts.time_sheet = time_sheet.name
ts.billing_amount = time_sheet.total_billing_amount ts.billing_amount = time_sheet.total_billing_amount
si_doc.update_time_sheet(time_sheet.sales_invoice) ts.db_update()
si_doc.flags.ignore_validate_update_after_submit = True si_doc.calculate_billing_amount_from_timesheet()
si_doc.save() si_doc.db_set("total_billing_amount", si_doc.total_billing_amount, update_modified = False)