[FIX] BUG:-666362 sale Invoice Control Status Rename "Not from Picking" to From Ordered Quantities

bzr revid: ron@tinyerp.com-20101026135622-d57kelps5grfr6b5
This commit is contained in:
ron@tinyerp.com 2010-10-26 19:26:22 +05:30
parent a7cf22db9f
commit d8d5a56398
2 changed files with 24 additions and 24 deletions

View File

@ -636,7 +636,7 @@ class stock_picking(osv.osv):
'invoice_state': fields.selection([
("invoiced", "Invoiced"),
("2binvoiced", "To Be Invoiced"),
("none", "Not from Picking")], "Invoice Control",
("none", "From Ordered Quantities")], "Invoice Control",
select=True, required=True, readonly=True, states={'draft': [('readonly', False)]}),
'company_id': fields.many2one('res.company', 'Company', required=True, select=True),
}

View File

@ -38,7 +38,7 @@ class stock_location_path(osv.osv):
'invoice_state': fields.selection([
("invoiced", "Invoiced"),
("2binvoiced", "To Be Invoiced"),
("none", "Not from Picking")], "Invoice Status",
("none", "From Ordered Quantities")], "Invoice Status",
required=True,),
'picking_type': fields.selection([('out','Sending Goods'),('in','Getting Goods'),('internal','Internal')], 'Shipping Type', required=True, select=True, help="Depending on the company, choose whatever you want to receive or send products"),
'auto': fields.selection(
@ -77,7 +77,7 @@ class product_pulled_flow(osv.osv):
'invoice_state': fields.selection([
("invoiced", "Invoiced"),
("2binvoiced", "To Be Invoiced"),
("none", "Not from Picking")], "Invoice Status",
("none", "From Ordered Quantities")], "Invoice Status",
required=True,),
}
_defaults = {