[FIX] space after commas

This commit is contained in:
Guewen Baconnier @ Camptocamp
2012-12-18 09:58:22 +01:00
parent ebf077d35c
commit 449cbaafcf

View File

@@ -187,8 +187,8 @@ class AccountHoursBlock(orm.Model):
ondelete='cascade', ondelete='cascade',
required=True), required=True),
'type': fields.selection( 'type': fields.selection(
[('hours','Hours'), [('hours', 'Hours'),
('amount','Amount')], ('amount', 'Amount')],
string='Type of Block', string='Type of Block',
required=True, required=True,
help="The block is based on the quantity of hours " help="The block is based on the quantity of hours "
@@ -270,15 +270,15 @@ class AccountHoursBlock(orm.Model):
store=True, store=True,
readonly=True), readonly=True),
'state': fields.related( 'state': fields.related(
'invoice_id','state', 'invoice_id', 'state',
type='selection', type='selection',
selection=[ selection=[
('draft','Draft'), ('draft', 'Draft'),
('proforma','Pro-forma'), ('proforma', 'Pro-forma'),
('proforma2','Pro-forma'), ('proforma2', 'Pro-forma'),
('open','Open'), ('open', 'Open'),
('paid','Paid'), ('paid', 'Paid'),
('cancel','Cancelled'), ('cancel', 'Cancelled'),
], ],
string='State', string='State',
readonly=True, readonly=True,