Merge pull request #2718 from expsa/task_12230
fix(hr_termination): Task 12230
This commit is contained in:
commit
c039ee4c21
|
|
@ -7,7 +7,7 @@ from odoo import api, fields, models, _
|
|||
from odoo import exceptions
|
||||
import calendar
|
||||
|
||||
from odoo.odoo.exceptions import UserError
|
||||
from odoo.exceptions import UserError
|
||||
|
||||
date_format = "%Y-%m-%d"
|
||||
|
||||
|
|
@ -792,4 +792,4 @@ class TerminationReportXls(models.AbstractModel):
|
|||
sheet.write(y, m + 4, final_dic['total_sum']['five_year_price'], format2)
|
||||
sheet.write(y, m + 5, final_dic['total_sum']['amount'], format2)
|
||||
sheet.write(y, m + 6, final_dic['total_sum']['termination_price'], format2)
|
||||
sheet.write(y, m + 7, final_dic['total_sum']['total'], format2)
|
||||
sheet.write(y, m + 7, final_dic['total_sum']['total'], format2)
|
||||
|
|
|
|||
Loading…
Reference in New Issue