diff --git a/addons/procurement/company.py b/addons/procurement/company.py index d544181a6e8..9d064c0e649 100644 --- a/addons/procurement/company.py +++ b/addons/procurement/company.py @@ -30,9 +30,9 @@ class company(osv.osv): "today and today+range are skipped for future computation."), } _defaults = { - 'schedule_range': 80.0, + 'schedule_range': 730.0, } company() -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/procurement/procurement.py b/addons/procurement/procurement.py index 842f9ec27fa..b7219b73cbb 100644 --- a/addons/procurement/procurement.py +++ b/addons/procurement/procurement.py @@ -97,7 +97,7 @@ class procurement_order(osv.osv): 'product_uos_qty': fields.float('UoS Quantity', states={'draft':[('readonly',False)]}, readonly=True), 'product_uos': fields.many2one('product.uom', 'Product UoS', states={'draft':[('readonly',False)]}, readonly=True), 'move_id': fields.many2one('stock.move', 'Reservation', ondelete='set null'), - 'close_move': fields.boolean('Close Move at end', required=True), + 'close_move': fields.boolean('Close Move at end'), 'location_id': fields.many2one('stock.location', 'Location', required=True, states={'draft':[('readonly',False)]}, readonly=True), 'procure_method': fields.selection([('make_to_stock','from stock'),('make_to_order','on order')], 'Procurement Method', states={'draft':[('readonly',False)], 'confirmed':[('readonly',False)]}, readonly=True, required=True, help="If you encode manually a Procurement, you probably want to use" \