-
-
Notifications
You must be signed in to change notification settings - Fork 351
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[IMP]account_commission: possibility to add payment date limit on set…
…tle commissions
- Loading branch information
1 parent
6ad15f0
commit 8a9338b
Showing
5 changed files
with
52 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
account_commission/wizards/commission_make_settle_views.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<odoo> | ||
<record id="view_commission_make_settle_date_payment" model="ir.ui.view"> | ||
<field name="name">commission.make.settle.date.payment</field> | ||
<field name="model">commission.make.settle</field> | ||
<field name="inherit_id" ref="commission.view_settled_wizard" /> | ||
<field name="arch" type="xml"> | ||
<field name="date_to" position="after"> | ||
<field name="date_payment_to" /> | ||
</field> | ||
</field> | ||
</record> | ||
</odoo> |