Hello, We have already fixed this issue on latest trunk , It is only affected to stable v7.
So, As per our bug management policy, If you want to this on v7 then you have to contact our support team at [email protected] they will defiantly helps you. Thanks for reporting! ** Changed in: openobject-addons Status: Incomplete => Invalid ** Changed in: openobject-addons Status: Invalid => Won't Fix -- You received this bug notification because you are a member of OpenERP Indian Team, which is subscribed to OpenERP Addons. https://bugs.launchpad.net/bugs/1252342 Title: [7.0] POS take an image of a wrong size Status in OpenERP Addons (modules): Won't Fix Bug description: POS takes an image field instead of image_small of a product. If you uploaded big images POS consumes huge amount of RAM and became really slow. This bug is very easy to correct: in file point_of_sale/static/src/js/models.js (lines 327-331) module.Product = Backbone.Model.extend({ get_image_url: function(){ return instance.session.url('/web/binary/image', {model: 'product.product', field: 'image', id: this.get('id')}); }, }); should be substituted with: module.Product = Backbone.Model.extend({ get_image_url: function(){ return instance.session.url('/web/binary/image', {model: 'product.product', field: 'image_small', id: this.get('id')}); }, }); To manage notifications about this bug go to: https://bugs.launchpad.net/openobject-addons/+bug/1252342/+subscriptions _______________________________________________ Mailing list: https://launchpad.net/~openerp-india Post to : [email protected] Unsubscribe : https://launchpad.net/~openerp-india More help : https://help.launchpad.net/ListHelp

