ambientWave
ambientWave
Migrating `commission`, `sale_commission`, `account_commission` and `hr_commission` - https://github.com/OCA/commission/pull/497 - https://github.com/OCA/commission/pull/498 - https://github.com/OCA/commission/pull/499 - https://github.com/OCA/commission/pull/525
The following error is seen in Odoo and OCB tests: ``` odoo-addon-account_commission @ file:///__w/commission/commission/account_commission + pip install -r test-requirements.txt -c test-constraints.txt WARNING: The directory '/github/home/.cache/pip' or its parent directory is...
@pedrobaeza Currently, there's a method named 'action_switch_invoice_into_refund_credit_note' that is called from 'account.move' model which seems to exist no more. As a quick solution, I had ported the method from Odoo...
``` def action_switch_move_type(self): if any(move.posted_before for move in self): raise ValidationError(_("You cannot switch the type of a posted document.")) if any(move.move_type == "entry" for move in self): raise ValidationError(_("This action...
@pedrobaeza Adapted successfully!
Hey @Tisho99 I have applied the requested changes. Could you check out the PR and review those?
@Tisho99 test-requirements.txt commit was dropped. All checks are passed
The following error from Odoo and OCB tests ``` odoo-addon-sale_commission @ file:///__w/commission/commission/sale_commission + pip install -r test-requirements.txt -c test-constraints.txt WARNING: The directory '/github/home/.cache/pip' or its parent directory is not owned...
@pedrobaeza Currently, there's a method named 'action_switch_invoice_into_refund_credit_note' that is called from 'account.move' model which seems to exist no more. What you would propose for a resolution? I ported the method...
@Tisho99 Commit history has been cleaned up!