mirror of
https://github.com/bringout/oca-ocb-l10n_asia-pacific.git
synced 2026-04-25 12:01:59 +02:00
19.0 vanilla
This commit is contained in:
parent
7dc55599c6
commit
7f43bbbfcc
650 changed files with 45260 additions and 33436 deletions
|
|
@ -1,3 +1,4 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import test_bir_2307
|
||||
from . import common
|
||||
from . import test_bir_2307_generation
|
||||
|
|
|
|||
85
odoo-bringout-oca-ocb-l10n_ph/l10n_ph/tests/common.py
Normal file
85
odoo-bringout-oca-ocb-l10n_ph/l10n_ph/tests/common.py
Normal file
|
|
@ -0,0 +1,85 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
import io
|
||||
import unittest
|
||||
|
||||
try:
|
||||
from openpyxl import load_workbook
|
||||
except ImportError:
|
||||
load_workbook = None
|
||||
|
||||
from odoo.addons.account.tests.common import AccountTestInvoicingCommon
|
||||
|
||||
|
||||
class TestPhCommon(AccountTestInvoicingCommon):
|
||||
@classmethod
|
||||
@AccountTestInvoicingCommon.setup_country('ph')
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
|
||||
cls.company_data['company'].write({
|
||||
'name': 'Test Company',
|
||||
'street': '8 Super Street',
|
||||
'city': 'Super City',
|
||||
'zip': '8888',
|
||||
'country_id': cls.env.ref('base.ph').id,
|
||||
'vat': '123-456-789-123',
|
||||
})
|
||||
cls.partner_a.write({
|
||||
'name': 'Test Partner',
|
||||
'first_name': 'John',
|
||||
'middle_name': 'Doe',
|
||||
'last_name': 'Smith',
|
||||
'street': '9 Super Street',
|
||||
'city': 'Super City',
|
||||
'zip': '8888',
|
||||
'country_id': cls.env.ref('base.ph').id,
|
||||
'vat': '789-456-123-789',
|
||||
})
|
||||
cls.partner_b.write({
|
||||
'name': 'Test Partner Company',
|
||||
'property_payment_term_id': cls.pay_terms_a.id,
|
||||
'property_supplier_payment_term_id': cls.pay_terms_a.id,
|
||||
'street': '10 Super Street',
|
||||
'city': 'Super City',
|
||||
'zip': '8888',
|
||||
'country_id': cls.env.ref('base.ph').id,
|
||||
'is_company': True,
|
||||
'vat': '789-456-123-456',
|
||||
})
|
||||
cls.partner_c = cls.env['res.partner'].create({
|
||||
'name': 'Test Partner Company Member',
|
||||
'property_payment_term_id': cls.pay_terms_a.id,
|
||||
'property_supplier_payment_term_id': cls.pay_terms_a.id,
|
||||
'property_account_position_id': cls.fiscal_pos_a.id,
|
||||
'property_account_receivable_id': cls.company_data['default_account_receivable'].copy().id,
|
||||
'property_account_payable_id': cls.company_data['default_account_payable'].copy().id,
|
||||
'street': '10 Super Street',
|
||||
'city': 'Super City',
|
||||
'zip': '8888',
|
||||
'country_id': cls.env.ref('base.ph').id,
|
||||
'vat': '789-456-123-123',
|
||||
'company_id': False,
|
||||
'parent_id': cls.partner_b.id,
|
||||
})
|
||||
|
||||
def _test_xlsx_file(self, file_content, expected_values):
|
||||
""" Takes in the binary content of a xlsx file and a dict of expected values.
|
||||
It will then parse the file in order to compare the values with the expected ones.
|
||||
The expected values dict format is:
|
||||
'row_number': ['cell_1_val', 'cell_2_val', ...]
|
||||
|
||||
:param file_content: The binary content of the xlsx file
|
||||
:param expected_values: The dict of expected values
|
||||
"""
|
||||
if load_workbook is None:
|
||||
raise unittest.SkipTest("openpyxl not available")
|
||||
|
||||
report_file = io.BytesIO(file_content)
|
||||
xlsx = load_workbook(filename=report_file, data_only=True)
|
||||
sheet = xlsx.worksheets[0]
|
||||
sheet_values = list(sheet.values)
|
||||
|
||||
for row, values in expected_values.items():
|
||||
row_values = [v if v is not None else '' for v in sheet_values[row]]
|
||||
for row_value, expected_value in zip(row_values, values):
|
||||
self.assertEqual(row_value, expected_value)
|
||||
|
|
@ -1,135 +0,0 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
from odoo.addons.account.tests.common import AccountTestInvoicingCommon
|
||||
from odoo.tests import tagged
|
||||
|
||||
import xlrd
|
||||
import io
|
||||
import base64
|
||||
|
||||
|
||||
@tagged("post_install_l10n", "post_install", "-at_install")
|
||||
class TestBir2037(AccountTestInvoicingCommon):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls, chart_template_ref="l10n_ph.l10n_ph_chart_template"):
|
||||
super().setUpClass(chart_template_ref=chart_template_ref)
|
||||
|
||||
cls.partner = cls.env['res.partner'].create({
|
||||
'vat': '123-456-789-001',
|
||||
'branch_code': '001',
|
||||
'name': 'Jose Mangahas Cuyegkeng',
|
||||
'first_name': 'Jose',
|
||||
'middle_name': 'Mangahas',
|
||||
'last_name': 'Cuyegkeng',
|
||||
'street': "250 Amorsolo Street",
|
||||
'city': "Manila",
|
||||
'country_id': cls.env.ref('base.ph').id,
|
||||
'zip': "+900–1-096",
|
||||
})
|
||||
|
||||
cls.partner_a.write({
|
||||
'vat': '123-456-789-001',
|
||||
'branch_code': '001',
|
||||
'name': 'JMC Company',
|
||||
'street': "250 Amorsolo Street",
|
||||
'city': "Manila",
|
||||
'country_id': cls.env.ref('base.ph').id,
|
||||
'zip': "+900–1-096",
|
||||
'is_company': True,
|
||||
})
|
||||
|
||||
def test_01_no_atc(self):
|
||||
""" Ensure that generating the file on a document where no taxes has an ATC set will work, although gives an empty file. """
|
||||
tax = self._create_tax('10% VAT', 10)
|
||||
bill = self._create_invoice(
|
||||
move_type='in_invoice',
|
||||
invoice_amount=100,
|
||||
taxes=tax,
|
||||
)
|
||||
bill.action_post()
|
||||
wizard = self.env['l10n_ph_2307.wizard'].with_context(default_moves_to_export=bill.ids).create({})
|
||||
wizard.action_generate()
|
||||
report_file = io.BytesIO(base64.b64decode(wizard.generate_xls_file))
|
||||
xl = xlrd.open_workbook(file_contents=report_file.read())
|
||||
sheet = xl.sheet_by_index(0)
|
||||
|
||||
result = []
|
||||
for row in range(1, sheet.nrows):
|
||||
result.append(sheet.row_values(row))
|
||||
self.assertEqual(result, [])
|
||||
|
||||
def test_02_simple_atc(self):
|
||||
""" Ensure that generating the file on a document with a single ATC tax and check the results. """
|
||||
tax = self._create_tax('10% ATC', -10, l10n_ph_atc='WI010')
|
||||
bill = self._create_invoice(
|
||||
move_type='in_invoice',
|
||||
invoice_amount=1000,
|
||||
taxes=tax,
|
||||
partner_id=self.partner.id,
|
||||
date_invoice='2025-01-01',
|
||||
)
|
||||
bill.action_post()
|
||||
wizard = self.env['l10n_ph_2307.wizard'].with_context(default_moves_to_export=bill.ids).create({})
|
||||
wizard.action_generate()
|
||||
report_file = io.BytesIO(base64.b64decode(wizard.generate_xls_file))
|
||||
xl = xlrd.open_workbook(file_contents=report_file.read())
|
||||
sheet = xl.sheet_by_index(0)
|
||||
|
||||
result = []
|
||||
for row in range(1, sheet.nrows):
|
||||
result.append(sheet.row_values(row))
|
||||
self.assertEqual(result, [
|
||||
['01/01/2025', '123456789', '001', '', 'Cuyegkeng', 'Jose', 'Mangahas', '250 Amorsolo Street, Manila, Philippines', '+900–1-096', '', 'WI010', 1000.0, -10.0, -100.0]
|
||||
])
|
||||
|
||||
def test_03_atc_affected_by_vat(self):
|
||||
""" Ensure that generating the file on a document where the ATC tax is affected works as expected. """
|
||||
vat = self._create_tax('15% VAT', 15, include_base_amount=True)
|
||||
atc = self._create_tax('10% ATC', -10, l10n_ph_atc='WI010', is_base_affected=True)
|
||||
atc.description = '10% ATC'
|
||||
bill = self._create_invoice(
|
||||
move_type='in_invoice',
|
||||
invoice_amount=1000,
|
||||
taxes=(vat | atc),
|
||||
partner_id=self.partner.id,
|
||||
date_invoice='2025-01-01',
|
||||
)
|
||||
bill.action_post()
|
||||
wizard = self.env['l10n_ph_2307.wizard'].with_context(default_moves_to_export=bill.ids).create({})
|
||||
wizard.action_generate()
|
||||
report_file = io.BytesIO(base64.b64decode(wizard.generate_xls_file))
|
||||
xl = xlrd.open_workbook(file_contents=report_file.read())
|
||||
sheet = xl.sheet_by_index(0)
|
||||
|
||||
result = []
|
||||
for row in range(1, sheet.nrows):
|
||||
result.append(sheet.row_values(row))
|
||||
self.assertEqual(result, [
|
||||
['01/01/2025', '123456789', '001', '', 'Cuyegkeng', 'Jose', 'Mangahas', '250 Amorsolo Street, Manila, Philippines', '+900–1-096', '10% ATC', 'WI010', 1150.0, -10.0, -115.0]
|
||||
])
|
||||
|
||||
def test_04_multi_currency(self):
|
||||
""" Ensure that generating the file on a document of another currency than the company's gives the correct result. """
|
||||
tax = self._create_tax('10% ATC', -10, l10n_ph_atc='WI010')
|
||||
bill = self._create_invoice(
|
||||
move_type='in_invoice',
|
||||
invoice_amount=2000,
|
||||
taxes=tax,
|
||||
partner_id=self.partner_a.id,
|
||||
date_invoice='2025-01-01',
|
||||
currency_id=self.currency_data['currency'].id,
|
||||
)
|
||||
bill.action_post()
|
||||
wizard = self.env['l10n_ph_2307.wizard'].with_context(default_moves_to_export=bill.ids).create({})
|
||||
wizard.action_generate()
|
||||
report_file = io.BytesIO(base64.b64decode(wizard.generate_xls_file))
|
||||
xl = xlrd.open_workbook(file_contents=report_file.read())
|
||||
sheet = xl.sheet_by_index(0)
|
||||
|
||||
result = []
|
||||
for row in range(1, sheet.nrows):
|
||||
result.append(sheet.row_values(row))
|
||||
# We expect the values in company currency in the file.
|
||||
self.assertEqual(result, [
|
||||
['01/01/2025', '123456789', '001', 'JMC Company', '', '', '', '250 Amorsolo Street, Manila, Philippines', '+900–1-096', '', 'WI010', 1000.0, -10.0, -100.0]
|
||||
])
|
||||
|
|
@ -0,0 +1,228 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
import io
|
||||
import xlrd
|
||||
import base64
|
||||
|
||||
from odoo import Command
|
||||
from odoo.tests import tagged
|
||||
from odoo.addons.l10n_ph.tests.common import TestPhCommon
|
||||
|
||||
|
||||
@tagged('post_install_l10n', 'post_install', '-at_install')
|
||||
class TestBIR2307Generation(TestPhCommon):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
|
||||
# 10% Withholding Tax
|
||||
purchase_10_wc516 = cls.env.ref(f'account.{cls.company_data["company"].id}_l10n_ph_tax_purchase_10_wc516')
|
||||
|
||||
cls.invoice = cls.env['account.move'].create({
|
||||
'move_type': 'in_invoice',
|
||||
'invoice_date': '2020-01-15',
|
||||
'partner_id': cls.partner_a.id,
|
||||
'invoice_line_ids': [
|
||||
Command.create({
|
||||
'name': 'Test line',
|
||||
'quantity': 1.0,
|
||||
'price_unit': 100,
|
||||
'tax_ids': purchase_10_wc516,
|
||||
})
|
||||
]
|
||||
})
|
||||
cls.invoice.action_post()
|
||||
|
||||
cls.partner = cls.env['res.partner'].create({
|
||||
'vat': '123-456-789-001',
|
||||
'branch_code': '001',
|
||||
'name': 'Jose Mangahas Cuyegkeng',
|
||||
'first_name': 'Jose',
|
||||
'middle_name': 'Mangahas',
|
||||
'last_name': 'Cuyegkeng',
|
||||
'street': "250 Amorsolo Street",
|
||||
'city': "Manila",
|
||||
'country_id': cls.env.ref('base.ph').id,
|
||||
'zip': "+900–1-096",
|
||||
})
|
||||
|
||||
cls.partner_a.write({
|
||||
'vat': '123-456-789-001',
|
||||
'branch_code': '001',
|
||||
'name': 'JMC Company',
|
||||
'street': "250 Amorsolo Street",
|
||||
'city': "Manila",
|
||||
'country_id': cls.env.ref('base.ph').id,
|
||||
'zip': "+900–1-096",
|
||||
'is_company': True,
|
||||
})
|
||||
|
||||
cls.other_currency = cls.setup_other_currency('EUR', rates=[('2017-01-01', 2)])
|
||||
|
||||
def test_bir_2307_company(self):
|
||||
""" Test the report """
|
||||
wizard_action = self.invoice.action_open_l10n_ph_2307_wizard()
|
||||
context = wizard_action['context']
|
||||
wizard = self.env['l10n_ph_2307.wizard'].with_context(context).create({})
|
||||
wizard.action_generate()
|
||||
|
||||
bir_2307 = base64.b64decode(wizard.xls_file)
|
||||
|
||||
# 2: Build the expected values
|
||||
expected_values = {
|
||||
# Header
|
||||
0: ['Reporting_Month', 'Vendor_TIN', 'branchCode', 'companyName', 'surName', 'firstName', 'middleName', 'address', 'zip_code', 'nature', 'ATC', 'income_payment', 'ewt_rate', 'tax_amount'],
|
||||
# Row
|
||||
1: ['01/15/2020', '123456789', '001', 'JMC Company', '', '', '', '250 Amorsolo Street, Manila, Philippines', '+900–1-096', 'Commission/rebates/discounts', 'WC516', 100.0, 10.0, 10.0],
|
||||
}
|
||||
|
||||
report_file = io.BytesIO(bir_2307)
|
||||
xls = xlrd.open_workbook(file_contents=report_file.read())
|
||||
sheet = xls.sheet_by_index(0)
|
||||
for row, values in expected_values.items():
|
||||
row_values = sheet.row_values(row)
|
||||
for row_value, expected_value in zip(row_values, values):
|
||||
self.assertEqual(row_value, expected_value)
|
||||
|
||||
def test_01_no_atc(self):
|
||||
""" Ensure that generating the file on a document where no taxes has an ATC set will work, although gives an empty file. """
|
||||
tax = self._create_tax('10% VAT', 10)
|
||||
bill = self.init_invoice(
|
||||
move_type='in_invoice',
|
||||
amounts=[100],
|
||||
taxes=tax,
|
||||
)
|
||||
bill.action_post()
|
||||
wizard = self.env['l10n_ph_2307.wizard'].with_context(default_moves_to_export=bill.ids).create({})
|
||||
wizard.action_generate()
|
||||
report_file = io.BytesIO(base64.b64decode(wizard.xls_file))
|
||||
xl = xlrd.open_workbook(file_contents=report_file.read())
|
||||
sheet = xl.sheet_by_index(0)
|
||||
|
||||
result = []
|
||||
for row in range(1, sheet.nrows):
|
||||
result.append(sheet.row_values(row))
|
||||
self.assertEqual(result, [])
|
||||
|
||||
def test_02_simple_atc(self):
|
||||
""" Ensure that generating the file on a document with a single ATC tax and check the results. """
|
||||
tax = self._create_tax('10% ATC', -10, l10n_ph_atc='WI010')
|
||||
bill = self.init_invoice(
|
||||
move_type='in_invoice',
|
||||
amounts=[1000],
|
||||
taxes=tax,
|
||||
partner=self.partner,
|
||||
invoice_date='2025-01-01',
|
||||
)
|
||||
bill.action_post()
|
||||
wizard = self.env['l10n_ph_2307.wizard'].with_context(default_moves_to_export=bill.ids).create({})
|
||||
wizard.action_generate()
|
||||
report_file = io.BytesIO(base64.b64decode(wizard.xls_file))
|
||||
xl = xlrd.open_workbook(file_contents=report_file.read())
|
||||
sheet = xl.sheet_by_index(0)
|
||||
|
||||
result = []
|
||||
for row in range(1, sheet.nrows):
|
||||
result.append(sheet.row_values(row))
|
||||
self.assertEqual(result, [
|
||||
['01/01/2025', '123456789', '001', '', 'Cuyegkeng', 'Jose', 'Mangahas', '250 Amorsolo Street, Manila, Philippines', '+900–1-096', '', 'WI010', 1000.0, 10.0, 100.0]
|
||||
])
|
||||
|
||||
def test_03_atc_affected_by_vat(self):
|
||||
""" Ensure that generating the file on a document where the ATC tax is affected works as expected. """
|
||||
vat = self._create_tax('15% VAT', 15, include_base_amount=True)
|
||||
atc = self._create_tax('10% ATC', -10, l10n_ph_atc='WI010', is_base_affected=True)
|
||||
atc.description = '10% ATC'
|
||||
bill = self.init_invoice(
|
||||
move_type='in_invoice',
|
||||
amounts=[1000],
|
||||
taxes=(vat | atc),
|
||||
partner=self.partner,
|
||||
invoice_date='2025-01-01',
|
||||
)
|
||||
bill.action_post()
|
||||
wizard = self.env['l10n_ph_2307.wizard'].with_context(default_moves_to_export=bill.ids).create({})
|
||||
wizard.action_generate()
|
||||
report_file = io.BytesIO(base64.b64decode(wizard.xls_file))
|
||||
xl = xlrd.open_workbook(file_contents=report_file.read())
|
||||
sheet = xl.sheet_by_index(0)
|
||||
|
||||
result = []
|
||||
for row in range(1, sheet.nrows):
|
||||
result.append(sheet.row_values(row))
|
||||
self.assertEqual(result, [
|
||||
['01/01/2025', '123456789', '001', '', 'Cuyegkeng', 'Jose', 'Mangahas', '250 Amorsolo Street, Manila, Philippines', '+900–1-096', '10% ATC', 'WI010', 1150.0, 10.0, 115.0]
|
||||
])
|
||||
|
||||
def test_04_multi_currency(self):
|
||||
""" Ensure that generating the file on a document of another currency than the company's gives the correct result. """
|
||||
tax = self._create_tax('10% ATC', -10, l10n_ph_atc='WI010')
|
||||
bill = self.init_invoice(
|
||||
move_type='in_invoice',
|
||||
amounts=[2000],
|
||||
taxes=tax,
|
||||
partner=self.partner_a,
|
||||
invoice_date='2025-01-01',
|
||||
currency=self.other_currency,
|
||||
)
|
||||
bill.action_post()
|
||||
wizard = self.env['l10n_ph_2307.wizard'].with_context(default_moves_to_export=bill.ids).create({})
|
||||
wizard.action_generate()
|
||||
report_file = io.BytesIO(base64.b64decode(wizard.xls_file))
|
||||
xl = xlrd.open_workbook(file_contents=report_file.read())
|
||||
sheet = xl.sheet_by_index(0)
|
||||
|
||||
result = []
|
||||
for row in range(1, sheet.nrows):
|
||||
result.append(sheet.row_values(row))
|
||||
# We expect the values in company currency in the file.
|
||||
self.assertEqual(result, [
|
||||
['01/01/2025', '123456789', '001', 'JMC Company', '', '', '', '250 Amorsolo Street, Manila, Philippines', '+900–1-096', '', 'WI010', 1000.0, 10.0, 100.0]
|
||||
])
|
||||
|
||||
@classmethod
|
||||
def _create_tax(
|
||||
cls,
|
||||
name,
|
||||
amount,
|
||||
amount_type="percent",
|
||||
type_tax_use="sale",
|
||||
tax_exigibility="on_invoice",
|
||||
**kwargs,
|
||||
):
|
||||
vals = {
|
||||
"name": name,
|
||||
"amount": amount,
|
||||
"amount_type": amount_type,
|
||||
"type_tax_use": type_tax_use,
|
||||
"tax_exigibility": tax_exigibility,
|
||||
"invoice_repartition_line_ids": [
|
||||
Command.create(
|
||||
{
|
||||
"factor_percent": 100,
|
||||
"repartition_type": "base",
|
||||
}
|
||||
),
|
||||
Command.create(
|
||||
{
|
||||
"factor_percent": 100,
|
||||
"repartition_type": "tax",
|
||||
}
|
||||
),
|
||||
],
|
||||
"refund_repartition_line_ids": [
|
||||
Command.create(
|
||||
{
|
||||
"factor_percent": 100,
|
||||
"repartition_type": "base",
|
||||
}
|
||||
),
|
||||
Command.create(
|
||||
{
|
||||
"factor_percent": 100,
|
||||
"repartition_type": "tax",
|
||||
}
|
||||
),
|
||||
],
|
||||
**kwargs,
|
||||
}
|
||||
return cls.env["account.tax"].create(vals)
|
||||
Loading…
Add table
Add a link
Reference in a new issue