[IMP]vat to tax : changed the label Vat as its abbreviation

bzr revid: rpr@tinyerp.com-20120719053803-r4p9dhh28h2bysmm
This commit is contained in:
Rajesh Prajapati (OpenERP) 2012-07-19 11:08:03 +05:30
parent 74a58c0f15
commit e068ed2663
18 changed files with 49 additions and 49 deletions

View File

@ -1788,7 +1788,7 @@ class account_tax_code(osv.osv):
'line_ids': fields.one2many('account.move.line', 'tax_code_id', 'Lines'), 'line_ids': fields.one2many('account.move.line', 'tax_code_id', 'Lines'),
'company_id': fields.many2one('res.company', 'Company', required=True), 'company_id': fields.many2one('res.company', 'Company', required=True),
'sign': fields.float('Coefficent for parent', required=True, help='You can specify here the coefficient that will be used when consolidating the amount of this case into its parent. For example, set 1/-1 if you want to add/substract it.'), 'sign': fields.float('Coefficent for parent', required=True, help='You can specify here the coefficient that will be used when consolidating the amount of this case into its parent. For example, set 1/-1 if you want to add/substract it.'),
'notprintable':fields.boolean("Not Printable in Invoice", help="Check this box if you don't want any TAX related to this Tax Code to appear on invoices"), 'notprintable':fields.boolean("Not Printable in Invoice", help="Check this box if you don't want any Tax related to this Tax Code to appear on invoices"),
'sequence': fields.integer('Sequence', help="Determine the display order in the report 'Accounting \ Reporting \ Generic Reporting \ Taxes \ Taxes Report'"), 'sequence': fields.integer('Sequence', help="Determine the display order in the report 'Accounting \ Reporting \ Generic Reporting \ Taxes \ Taxes Report'"),
} }
@ -1880,17 +1880,17 @@ class account_tax(osv.osv):
'python_applicable':fields.text('Python Code'), 'python_applicable':fields.text('Python Code'),
# #
# Fields used for the TAX declaration # Fields used for the Tax declaration
# #
'base_code_id': fields.many2one('account.tax.code', 'Account Base Code', help="Use this code for the TAX declaration."), 'base_code_id': fields.many2one('account.tax.code', 'Account Base Code', help="Use this code for the Tax declaration."),
'tax_code_id': fields.many2one('account.tax.code', 'Account Tax Code', help="Use this code for the TAX declaration."), 'tax_code_id': fields.many2one('account.tax.code', 'Account Tax Code', help="Use this code for the Tax declaration."),
'base_sign': fields.float('Base Code Sign', help="Usually 1 or -1."), 'base_sign': fields.float('Base Code Sign', help="Usually 1 or -1."),
'tax_sign': fields.float('Tax Code Sign', help="Usually 1 or -1."), 'tax_sign': fields.float('Tax Code Sign', help="Usually 1 or -1."),
# Same fields for refund invoices # Same fields for refund invoices
'ref_base_code_id': fields.many2one('account.tax.code', 'Refund Base Code', help="Use this code for the TAX declaration."), 'ref_base_code_id': fields.many2one('account.tax.code', 'Refund Base Code', help="Use this code for the Tax declaration."),
'ref_tax_code_id': fields.many2one('account.tax.code', 'Refund Tax Code', help="Use this code for the TAX declaration."), 'ref_tax_code_id': fields.many2one('account.tax.code', 'Refund Tax Code', help="Use this code for the Tax declaration."),
'ref_base_sign': fields.float('Base Code Sign', help="Usually 1 or -1."), 'ref_base_sign': fields.float('Base Code Sign', help="Usually 1 or -1."),
'ref_tax_sign': fields.float('Tax Code Sign', help="Usually 1 or -1."), 'ref_tax_sign': fields.float('Tax Code Sign', help="Usually 1 or -1."),
'include_base_amount': fields.boolean('Included in base amount', help="Indicates if the amount of tax must be included in the base amount for the computation of the next taxes"), 'include_base_amount': fields.boolean('Included in base amount', help="Indicates if the amount of tax must be included in the base amount for the computation of the next taxes"),
@ -2217,7 +2217,7 @@ class account_tax(osv.osv):
def compute_inv(self, cr, uid, taxes, price_unit, quantity, product=None, partner=None, precision=None): def compute_inv(self, cr, uid, taxes, price_unit, quantity, product=None, partner=None, precision=None):
""" """
Compute tax values for given PRICE_UNIT, QUANTITY and a buyer/seller ADDRESS_ID. Compute tax values for given PRICE_UNIT, QUANTITY and a buyer/seller ADDRESS_ID.
Price Unit is a TAX included price Price Unit is a Tax included price
RETURN: RETURN:
[ tax ] [ tax ]
@ -2673,7 +2673,7 @@ class account_tax_code_template(osv.osv):
'parent_id': fields.many2one('account.tax.code.template', 'Parent Code', select=True), 'parent_id': fields.many2one('account.tax.code.template', 'Parent Code', select=True),
'child_ids': fields.one2many('account.tax.code.template', 'parent_id', 'Child Codes'), 'child_ids': fields.one2many('account.tax.code.template', 'parent_id', 'Child Codes'),
'sign': fields.float('Sign For Parent', required=True), 'sign': fields.float('Sign For Parent', required=True),
'notprintable':fields.boolean("Not Printable in Invoice", help="Check this box if you don't want any TAX related to this Tax Code to appear on invoices"), 'notprintable':fields.boolean("Not Printable in Invoice", help="Check this box if you don't want any Tax related to this Tax Code to appear on invoices"),
} }
_defaults = { _defaults = {
@ -2788,17 +2788,17 @@ class account_tax_template(osv.osv):
'python_applicable':fields.text('Python Code'), 'python_applicable':fields.text('Python Code'),
# #
# Fields used for the TAX declaration # Fields used for the Tax declaration
# #
'base_code_id': fields.many2one('account.tax.code.template', 'Base Code', help="Use this code for the TAX declaration."), 'base_code_id': fields.many2one('account.tax.code.template', 'Base Code', help="Use this code for the Tax declaration."),
'tax_code_id': fields.many2one('account.tax.code.template', 'Tax Code', help="Use this code for the TAX declaration."), 'tax_code_id': fields.many2one('account.tax.code.template', 'Tax Code', help="Use this code for the Tax declaration."),
'base_sign': fields.float('Base Code Sign', help="Usually 1 or -1."), 'base_sign': fields.float('Base Code Sign', help="Usually 1 or -1."),
'tax_sign': fields.float('Tax Code Sign', help="Usually 1 or -1."), 'tax_sign': fields.float('Tax Code Sign', help="Usually 1 or -1."),
# Same fields for refund invoices # Same fields for refund invoices
'ref_base_code_id': fields.many2one('account.tax.code.template', 'Refund Base Code', help="Use this code for the TAX declaration."), 'ref_base_code_id': fields.many2one('account.tax.code.template', 'Refund Base Code', help="Use this code for the Tax declaration."),
'ref_tax_code_id': fields.many2one('account.tax.code.template', 'Refund Tax Code', help="Use this code for the TAX declaration."), 'ref_tax_code_id': fields.many2one('account.tax.code.template', 'Refund Tax Code', help="Use this code for the Tax declaration."),
'ref_base_sign': fields.float('Base Code Sign', help="Usually 1 or -1."), 'ref_base_sign': fields.float('Base Code Sign', help="Usually 1 or -1."),
'ref_tax_sign': fields.float('Tax Code Sign', help="Usually 1 or -1."), 'ref_tax_sign': fields.float('Tax Code Sign', help="Usually 1 or -1."),
'include_base_amount': fields.boolean('Include in Base Amount', help="Set if the amount of tax must be included in the base amount before computing the next taxes."), 'include_base_amount': fields.boolean('Include in Base Amount', help="Set if the amount of tax must be included in the base amount before computing the next taxes."),

View File

@ -327,7 +327,7 @@ class account_move_line(osv.osv):
if account and ((not fields) or ('debit' in fields) or ('credit' in fields)): if account and ((not fields) or ('debit' in fields) or ('credit' in fields)):
data['account_id'] = account.id data['account_id'] = account.id
# Propose the price TAX excluded, the TAX will be added when confirming line # Propose the price Tax excluded, the Tax will be added when confirming line
if account.tax_ids: if account.tax_ids:
taxes = fiscal_pos_obj.map_tax(cr, uid, part and part.property_account_position or False, account.tax_ids) taxes = fiscal_pos_obj.map_tax(cr, uid, part and part.property_account_position or False, account.tax_ids)
tax = tax_obj.browse(cr, uid, taxes) tax = tax_obj.browse(cr, uid, taxes)
@ -1347,7 +1347,7 @@ class account_move_line(osv.osv):
} }
if data['tax_code_id']: if data['tax_code_id']:
self.create(cr, uid, data, context) self.create(cr, uid, data, context)
#create the TAX movement #create the Tax movement
data = { data = {
'move_id': vals['move_id'], 'move_id': vals['move_id'],
'name': tools.ustr(vals['name'] or '') + ' ' + tools.ustr(tax['name'] or ''), 'name': tools.ustr(vals['name'] or '') + ' ' + tools.ustr(tax['name'] or ''),

View File

@ -385,8 +385,8 @@
<field name="complete_tax_set" eval="False"/> <field name="complete_tax_set" eval="False"/>
</record> </record>
<!-- TAX Codes --> <!-- Tax Codes -->
<!-- Purchases + Output TAX --> <!-- Purchases + Output Tax -->
<record id="otaxs" model="account.tax.template"> <record id="otaxs" model="account.tax.template">
<field name="chart_template_id" ref="configurable_chart_template"/> <field name="chart_template_id" ref="configurable_chart_template"/>
@ -444,7 +444,7 @@
<field name="type_tax_use">purchase</field> <field name="type_tax_use">purchase</field>
</record> </record>
<!-- Sales + Input TAX --> <!-- Sales + Input Tax -->
<record id="itaxs" model="account.tax.template"> <record id="itaxs" model="account.tax.template">
<field name="chart_template_id" ref="configurable_chart_template"/> <field name="chart_template_id" ref="configurable_chart_template"/>

View File

@ -94,7 +94,7 @@
<record id="ova" model="account.account"> <record id="ova" model="account.account">
<field name="code">X11003</field> <field name="code">X11003</field>
<field name="name">Output TAX - (test)</field> <field name="name">Output Tax - (test)</field>
<field ref="cas" name="parent_id"/> <field ref="cas" name="parent_id"/>
<field name="type">other</field> <field name="type">other</field>
<field name="user_type" ref="data_account_type_asset"/> <field name="user_type" ref="data_account_type_asset"/>
@ -152,7 +152,7 @@
<record id="iva" model="account.account"> <record id="iva" model="account.account">
<field name="code">X1112</field> <field name="code">X1112</field>
<field name="name">Input TAX - (test)</field> <field name="name">Input Tax - (test)</field>
<field ref="cli" name="parent_id"/> <field ref="cli" name="parent_id"/>
<field name="type">other</field> <field name="type">other</field>
<field name="user_type" ref="data_account_type_liability"/> <field name="user_type" ref="data_account_type_liability"/>

View File

@ -219,7 +219,7 @@
<td><para style="P10a">Account</para></td> <td><para style="P10a">Account</para></td>
<td><para style="P10a">Partner</para></td> <td><para style="P10a">Partner</para></td>
<td><para style="P10a">Label</para></td> <td><para style="P10a">Label</para></td>
<td><para style="P10a">TAX</para></td> <td><para style="P10a">Tax</para></td>
<td><para style="P11"></para></td> <td><para style="P11"></para></td>
<td><para style="P10b">Debit</para></td> <td><para style="P10b">Debit</para></td>
<td><para style="P10b">Credit</para></td> <td><para style="P10b">Credit</para></td>
@ -271,7 +271,7 @@
<td><para style="P10a">Account</para></td> <td><para style="P10a">Account</para></td>
<td><para style="P10a">Partner</para></td> <td><para style="P10a">Partner</para></td>
<td><para style="P10a">Label</para></td> <td><para style="P10a">Label</para></td>
<td><para style="P10a">TAX</para></td> <td><para style="P10a">Tax</para></td>
<td><para style="P11"></para></td> <td><para style="P11"></para></td>
<td><para style="P10b">Debit</para></td> <td><para style="P10b">Debit</para></td>
<td><para style="P10b">Credit</para></td> <td><para style="P10b">Credit</para></td>
@ -330,7 +330,7 @@
<blockTable colWidths="15.0,80.0,20.0,182.0" style="Table1" repeatRows="1"> <blockTable colWidths="15.0,80.0,20.0,182.0" style="Table1" repeatRows="1">
<tr> <tr>
<td><para style="P12"></para></td> <td><para style="P12"></para></td>
<td><para style="P12">TAX Declaration</para></td> <td><para style="P12">Tax Declaration</para></td>
<td><para style="P12"></para></td> <td><para style="P12"></para></td>
<td><para style="P12"></para></td> <td><para style="P12"></para></td>
</tr> </tr>

View File

@ -168,7 +168,7 @@
</para> </para>
<para style="terp_default_8">Tel. : [[ (o.partner_id.phone) or removeParentNode('para') ]]</para> <para style="terp_default_8">Tel. : [[ (o.partner_id.phone) or removeParentNode('para') ]]</para>
<para style="terp_default_8">Fax : [[ (o.partner_id.fax) or removeParentNode('para') ]]</para> <para style="terp_default_8">Fax : [[ (o.partner_id.fax) or removeParentNode('para') ]]</para>
<para style="terp_default_8">TAX : [[ (o.partner_id.vat) or removeParentNode('para') ]]</para> <para style="terp_default_8">VAT : [[ (o.partner_id.vat) or removeParentNode('para') ]]</para>
</td> </td>
</tr> </tr>
</blockTable> </blockTable>

View File

@ -138,7 +138,7 @@
<para style="terp_default_9"> <para style="terp_default_9">
<font color="white"> </font> <font color="white"> </font>
</para> </para>
<para style="terp_default_9">TAX: [[ o.vat or removeParentNode('para') ]]</para> <para style="terp_default_9">VAT: [[ o.vat or removeParentNode('para') ]]</para>
</td> </td>
</tr> </tr>
</blockTable> </blockTable>

View File

@ -8,7 +8,7 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form string="Taxes Report" version="7.0"> <form string="Taxes Report" version="7.0">
<label colspan="4" string="This menu prints a TAX declaration based on invoices or payments. Select one or several periods of the fiscal year. The information required for a tax declaration is automatically generated by OpenERP from invoices (or payments, in some countries). This data is updated in real time. Thats very useful because it enables you to preview at any time the tax that you owe at the start and end of the month or quarter."/> <label colspan="4" string="This menu prints a Tax declaration based on invoices or payments. Select one or several periods of the fiscal year. The information required for a tax declaration is automatically generated by OpenERP from invoices (or payments, in some countries). This data is updated in real time. Thats very useful because it enables you to preview at any time the tax that you owe at the start and end of the month or quarter."/>
<group string="Taxes Report" col="4"> <group string="Taxes Report" col="4">
<field name="chart_tax_id" widget='selection'/> <field name="chart_tax_id" widget='selection'/>
<field name="fiscalyear_id"/> <field name="fiscalyear_id"/>
@ -36,7 +36,7 @@
<field name="view_type">form</field> <field name="view_type">form</field>
<field name="view_mode">form</field> <field name="view_mode">form</field>
<field name="target">new</field> <field name="target">new</field>
<field name="help">This menu print a TAX declaration based on invoices or payments. You can select one or several periods of the fiscal year. Information required for a tax declaration is automatically generated by OpenERP from invoices (or payments, in some countries). This data is updated in real time. Thats very useful because it enables you to preview at any time the tax that you owe at the start and end of the month or quarter.</field> <field name="help">This menu print a Tax declaration based on invoices or payments. You can select one or several periods of the fiscal year. Information required for a tax declaration is automatically generated by OpenERP from invoices (or payments, in some countries). This data is updated in real time. Thats very useful because it enables you to preview at any time the tax that you owe at the start and end of the month or quarter.</field>
</record> </record>
<menuitem <menuitem

View File

@ -73,7 +73,7 @@
</record> </record>
<record id="acct_106" model="account.coda.comm.type"> <record id="acct_106" model="account.coda.comm.type">
<field name="code">106</field> <field name="code">106</field>
<field name="description">Method of calculation (TAX, withholding tax on income, commission, etc.)</field> <field name="description">Method of calculation (Tax, withholding tax on income, commission, etc.)</field>
</record> </record>
<record id="acct_107" model="account.coda.comm.type"> <record id="acct_107" model="account.coda.comm.type">
<field name="code">107</field> <field name="code">107</field>

View File

@ -49,7 +49,7 @@
</record> </record>
<record id="actrca_011" model="account.coda.trans.category"> <record id="actrca_011" model="account.coda.trans.category">
<field name="category">011</field> <field name="category">011</field>
<field name="description">TAX</field> <field name="description">Tax</field>
</record> </record>
<record id="actrca_012" model="account.coda.trans.category"> <record id="actrca_012" model="account.coda.trans.category">
<field name="category">012</field> <field name="category">012</field>

View File

@ -382,7 +382,7 @@
<field name="type">code</field> <field name="type">code</field>
<field name="parent_id" ref="actcf_03"/> <field name="parent_id" ref="actcf_03"/>
<field name="description">Reimbursement of cheque-related costs</field> <field name="description">Reimbursement of cheque-related costs</field>
<field name="comment">Overall amount, TAX included</field> <field name="comment">Overall amount, Tax included</field>
</record> </record>
<record id="actcc_03_99" model="account.coda.trans.code"> <record id="actcc_03_99" model="account.coda.trans.code">
<field name="code">99</field> <field name="code">99</field>
@ -1850,7 +1850,7 @@
<field name="type">code</field> <field name="type">code</field>
<field name="parent_id" ref="actcf_80"/> <field name="parent_id" ref="actcf_80"/>
<field name="description">Miscellaneous fees and commissions</field> <field name="description">Miscellaneous fees and commissions</field>
<field name="comment">Costs not specified otherwise, often with a manual communication (e.g. for collecting, ordering funds). TAX excluded = type 0 TAX included = type 3 (at least 3 articles)</field> <field name="comment">Costs not specified otherwise, often with a manual communication (e.g. for collecting, ordering funds). Tax excluded = type 0 Tax included = type 3 (at least 3 articles)</field>
</record> </record>
<record id="actcc_80_35" model="account.coda.trans.code"> <record id="actcc_80_35" model="account.coda.trans.code">
<field name="code">35</field> <field name="code">35</field>

View File

@ -141,7 +141,7 @@
<para style="terp_default_9"> <para style="terp_default_9">
<font color="white"> </font> <font color="white"> </font>
</para> </para>
<para style="terp_default_9">TAX: [[ o.partner_id.vat or removeParentNode('para') ]]</para> <para style="terp_default_9">VAT: [[ o.partner_id.vat or removeParentNode('para') ]]</para>
</td> </td>
</tr> </tr>
</blockTable> </blockTable>

View File

@ -125,7 +125,7 @@
<record id="a_input_vat" model="account.account.template"> <record id="a_input_vat" model="account.account.template">
<field name="code">1510</field> <field name="code">1510</field>
<field name="name">Input TAX</field> <field name="name">Input Tax</field>
<field name="parent_id" ref="a_assets"/> <field name="parent_id" ref="a_assets"/>
<field name="type">other</field> <field name="type">other</field>
<field name="user_type" ref="acc_type_other"/> <field name="user_type" ref="acc_type_other"/>
@ -187,7 +187,7 @@
<record id="a_output_vat" model="account.account.template"> <record id="a_output_vat" model="account.account.template">
<field name="code">2310</field> <field name="code">2310</field>
<field name="name">Output TAX</field> <field name="name">Output Tax</field>
<field name="parent_id" ref="a_liabilities"/> <field name="parent_id" ref="a_liabilities"/>
<field name="type">other</field> <field name="type">other</field>
<field name="user_type" ref="acc_type_other"/> <field name="user_type" ref="acc_type_other"/>
@ -333,7 +333,7 @@
<field name="parent_id" ref="tc_root"/> <field name="parent_id" ref="tc_root"/>
</record> </record>
<!-- TAX --> <!-- Tax -->
<record id="tc_base_vat" model="account.tax.code.template"> <record id="tc_base_vat" model="account.tax.code.template">
<field name="name">Value Added Tax</field> <field name="name">Value Added Tax</field>
@ -341,13 +341,13 @@
</record> </record>
<record id="tc_base_output" model="account.tax.code.template"> <record id="tc_base_output" model="account.tax.code.template">
<field name="name">Output TAX</field> <field name="name">Output Tax</field>
<field name="code">PP30_4</field> <field name="code">PP30_4</field>
<field name="parent_id" ref="tc_base_vat"/> <field name="parent_id" ref="tc_base_vat"/>
</record> </record>
<record id="tc_base_input" model="account.tax.code.template"> <record id="tc_base_input" model="account.tax.code.template">
<field name="name">Input TAX</field> <field name="name">Input Tax</field>
<field name="code">PP30_6</field> <field name="code">PP30_6</field>
<field name="parent_id" ref="tc_base_vat"/> <field name="parent_id" ref="tc_base_vat"/>
</record> </record>
@ -397,7 +397,7 @@
<!-- TAXES TO BE PAID --> <!-- TAXES TO BE PAID -->
<!-- TAX --> <!-- Tax -->
<record id="tc_tax" model="account.tax.code.template"> <record id="tc_tax" model="account.tax.code.template">
<field name="name">Taxes to be paid</field> <field name="name">Taxes to be paid</field>
@ -410,13 +410,13 @@
</record> </record>
<record id="tc_tax_vat_output" model="account.tax.code.template"> <record id="tc_tax_vat_output" model="account.tax.code.template">
<field name="name">Output TAX</field> <field name="name">Output Tax</field>
<field name="code">PP30_5</field> <field name="code">PP30_5</field>
<field name="parent_id" ref="tc_tax_vat"/> <field name="parent_id" ref="tc_tax_vat"/>
</record> </record>
<record id="tc_tax_vat_input" model="account.tax.code.template"> <record id="tc_tax_vat_input" model="account.tax.code.template">
<field name="name">Input TAX</field> <field name="name">Input Tax</field>
<field name="code">PP30_7</field> <field name="code">PP30_7</field>
<field name="parent_id" ref="tc_tax_vat"/> <field name="parent_id" ref="tc_tax_vat"/>
<field name="sign" eval="-1"/> <field name="sign" eval="-1"/>
@ -485,7 +485,7 @@
<record id="tax_input_vat" model="account.tax.template"> <record id="tax_input_vat" model="account.tax.template">
<field name="chart_template_id" ref="chart"/> <field name="chart_template_id" ref="chart"/>
<field name="name">Input TAX</field> <field name="name">Input Tax</field>
<field name="type">percent</field> <field name="type">percent</field>
<field name="amount" eval="0.07"/> <field name="amount" eval="0.07"/>
<field name="account_collected_id" ref="a_input_vat"/> <field name="account_collected_id" ref="a_input_vat"/>
@ -497,7 +497,7 @@
<record id="tax_output_vat" model="account.tax.template"> <record id="tax_output_vat" model="account.tax.template">
<field name="chart_template_id" ref="chart"/> <field name="chart_template_id" ref="chart"/>
<field name="name">Output TAX</field> <field name="name">Output Tax</field>
<field name="type">percent</field> <field name="type">percent</field>
<field name="amount" eval="0.07"/> <field name="amount" eval="0.07"/>
<field name="account_collected_id" ref="a_output_vat"/> <field name="account_collected_id" ref="a_output_vat"/>

View File

@ -27,7 +27,7 @@
<field name="type_tax_use">purchase</field> <field name="type_tax_use">purchase</field>
</record> </record>
<!-- Sales + Input TAX --> <!-- Sales + Input Tax -->
<record id="itaxs" model="account.tax.template"> <record id="itaxs" model="account.tax.template">
<field name="chart_template_id" ref="l10n_us.account_chart_template_basic"/> <field name="chart_template_id" ref="l10n_us.account_chart_template_basic"/>

View File

@ -169,7 +169,7 @@
<para style="terp_tblheader_Details">Description</para> <para style="terp_tblheader_Details">Description</para>
</td> </td>
<td> <td>
<para style="terp_tblheader_Details_Centre">TAX</para> <para style="terp_tblheader_Details_Centre">Tax</para>
</td> </td>
<td> <td>
<para style="terp_tblheader_Details_Right">Quantity</para> <para style="terp_tblheader_Details_Right">Quantity</para>
@ -278,7 +278,7 @@
<para style="terp_tblheader_Details">Description</para> <para style="terp_tblheader_Details">Description</para>
</td> </td>
<td> <td>
<para style="terp_tblheader_Details_Centre">TAX</para> <para style="terp_tblheader_Details_Centre">Tax</para>
</td> </td>
<td> <td>
<para style="terp_tblheader_Details_Right">Quantity</para> <para style="terp_tblheader_Details_Right">Quantity</para>

View File

@ -150,7 +150,7 @@
<para style="terp_tblheader_Details">Description</para> <para style="terp_tblheader_Details">Description</para>
</td> </td>
<td> <td>
<para style="terp_tblheader_Details_Centre">TAX</para> <para style="terp_tblheader_Details_Centre">Tax</para>
</td> </td>
<td> <td>
<para style="terp_tblheader_Details_Right">Quantity</para> <para style="terp_tblheader_Details_Right">Quantity</para>

View File

@ -148,7 +148,7 @@
</para> </para>
<para style="terp_default_8">Tel. : [[ (o.partner_id.phone) or removeParentNode('para') ]]</para> <para style="terp_default_8">Tel. : [[ (o.partner_id.phone) or removeParentNode('para') ]]</para>
<para style="terp_default_8">Fax : [[ (o.partner_id.fax) or removeParentNode('para') ]]</para> <para style="terp_default_8">Fax : [[ (o.partner_id.fax) or removeParentNode('para') ]]</para>
<para style="terp_default_8">TAX : [[ (o.partner_id.vat) or removeParentNode('para') ]]</para> <para style="terp_default_8">VAT : [[ (o.partner_id.vat) or removeParentNode('para') ]]</para>
</td> </td>
</tr> </tr>
</blockTable> </blockTable>

View File

@ -134,7 +134,7 @@
<para style="terp_tblheader_Details">Description</para> <para style="terp_tblheader_Details">Description</para>
</td> </td>
<td> <td>
<para style="terp_tblheader_Details_Centre">TAX</para> <para style="terp_tblheader_Details_Centre">Tax</para>
</td> </td>
<td> <td>
<para style="terp_tblheader_Details_Right">Quantity</para> <para style="terp_tblheader_Details_Right">Quantity</para>
@ -236,7 +236,7 @@
<para style="terp_tblheader_Details">Description</para> <para style="terp_tblheader_Details">Description</para>
</td> </td>
<td> <td>
<para style="terp_tblheader_Details_Centre">TAX</para> <para style="terp_tblheader_Details_Centre">Tax</para>
</td> </td>
<td> <td>
<para style="terp_tblheader_Details_Right">Quantity</para> <para style="terp_tblheader_Details_Right">Quantity</para>