Minor fixes

This commit is contained in:
oscar alvarez 2023-05-01 05:26:00 -05:00
parent 745799a2ec
commit 8fa37ef7c6
2 changed files with 6 additions and 7 deletions

View File

@ -276,7 +276,8 @@ class Payroll(metaclass=PoolMeta):
def get_days(self, start, end, wage_adjust_days_worked=None):
adjust = 1
# adjust_days_worked = False
adjust_days_worked = attrgetter('position.adjust_days_worked')(self.contract)
print("este contrato.--------", self.contract.id)
adjust_days_worked = self.contract.position.adjust_days_worked if self.contract else true
# print('this is', adj)
# if self.contract and self.contract.position:
# adjust_days_worked = self.contract.position.adjust_days_worked
@ -497,10 +498,8 @@ class Payroll(metaclass=PoolMeta):
PayrollLine = pool.get('staff.payroll.line')
MoveLine = pool.get('account.move.line')
LoanLine = pool.get('staff.loan.line')
self.process_loans_to_pay(LoanLine, PayrollLine, MoveLine)
# Configuration = Pool().get('staff.configuration')
# configuration = Configuration(1)
discounts = self.set_events(cache_wage_dict)
ctx = {
'absenteeism_days': self.absenteeism_days

View File

@ -1,5 +1,5 @@
[tryton]
version=6.0.6
version=6.0.7
depends:
company
account