[FiX] sale(_stock): missing state on report

The state 'Quotation Sent' was not visible on the sales analysis report (e.g.
group by Status). Add the missing state to the report to correctly disaply it.
opw 619748
This commit is contained in:
Somesh Khare 2014-12-12 15:30:19 +05:30 committed by Martin Trigaux
parent 56c95d2843
commit c09095cbc9
2 changed files with 2 additions and 0 deletions

View File

@ -49,6 +49,7 @@ class sale_report(osv.osv):
'nbr': fields.integer('# of Lines', readonly=True),
'state': fields.selection([
('draft', 'Quotation'),
('sent', 'Quotation Sent'),
('waiting_date', 'Waiting Schedule'),
('manual', 'Manual In Progress'),
('progress', 'In Progress'),

View File

@ -29,6 +29,7 @@ class sale_report(osv.osv):
'shipped_qty_1': fields.integer('Shipped', readonly=True),
'state': fields.selection([
('draft', 'Quotation'),
('sent', 'Quotation Sent'),
('waiting_date', 'Waiting Schedule'),
('manual', 'Manual In Progress'),
('progress', 'In Progress'),