Somesh Khare(OpenERP) has proposed merging 
lp:~openerp-dev/openobject-addons/6.1-opw-579732-skh into 
lp:openobject-addons/6.1.

Requested reviews:
  Naresh(OpenERP) (nch-openerp)

For more details, see:
https://code.launchpad.net/~openerp-dev/openobject-addons/6.1-opw-579732-skh/+merge/127689

Hello Sir,

[FIX]POS: Due to context did not passed into the action,In webclient partial 
payment is not possible.

Issue: In Webclient partial payment is not done for the POS Order.

Steps: 
1. Install Point of Sale Module.
2. Open POS Backend and create a new POS Order
3. Select product eg: PC2 and make payment of 100(Partial Payment),

Error Occurred as :AttributeError: 'Field pricelist_id not found in 
browse_record(pos.order, 42).

on paying full amount this error did not occurred.

This branch fixes this issue. Also correct the spelling of Payment into the 
action.

Kidly review the branch and please share your views in it.

Regards,
Somesh Khare
-- 
https://code.launchpad.net/~openerp-dev/openobject-addons/6.1-opw-579732-skh/+merge/127689
Your team OpenERP R&D Team is subscribed to branch 
lp:~openerp-dev/openobject-addons/6.1-opw-579732-skh.
=== modified file 'point_of_sale/wizard/pos_payment.py'
--- point_of_sale/wizard/pos_payment.py	2012-02-09 17:17:32 +0000
+++ point_of_sale/wizard/pos_payment.py	2012-10-03 09:51:43 +0000
@@ -58,7 +58,7 @@
 
     def launch_payment(self, cr, uid, ids, context=None):
         return {
-            'name': _('Paiement'),
+            'name': _('Payment'),
             'view_type': 'form',
             'view_mode': 'form',
             'res_model': 'pos.make.payment',
@@ -66,6 +66,7 @@
             'target': 'new',
             'views': False,
             'type': 'ir.actions.act_window',
+            'context': context,
         }
 
     def print_report(self, cr, uid, ids, context=None):

_______________________________________________
Mailing list: https://launchpad.net/~openerp-dev-gtk
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~openerp-dev-gtk
More help   : https://help.launchpad.net/ListHelp

Reply via email to