account_edi_ubl_cii/tests/test_ubl_cii.py

152 lines
6.5 KiB
Python
Raw Permalink Normal View History

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from lxml import etree
from odoo import Command
from odoo.addons.account.tests.common import AccountTestInvoicingCommon
from odoo.tests import tagged
from odoo.tools import file_open
@tagged('post_install', '-at_install')
class TestAccountEdiUblCii(AccountTestInvoicingCommon):
@classmethod
def setUpClass(cls, chart_template_ref=None):
super().setUpClass(chart_template_ref=chart_template_ref)
cls.uom_units = cls.env.ref('uom.product_uom_unit')
cls.uom_dozens = cls.env.ref('uom.product_uom_dozen')
cls.displace_prdct = cls.env['product.product'].create({
'name': 'Displacement',
'uom_id': cls.uom_units.id,
'standard_price': 90.0,
})
cls.place_prdct = cls.env['product.product'].create({
'name': 'Placement',
'uom_id': cls.uom_units.id,
'standard_price': 80.0,
})
def test_import_product(self):
line_vals = [
{
'product_id': self.place_prdct.id,
'product_uom_id': self.uom_units.id,
'tax_ids': [self.company_data_2['default_tax_sale'].id]
}, {
'product_id': self.displace_prdct.id,
'product_uom_id': self.uom_units.id,
'tax_ids': [self.company_data_2['default_tax_sale'].id]
}, {
'product_id': self.displace_prdct.id,
'product_uom_id': self.uom_units.id,
'tax_ids': [self.company_data_2['default_tax_sale'].id]
}, {
'product_id': self.displace_prdct.id,
'product_uom_id': self.uom_dozens.id,
'tax_ids': [self.company_data_2['default_tax_sale'].id]
}
]
company = self.company_data_2['company']
company.country_id = self.env['res.country'].search([('code', '=', 'FR')])
company.vat = 'FR23334175221'
company.email = 'company@site.ext'
company.phone = '+33499999999'
company.zip = '78440'
company.partner_id.ubl_cii_format = 'facturx'
company.partner_id.bank_ids = [Command.create({
'acc_number': '999999',
'partner_id': company.partner_id.id,
'acc_holder_name': 'The Chosen One'
})]
invoice = self.env['account.move'].create({
'company_id': company.id,
'partner_id': company.partner_id.id,
'move_type': 'out_invoice',
'journal_id': self.company_data_2['default_journal_sale'].id,
'invoice_line_ids': [Command.create(vals) for vals in line_vals],
})
invoice.action_post()
template = self.env.ref('account.email_template_edi_invoice', raise_if_not_found=False)
print_wiz = self.env['account.move.send'].create({
'move_ids': invoice.ids,
'mail_template_id': template.id
})
print_wiz.checkbox_download = False
print_wiz.checkbox_send_mail = False
print_wiz.checkbox_send_by_post = False
print_wiz.checkbox_ubl_cii_xml = True
print_wiz.action_send_and_print()
facturx_attachment = invoice.ubl_cii_xml_id
xml_tree = etree.fromstring(facturx_attachment.raw)
# Testing the case where a product on the invoice has a UoM with a different category than the one in the DB
wrong_uom_line = xml_tree.findall('./{*}SupplyChainTradeTransaction/{*}IncludedSupplyChainTradeLineItem')[1]
wrong_uom_line.find('./{*}SpecifiedLineTradeDelivery/{*}BilledQuantity').attrib['unitCode'] = 'HUR'
facturx_attachment.raw = etree.tostring(xml_tree)
new_invoice = invoice.journal_id._create_document_from_attachment(facturx_attachment.ids)
self.assertRecordValues(new_invoice.invoice_line_ids, line_vals)
def test_import_tax_prediction(self):
""" We are going to create 2 tax and import the e-invoice twice.
On the first attempt, as there isn't any data to leverage, the classic 'search' will be called and we expect
the first tax created to be the selected one as the retrieval order is `sequence, id`.
We will set the second tax on the bill and post it which make it the most probable one.
On the second attempt, we expect that second tax to be retrieved.
"""
self.env.ref('base.EUR').active = True # EUR might not be active and is used in the xml testing file
if not hasattr(self.env["account.move.line"], '_predict_specific_tax'):
self.skipTest("The predictive bill module isn't install and thus prediction with edi can't be tested.")
# create 2 new taxes for the test seperatly to ensure the first gets the smaller id
new_tax_1 = self.env["account.tax"].create({
'name': 'tax with lower id could be retrieved first',
'amount_type': 'percent',
'type_tax_use': 'purchase',
'amount': 16.0,
})
new_tax_2 = self.env["account.tax"].create({
'name': 'tax with higher id could be retrieved second',
'amount_type': 'percent',
'type_tax_use': 'purchase',
'amount': 16.0,
})
file_path = "bis3_bill_example.xml"
file_path = f"{self.test_module}/tests/test_files/{file_path}"
with file_open(file_path, 'rb') as file:
xml_attachment = self.env['ir.attachment'].create({
'mimetype': 'application/xml',
'name': 'test_invoice.xml',
'raw': file.read(),
})
# Import the document for the first time
bill = self.env['account.journal']\
.with_context(default_journal_id=self.company_data["default_journal_purchase"].id)\
._create_document_from_attachment(xml_attachment.id)
# Ensure the first tax is retrieved as there isn't any prediction that could be leverage
self.assertEqual(bill.invoice_line_ids.tax_ids, new_tax_1)
# Set the second tax on the line to make it the most probable one
bill.invoice_line_ids.tax_ids = new_tax_2
bill.action_post()
# Import the bill again and ensure the prediction did his work
bill = self.env['account.journal']\
.with_context(default_journal_id=self.company_data["default_journal_purchase"].id)\
._create_document_from_attachment(xml_attachment.id)
self.assertEqual(bill.invoice_line_ids.tax_ids, new_tax_2)