Merge lp:~openerp-community/openobject-addons/6.0_bug_789658 into lp:openobject-addons/6.0

Proposed by Lorenzo Battistini
Status: Merged
Merged at revision: 4721
Proposed branch: lp:~openerp-community/openobject-addons/6.0_bug_789658
Merge into: lp:openobject-addons/6.0
Diff against target: 12 lines (+1/-1)
1 file modified
account/account.py (+1/-1)
To merge this branch: bzr merge lp:~openerp-community/openobject-addons/6.0_bug_789658
Reviewer Review Type Date Requested Status
Jay Vora (Serpent Consulting Services) (community) Approve
OpenERP Core Team Pending
Review via email: mp+65633@code.launchpad.net

Description of the change

This fixes bug 789658 for 6.0 series

To post a comment you must log in.
Revision history for this message
Jay Vora (Serpent Consulting Services) (jayvora) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'account/account.py'
2--- account/account.py 2011-06-22 20:05:58 +0000
3+++ account/account.py 2011-06-23 09:26:02 +0000
4@@ -2494,7 +2494,7 @@
5 'name': fields.char('Tax Name', size=64, required=True),
6 'sequence': fields.integer('Sequence', required=True, help="The sequence field is used to order the taxes lines from lower sequences to higher ones. The order is important if you have a tax that has several tax children. In this case, the evaluation order is important."),
7 'amount': fields.float('Amount', required=True, digits=(14,4), help="For Tax Type percent enter % ratio between 0-1."),
8- 'type': fields.selection( [('percent','Percent'), ('fixed','Fixed'), ('none','None'), ('code','Python Code')], 'Tax Type', required=True),
9+ 'type': fields.selection( [('percent','Percent'), ('fixed','Fixed'), ('none','None'), ('code','Python Code'), ('balance','Balance')], 'Tax Type', required=True),
10 'applicable_type': fields.selection( [('true','True'), ('code','Python Code')], 'Applicable Type', required=True, help="If not applicable (computed through a Python code), the tax won't appear on the invoice."),
11 'domain':fields.char('Domain', size=32, help="This field is only used if you develop your own module allowing developers to create specific taxes in a custom domain."),
12 'account_collected_id':fields.many2one('account.account.template', 'Invoice Tax Account'),