-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MIG] sale_order_lot_selection: Migration to 17.0
- Loading branch information
1 parent
e3582fe
commit 8f1fbb9
Showing
7 changed files
with
59 additions
and
61 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,6 +87,7 @@ Contributors | |
- Bhavesh Odedra <[email protected]> | ||
- François Honoré <[email protected]> | ||
- Florian da Costa <[email protected]> | ||
- Sander Lienaerts <[email protected]> | ||
|
||
Maintainers | ||
----------- | ||
|
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,28 +1,28 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<odoo> | ||
|
||
<record id="lot_cable" model="stock.lot"> | ||
<record id="lot_cable_demo" model="stock.lot"> | ||
<field name="product_id" ref="stock.product_cable_management_box" /> | ||
<field name="name">cbl mng</field> | ||
<field name="company_id" ref="base.main_company" /> | ||
</record> | ||
|
||
<record id="sale1" model="sale.order"> | ||
<record id="sale_order_demo" model="sale.order"> | ||
<field name="partner_id" ref="base.res_partner_1" /> | ||
<field name="user_id" ref="base.user_admin" /> | ||
</record> | ||
|
||
<record id="sol1" model="sale.order.line"> | ||
<field name="order_id" ref="sale_order_lot_selection.sale1" /> | ||
<record id="sale_order_line_1_demo" model="sale.order.line"> | ||
<field name="order_id" ref="sale_order_lot_selection.sale_order_demo" /> | ||
<field name="product_id" ref="stock.product_cable_management_box" /> | ||
<field name="product_uom_qty">1</field> | ||
<field name="lot_id" ref="sale_order_lot_selection.lot_cable" /> | ||
<field name="lot_id" ref="sale_order_lot_selection.lot_cable_demo" /> | ||
</record> | ||
<record id="sol2" model="sale.order.line"> | ||
<field name="order_id" ref="sale_order_lot_selection.sale1" /> | ||
<record id="sale_order_line_2_demo" model="sale.order.line"> | ||
<field name="order_id" ref="sale_order_lot_selection.sale_order_demo" /> | ||
<field name="product_id" ref="stock.product_cable_management_box" /> | ||
<field name="product_uom_qty">1</field> | ||
<field name="lot_id" ref="sale_order_lot_selection.lot_cable" /> | ||
<field name="lot_id" ref="sale_order_lot_selection.lot_cable_demo" /> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ | |
- Bhavesh Odedra \<<[email protected]>\> | ||
- François Honoré \<<[email protected]>\> | ||
- Florian da Costa \<<[email protected]>\> | ||
- Sander Lienaerts \<<[email protected]>\> |
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
File renamed without changes.