[IMP]India GST: change label of fiscal position -> Nature of transaction

This commit is contained in:
Chinmayi Vyas 2018-06-21 16:15:59 +05:30
parent ac31557348
commit 88699fbddd
7 changed files with 46 additions and 0 deletions

View File

@ -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>

View File

@ -1,2 +1,4 @@
# -*- coding: utf-8 -*-
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
from . import models

View File

@ -0,0 +1,4 @@
# -*- coding: utf-8 -*-
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
from . import purchase

View 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')

View File

@ -1,2 +1,4 @@
# -*- coding: utf-8 -*-
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
from . import models

View File

@ -0,0 +1,4 @@
# -*- coding: utf-8 -*-
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
from . import sale

View 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')