[IMP]India GST: change label of fiscal position -> Nature of transaction
This commit is contained in:
parent
ac31557348
commit
88699fbddd
@ -103,4 +103,14 @@
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<!-- Fiscal Position acton string change -->
|
||||
<record id="account.action_account_fiscal_position_form" model="ir.actions.act_window">
|
||||
<field name="name">Nature of Transaction</field>
|
||||
</record>
|
||||
|
||||
<record id="account.menu_action_account_fiscal_position_form" model="ir.ui.menu">
|
||||
<field name="name">Nature of Transaction</field>
|
||||
</record>
|
||||
|
||||
|
||||
</flectra>
|
@ -1,2 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
4
addons/l10n_in_purchase/models/__init__.py
Normal file
4
addons/l10n_in_purchase/models/__init__.py
Normal file
@ -0,0 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import purchase
|
12
addons/l10n_in_purchase/models/purchase.py
Normal file
12
addons/l10n_in_purchase/models/purchase.py
Normal file
@ -0,0 +1,12 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Flectra. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from flectra import api, fields, models, _
|
||||
|
||||
|
||||
class PurchaseOrder(models.Model):
|
||||
_inherit = "purchase.order"
|
||||
|
||||
fiscal_position_id = fields.Many2one('account.fiscal.position',
|
||||
oldname='fiscal_position',
|
||||
string='Nature of Transaction')
|
@ -1,2 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
4
addons/l10n_in_sale/models/__init__.py
Normal file
4
addons/l10n_in_sale/models/__init__.py
Normal file
@ -0,0 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import sale
|
12
addons/l10n_in_sale/models/sale.py
Normal file
12
addons/l10n_in_sale/models/sale.py
Normal file
@ -0,0 +1,12 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Flectra. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from flectra import api, fields, models, _
|
||||
|
||||
|
||||
class SaleOrder(models.Model):
|
||||
_inherit = "sale.order"
|
||||
|
||||
fiscal_position_id = fields.Many2one('account.fiscal.position',
|
||||
oldname='fiscal_position',
|
||||
string='Nature of Transaction')
|
Loading…
Reference in New Issue
Block a user