minor fix

This commit is contained in:
Wilson Gomez 2022-12-16 14:34:51 -05:00
parent 690671c1a1
commit 503d9b68a1
1 changed files with 6 additions and 5 deletions

View File

@ -801,11 +801,12 @@ class PayrollGroupStart(ModelView):
class PayrollGroup(Wizard):
'Payroll Group'
__name__ = 'staff.payroll_group'
start = StateView('staff.payroll_group.start',
'staff_payroll.payroll_group_start_view_form', [
Button('Cancel', 'end', 'tryton-cancel'),
Button('Accept', 'open_', 'tryton-ok', default=True),
])
start = StateView(
'staff.payroll_group.start',
'staff_payroll.payroll_group_start_view_form', [
Button('Cancel', 'end', 'tryton-cancel'),
Button('Accept', 'open_', 'tryton-ok', default=True),
])
open_ = StateTransition()
def transition_open_(self):