← Back to team overview

openerp-wms-expert team mailing list archive

lp:~numerigraphe/openobject-addons/trunk-purchase-direct-delivery-label into lp:openobject-addons

 

You have been requested to review the proposed merge of lp:~numerigraphe/openobject-addons/trunk-purchase-direct-delivery-label into lp:openobject-addons.

For more details, see:
https://code.launchpad.net/~numerigraphe/openobject-addons/trunk-purchase-direct-delivery-label/+merge/91434

When you enter a purchase order, you can set a direct delivery address at the customer's.
Users may be misguided by the label "delivery address", and think this is the address of the warehouse where the incoming goods are expected.
We propose to simply change this label to make it clearer.
Lionel Sausin & Philippe Rossi.

-- 
https://code.launchpad.net/~numerigraphe/openobject-addons/trunk-purchase-direct-delivery-label/+merge/91434
Your team OpenERP WMS Expert is requested to review the proposed merge of lp:~numerigraphe/openobject-addons/trunk-purchase-direct-delivery-label into lp:openobject-addons.
=== modified file 'purchase/purchase.py'
--- purchase/purchase.py	2012-01-31 13:36:57 +0000
+++ purchase/purchase.py	2012-02-03 13:34:38 +0000
@@ -163,7 +163,7 @@
         'partner_id':fields.many2one('res.partner', 'Supplier', required=True, states={'confirmed':[('readonly',True)], 'approved':[('readonly',True)],'done':[('readonly',True)]}, change_default=True),
         'partner_address_id':fields.many2one('res.partner.address', 'Address', required=True,
             states={'confirmed':[('readonly',True)], 'approved':[('readonly',True)],'done':[('readonly',True)]},domain="[('partner_id', '=', partner_id)]"),
-        'dest_address_id':fields.many2one('res.partner.address', 'Destination Address', domain="[('partner_id', '!=', False)]",
+        'dest_address_id':fields.many2one('res.partner.address', 'Direct Customer Delivery Address', domain="[('partner_id', '!=', False)]",
             states={'confirmed':[('readonly',True)], 'approved':[('readonly',True)],'done':[('readonly',True)]},
             help="Put an address if you want to deliver directly from the supplier to the customer." \
                 "In this case, it will remove the warehouse link and set the customer location."


References