-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[16.0][3825][IMP] stock_picking_accounting_date, stock_valuation_laye…
…r_accounting… (#86) * [IMP] stock_picking_accounting_date, stock_valuation_layer_accounting_date
- Loading branch information
1 parent
2d251d7
commit 78a0dd6
Showing
8 changed files
with
44 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
This module adds accounting date in picking and pass the value to accounting date | ||
of SVL's journal entry. | ||
This module adds an accounting date in both stock pickings and stock moves. | ||
The accounting date from the picking is propagated to its corresponding stock move. | ||
If a picking doesn't specify an accounting date, the stock move's accounting date | ||
will be set to the 'Effective Date'. This value is then passed to the SVL's journal entry | ||
accounting date. |
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_move_tree_acceptance_date_inherit" model="ir.ui.view"> | ||
<field name="name">stock.move.tree</field> | ||
<field name="model">stock.move</field> | ||
<field name="inherit_id" ref="stock.view_move_tree" /> | ||
<field name="arch" type="xml"> | ||
<xpath expr="//field[@name='reference']" position="before"> | ||
<field name="accounting_date" optional="show" /> | ||
</xpath> | ||
</field> | ||
</record> | ||
</odoo> |
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