23 lines
804 B
Python
23 lines
804 B
Python
from odoo.addons.account.tests.common import AccountTestInvoicingCommon
|
|
from odoo.addons.point_of_sale.tests.test_generic_localization import TestGenericLocalization
|
|
from odoo.tests import tagged
|
|
|
|
|
|
@tagged('post_install', '-at_install', 'post_install_l10n')
|
|
class TestGenericIN(TestGenericLocalization):
|
|
|
|
@classmethod
|
|
@AccountTestInvoicingCommon.setup_country('in')
|
|
def setUpClass(cls):
|
|
super().setUpClass()
|
|
cls.state_in_gj = cls.env.ref('base.state_in_gj')
|
|
cls.main_pos_config.company_id.write({
|
|
'name': "Default Company",
|
|
'state_id': cls.state_in_gj.id,
|
|
'vat': "24AAGCC7144L6ZE",
|
|
'street': "Khodiyar Chowk",
|
|
'street2': "Sala Number 3",
|
|
'city': "Amreli",
|
|
'zip': "365220",
|
|
})
|