Skip to content

Commit

Permalink
[15.0][MIG] product_supplierinfo_for_customer_picking: Migration to 15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Juany Davila authored and AaronHForgeFlow committed Jun 7, 2023
1 parent ca49911 commit 03ec2e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion product_supplierinfo_for_customer_picking/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Product Supplierinfo For Customer Picking",
"version": "14.0.1.0.2",
"version": "15.0.1.0.0",
"author": "Agile Business Group, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/stock-logistics-workflow",
"category": "Stock",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,4 @@ def _compute_product_customer_code(self):

product_customer_code = fields.Char(
compute="_compute_product_customer_code",
string="Product Customer Code",
)
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def test_product_supplierinfo_for_customer_picking(self):
"picking_type_id": self.env.ref("stock.picking_type_out").id,
}
)
delivery_picking.onchange_picking_type()
delivery_picking._onchange_picking_type()
delivery_picking = self.env["stock.picking"].create(
{
"partner_id": delivery_picking.partner_id.id,
Expand Down Expand Up @@ -72,7 +72,7 @@ def test_product_supplierinfo_two_costumers(self):
"picking_type_id": self.env.ref("stock.picking_type_out").id,
}
)
delivery_picking.onchange_picking_type()
delivery_picking._onchange_picking_type()
delivery_picking = self.env["stock.picking"].create(
{
"partner_id": delivery_picking.partner_id.id,
Expand Down

0 comments on commit 03ec2e3

Please sign in to comment.