Initial commit: Odoo 18.0-20251222 extra-addons
This commit is contained in:
1
account_invoice_pricelist_sale/tests/__init__.py
Normal file
1
account_invoice_pricelist_sale/tests/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from . import test_module
|
||||
45
account_invoice_pricelist_sale/tests/test_module.py
Normal file
45
account_invoice_pricelist_sale/tests/test_module.py
Normal file
@@ -0,0 +1,45 @@
|
||||
# Copyright (C) 2019 - Today: GRAP (http://www.grap.coop)
|
||||
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from odoo.tests.common import TransactionCase
|
||||
|
||||
|
||||
class TestModule(TransactionCase):
|
||||
def setUp(self):
|
||||
super().setUp()
|
||||
self.partner = self.env.ref("base.res_partner_12")
|
||||
self.product = self.env.ref("product.consu_delivery_01")
|
||||
self.product.invoice_policy = "order"
|
||||
|
||||
def test_main(self):
|
||||
# Create Pricelist
|
||||
pricelist = self.env["product.pricelist"].create({"name": "Demo Pricelist"})
|
||||
# Create Product
|
||||
order = self.env["sale.order"].create(
|
||||
{
|
||||
"partner_id": self.partner.id,
|
||||
"pricelist_id": pricelist.id,
|
||||
"order_line": [
|
||||
(
|
||||
0,
|
||||
0,
|
||||
{
|
||||
"name": self.product.name,
|
||||
"product_id": self.product.id,
|
||||
"product_uom_qty": 5,
|
||||
"product_uom": self.product.uom_id.id,
|
||||
"price_unit": self.product.list_price,
|
||||
"qty_delivered": 5,
|
||||
},
|
||||
),
|
||||
],
|
||||
}
|
||||
)
|
||||
order.action_confirm()
|
||||
invoice = order._create_invoices()
|
||||
self.assertEqual(
|
||||
invoice.pricelist_id,
|
||||
order.pricelist_id,
|
||||
"Invoice Pricelist has not been recovered from sale order",
|
||||
)
|
||||
Reference in New Issue
Block a user