I want to add customer search in point of sale interface and customer name on point of sale receipt.
Thanks.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
I want to add customer search in point of sale interface and customer name on point of sale receipt.
Thanks.
Download and replace your current Point_of_Sale module whit this one: bzr branch lp:~mmakonnen/openobject-addons/point_of_sale_enhanced-70
Include the improvement you are looking for and other ones.
Great module it does includes all the improvements just it needs to include fixes already included in stable version like Bug #1127114: [Trunk/7.0]: Returning products causing credit - debit value error and Bug#1099404 when you receive payment, entering a number with a comma => the floats after the comma are ignored (in this case even without a comma the zero before the floats is kept causing to record 250 when typing only 25
How may I add the partner name (customer name) in the pos.detail report with OE Report designer?
How may I add the partner name (customer name) in the pos.detail report with OE Report designer?
Hello,
You can add customer search in point of sale interface by adding following code in 'pos.xml' file.
<label>Costomer :</label>
<select>
<t t-foreach="widget.pos.attributes.partner_list" t-as="partner">
<option t-att-value="partner.name">
<t t-esc="partner.name" />
</option>
</t>
</select>
In partner_list in "widget.pos.attributes.partner_list" you have to pass a list of partner you want to search in point of sale interface.
Thanks, Serpent Consulting Services.
I've used that code, but i'm getting an empty pulldown bar. Any insight? thanks!!
Hi, The above solution is working fine and the customer field is visible, i am able to choose customer from the list. I want to pass the customer id to point of sale order while click on "Validate" button in point of screen. Kindly help me how to achieve this...Thanks in advance
Создайте аккаунт сегодня, чтобы получить доступ к эксклюзивным функциям и стать частью нашего замечательного сообщества!
Регистрация
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.