Add employee on cycles for running and done states
1 unresolved thread
1 unresolved thread
Merge request reports
Activity
added production type::feature labels
assigned to @pokoli
added 1 commit
- d53af7ec91a1 - Add employee on cycles for running and done states
- Automatically resolved by Sergi Almacellas Abellana
- Automatically resolved by Sergi Almacellas Abellana
- Automatically resolved by Sergi Almacellas Abellana
requested review from @ced
added 108 commits
-
d53af7ec...7793a196 - 107 commits from branch
branch/default
- b54b496a2fd1 - Add employee on cycles for running and done states
-
d53af7ec...7793a196 - 107 commits from branch
added 32 commits
-
b54b496a...48396d9c - 31 commits from branch
branch/default
- 41144fc6b15a - Add employee on cycles for running and done states
-
b54b496a...48396d9c - 31 commits from branch
enabled an automatic merge when the pipeline for 41144fc6b15a succeeds
321 322 'readonly': Eval('state').in_(['done', 'draft', 'cancelled']), 322 323 }) 323 324 cost = fields.Numeric('Cost', digits=price_digits, readonly=True) 325 company = fields.Function( 326 fields.Many2One('company.company', "Company"), 327 'on_change_with_company', searcher='search_company') 328 run_by = employee_field("Run By", states={ 329 'readonly': Eval('state') != 'draft', 330 }) 331 done_by = employee_field("Done By", states={ 332 'readonly': Eval('state').in_(['draft', 'running']), 333 }) 334 cancelled_by = employee_field("Cancelled By", states={ 335 'readonly': Eval('state').in_(['draft', 'running']), 336 }) - Comment on lines +328 to +336
328 run_by = employee_field("Run By", states={ 329 'readonly': Eval('state') != 'draft', 330 }) 331 done_by = employee_field("Done By", states={ 332 'readonly': Eval('state').in_(['draft', 'running']), 333 }) 334 cancelled_by = employee_field("Cancelled By", states={ 335 'readonly': Eval('state').in_(['draft', 'running']), 336 }) 328 run_by = employee_field( 329 "Run By", 330 states={ 331 'readonly': Eval('state') != 'draft', 332 }) 333 done_by = employee_field( 334 "Done By", 335 states={ 336 'readonly': Eval('state').in_(['draft', 'running']), 337 }) 338 cancelled_by = employee_field( 339 "Cancelled By", 340 states={ 341 'readonly': Eval('state').in_(['draft', 'running']), 342 })
Please register or sign in to reply