diff --git a/addons/account/account.py b/addons/account/account.py index fe52decd9f3..469c5b1d838 100644 --- a/addons/account/account.py +++ b/addons/account/account.py @@ -56,7 +56,7 @@ def check_cycle(self, cr, uid, ids, context=None): class account_payment_term(osv.osv): _name = "account.payment.term" - _description = "Payment Terms" + _description = "Payment Term" _columns = { 'name': fields.char('Payment Terms', size=64, translate=True, required=True), 'active': fields.boolean('Active', help="If the active field is set to False, it will allow you to hide the payment term without removing it."), @@ -101,7 +101,7 @@ class account_payment_term(osv.osv): class account_payment_term_line(osv.osv): _name = "account.payment.term.line" - _description = "Payment Terms Line" + _description = "Payment Term Line" _columns = { 'value': fields.selection([('procent', 'Percent'), ('balance', 'Balance'), @@ -128,7 +128,7 @@ class account_payment_term_line(osv.osv): return True _constraints = [ - (_check_percent, 'Percentages for Payment Terms Line must be between 0 and 1, Example: 0.02 for 2%.', ['value_amount']), + (_check_percent, 'Percentages for Payment Term Line must be between 0 and 1, Example: 0.02 for 2%.', ['value_amount']), ] account_payment_term_line() diff --git a/addons/account/account_view.xml b/addons/account/account_view.xml index a50b1d4e432..dd58ce4aa69 100644 --- a/addons/account/account_view.xml +++ b/addons/account/account_view.xml @@ -1548,7 +1548,7 @@ account.payment.term.line.tree account.payment.term.line - + @@ -1560,7 +1560,7 @@ account.payment.term.line.form account.payment.term.line -
+ @@ -1582,7 +1582,7 @@ account.payment.term.search account.payment.term - + @@ -1592,7 +1592,7 @@ account.payment.term.form account.payment.term - + @@ -2296,17 +2296,17 @@ - + - + - + diff --git a/addons/account/data/account_data.xml b/addons/account/data/account_data.xml index 24b4325020e..f8a0fcdfcaa 100644 --- a/addons/account/data/account_data.xml +++ b/addons/account/data/account_data.xml @@ -38,7 +38,7 @@ - Payment Terms + Payment Term 6 diff --git a/addons/account/demo/account_demo.xml b/addons/account/demo/account_demo.xml index 9ee821aab0f..6918ad44702 100644 --- a/addons/account/demo/account_demo.xml +++ b/addons/account/demo/account_demo.xml @@ -128,7 +128,7 @@ - + 30 Days End of Month diff --git a/addons/account/partner.py b/addons/account/partner.py index c2a8bcfc241..346cc38f5df 100644 --- a/addons/account/partner.py +++ b/addons/account/partner.py @@ -221,14 +221,14 @@ class res_partner(osv.osv): 'account.payment.term', type='many2one', relation='account.payment.term', - string ='Customer Payment Terms', + string ='Customer Payment Term', view_load=True, help="This payment term will be used instead of the default one for sale orders and customer invoices"), 'property_supplier_payment_term': fields.property( 'account.payment.term', type='many2one', relation='account.payment.term', - string ='Supplier Payment Terms', + string ='Supplier Payment Term', view_load=True, help="This payment term will be used instead of the default one for purchase orders and supplier invoices"), 'ref_companies': fields.one2many('res.company', 'partner_id',