Search improved, code refactor

This commit is contained in:
Faris Ansari 2017-08-23 16:25:16 +05:30
parent 26df5b8c00
commit 6d2f6c2e4d
4 changed files with 179 additions and 83 deletions

View File

@ -29,6 +29,9 @@
.cart-wrapper .list-item__content:not(:first-child) { .cart-wrapper .list-item__content:not(:first-child) {
justify-content: flex-end; justify-content: flex-end;
} }
.cart-wrapper .list-item--head .list-item__content:nth-child(2) {
flex: 1.5;
}
.cart-items { .cart-items {
height: 200px; height: 200px;
overflow: auto; overflow: auto;
@ -46,7 +49,11 @@
.cart-items .list-item.current-item.rate .rate { .cart-items .list-item.current-item.rate .rate {
font-weight: bold; font-weight: bold;
} }
.cart-items .list-item .quantity {
flex: 1.5;
}
.cart-items input { .cart-items input {
text-align: right;
height: 22px; height: 22px;
font-size: 12px; font-size: 12px;
} }

View File

@ -39,6 +39,10 @@
.list-item__content:not(:first-child) { .list-item__content:not(:first-child) {
justify-content: flex-end; justify-content: flex-end;
} }
.list-item--head .list-item__content:nth-child(2) {
flex: 1.5;
}
} }
.cart-items { .cart-items {
@ -62,7 +66,12 @@
font-weight: bold; font-weight: bold;
} }
.list-item .quantity {
flex: 1.5;
}
input { input {
text-align: right;
height: 22px; height: 22px;
font-size: @text-medium; font-size: @text-medium;
} }

View File

@ -76,12 +76,9 @@ class PointOfSale {
frm: this.frm, frm: this.frm,
wrapper: this.wrapper.find('.cart-container'), wrapper: this.wrapper.find('.cart-container'),
events: { events: {
customer_change: (customer) => this.frm.set_value('customer', customer), on_customer_change: (customer) => this.frm.set_value('customer', customer),
increase_qty: (item_code) => { on_field_change: (item_code, field, value) => {
this.add_item_to_cart(item_code); this.update_item_in_cart(item_code, field, value);
},
decrease_qty: (item_code) => {
this.add_item_to_cart(item_code, -1);
}, },
on_numpad: (value) => { on_numpad: (value) => {
if (value == 'Pay') { if (value == 'Pay') {
@ -111,37 +108,36 @@ class PointOfSale {
if(!this.frm.doc.customer) { if(!this.frm.doc.customer) {
frappe.throw(__('Please select a customer')); frappe.throw(__('Please select a customer'));
} }
this.add_item_to_cart(item_code); this.update_item_in_cart(item_code, 'qty', '+1');
this.cart && this.cart.unselect_all(); this.cart && this.cart.unselect_all();
} }
} }
}); });
} }
add_item_to_cart(item_code, qty = 1, barcode) { update_item_in_cart(item_code, field='qty', value=1) {
if(this.cart.exists(item_code)) { if(this.cart.exists(item_code)) {
// increase qty by 1 const item = this.frm.doc.items.find(i => i.item_code === item_code);
this.frm.doc.items.forEach((item) => {
if (item.item_code === item_code) { if (typeof value === 'string') {
if (barcode) { // value can be of type '+1' or '-1'
const value = barcode['serial_no'] ? value = item[field] + flt(value);
item.serial_no + '\n' + barcode['serial_no'] : barcode['batch_no']; }
frappe.model.set_value(item.doctype, item.name,
Object.keys(barcode)[0], value); this.update_item_in_frm(item, field, value)
} else { .then(() => {
const final_qty = item.qty + qty; // update cart
frappe.model.set_value(item.doctype, item.name, 'qty', final_qty) this.cart.add_item(item);
.then(() => { });
if (final_qty === 0) {
frappe.model.clear_doc(item.doctype, item.name); // if (barcode) {
} // const value = barcode['serial_no'] ?
// update cart // item.serial_no + '\n' + barcode['serial_no'] : barcode['batch_no'];
this.cart.add_item(item); // frappe.model.set_value(item.doctype, item.name,
}); // Object.keys(barcode)[0], value);
} // } else {
} // }
});
return; return;
} }
@ -155,6 +151,15 @@ class PointOfSale {
}); });
} }
update_item_in_frm(item, field, value) {
return frappe.model.set_value(item.doctype, item.name, field, value)
.then(() => {
if (field === 'qty' && value === 0) {
frappe.model.clear_doc(item.doctype, item.name);
}
});
}
make_payment_modal() { make_payment_modal() {
this.payment = new Payment(this.frm); this.payment = new Payment(this.frm);
} }
@ -249,6 +254,16 @@ class POSCart {
</div> </div>
</div> </div>
</div> </div>
<div class="taxes-and-totals">
<div class="list-item">
<div class="list-item__content list-item__content--flex-2 text-muted">${__('Net Total')}</div>
<div class="list-item__content">0.00</div>
</div>
<div class="list-item">
<div class="list-item__content list-item__content--flex-2 text-muted">${__('Taxes')}</div>
<div class="list-item__content">0.00</div>
</div>
</div>
</div> </div>
<div class="number-pad-container"> <div class="number-pad-container">
</div> </div>
@ -264,7 +279,7 @@ class POSCart {
options: 'Customer', options: 'Customer',
reqd: 1, reqd: 1,
onchange: () => { onchange: () => {
this.events.customer_change.apply(null, [this.customer_field.get_value()]); this.events.on_customer_change(this.customer_field.get_value());
} }
}, },
parent: this.wrapper.find('.customer-field'), parent: this.wrapper.find('.customer-field'),
@ -283,20 +298,35 @@ class POSCart {
add_class: { add_class: {
'Pay': 'brand-primary' 'Pay': 'brand-primary'
}, },
disable_highlight: ['Qty', 'Disc', 'Rate'], disable_highlight: ['Qty', 'Disc', 'Rate', 'Pay'],
reset_btns: ['Qty', 'Disc', 'Rate', 'Pay'],
del_btn: 'Del',
wrapper: this.wrapper.find('.number-pad-container'), wrapper: this.wrapper.find('.number-pad-container'),
onclick: (btn_value) => { onclick: (btn_value) => {
// on click // on click
if (!this.selected_item) {
frappe.show_alert({
indicator: 'red',
message: __('Please select an item in the cart')
});
return;
}
if (['Qty', 'Disc', 'Rate'].includes(btn_value)) { if (['Qty', 'Disc', 'Rate'].includes(btn_value)) {
if (!this.selected_item) { this.set_input_active(btn_value);
} else if (btn_value !== 'Pay') {
if (!this.selected_item.active_field) {
frappe.show_alert({ frappe.show_alert({
indicator: 'red', indicator: 'red',
message: __('Please select an item in the cart first') message: __('Please select a field to edit from numpad')
}); });
return; return;
} }
this.numpad.set_active(btn_value);
this.set_input_active(btn_value); const item_code = this.selected_item.attr('data-item-code');
const field = this.selected_item.active_field;
const value = this.numpad.get_value();
this.events.on_field_change(item_code, field, value);
} }
this.events.on_numpad(btn_value); this.events.on_numpad(btn_value);
@ -307,12 +337,16 @@ class POSCart {
set_input_active(btn_value) { set_input_active(btn_value) {
this.selected_item.removeClass('qty disc rate'); this.selected_item.removeClass('qty disc rate');
this.numpad.set_active(btn_value);
if (btn_value === 'Qty') { if (btn_value === 'Qty') {
this.selected_item.addClass('qty'); this.selected_item.addClass('qty');
this.selected_item.active_field = 'qty';
} else if (btn_value == 'Disc') { } else if (btn_value == 'Disc') {
this.selected_item.addClass('disc'); this.selected_item.addClass('disc');
this.selected_item.active_field = 'discount_percentage';
} else if (btn_value == 'Rate') { } else if (btn_value == 'Rate') {
this.selected_item.addClass('rate'); this.selected_item.addClass('rate');
this.selected_item.active_field = 'rate';
} }
} }
@ -391,6 +425,7 @@ class POSCart {
scroll_to_item(item_code) { scroll_to_item(item_code) {
const $item = this.$cart_items.find(`[data-item-code="${item_code}"]`); const $item = this.$cart_items.find(`[data-item-code="${item_code}"]`);
if ($item.length === 0) return;
const scrollTop = $item.offset().top - this.$cart_items.offset().top + this.$cart_items.scrollTop(); const scrollTop = $item.offset().top - this.$cart_items.offset().top + this.$cart_items.scrollTop();
this.$cart_items.animate({ scrollTop }); this.$cart_items.animate({ scrollTop });
} }
@ -408,18 +443,33 @@ class POSCart {
const action = $btn.attr('data-action'); const action = $btn.attr('data-action');
if(action === 'increment') { if(action === 'increment') {
events.increase_qty(item_code); events.on_field_change(item_code, 'qty', '+1');
} else if(action === 'decrement') { } else if(action === 'decrement') {
events.decrease_qty(item_code); events.on_field_change(item_code, 'qty', '-1');
} }
}); });
// this.$cart_items.on('focus', '.quantity input', function(e) {
// const $input = $(this);
// const $item = $input.closest('.list-item[data-item-code]');
// me.set_selected_item($item);
// me.set_input_active('Qty');
// e.preventDefault();
// e.stopPropagation();
// return false;
// });
this.$cart_items.on('change', '.quantity input', function() {
const $input = $(this);
const $item = $input.closest('.list-item[data-item-code]');
const item_code = $item.attr('data-item-code');
events.on_field_change(item_code, 'qty', flt($input.val()));
});
// current item // current item
this.$cart_items.on('click', '.list-item', function() { this.$cart_items.on('click', '.list-item', function() {
me.selected_item = $(this); console.log('cart item click');
me.$cart_items.find('.list-item').removeClass('current-item qty disc rate'); me.set_selected_item($(this));
me.selected_item.addClass('current-item');
me.events.on_select_change();
}); });
// disable current item // disable current item
@ -433,6 +483,13 @@ class POSCart {
// }); // });
} }
set_selected_item($item) {
this.selected_item = $item;
this.$cart_items.find('.list-item').removeClass('current-item qty disc rate');
this.selected_item.addClass('current-item');
this.events.on_select_change();
}
unselect_all() { unselect_all() {
this.$cart_items.find('.list-item').removeClass('current-item qty disc rate'); this.$cart_items.find('.list-item').removeClass('current-item qty disc rate');
this.selected_item = null; this.selected_item = null;
@ -456,8 +513,9 @@ class POSItems {
// bootstrap with 20 items // bootstrap with 20 items
this.get_items() this.get_items()
.then(items => { .then((items, serial_no) => {
this.items = items console.log(serial_no);
this.items = items;
}) })
.then(() => this.render_items()); .then(() => this.render_items());
} }
@ -538,6 +596,7 @@ class POSItems {
const row_container = '<div style="display: flex; border-bottom: 1px solid #ebeff2">'; const row_container = '<div style="display: flex; border-bottom: 1px solid #ebeff2">';
let curr_row = row_container; let curr_row = row_container;
for (let i=0; i < all_items.length; i++) { for (let i=0; i < all_items.length; i++) {
// wrap 4 items in a div to emulate // wrap 4 items in a div to emulate
// a row for clusterize // a row for clusterize
@ -547,6 +606,10 @@ class POSItems {
curr_row = row_container; curr_row = row_container;
} }
curr_row += all_items[i]; curr_row += all_items[i];
if(i == all_items.length - 1 && all_items.length % 4 !== 0) {
row_items.push(curr_row);
}
} }
this.clusterize.update(row_items); this.clusterize.update(row_items);
@ -555,14 +618,10 @@ class POSItems {
filter_items(search_term) { filter_items(search_term) {
search_term = search_term.toLowerCase(); search_term = search_term.toLowerCase();
const filtered_items = this.get_items({search_value: search_term})
Object.values(this.items) .then((items) => {
.filter(item => { this.render_items(items);
return item.item_code.toLowerCase().includes(search_term) || });
item.item_name.toLowerCase().includes(search_term)
});
this.render_items(filtered_items);
} }
bind_events(events) { bind_events(events) {
@ -582,7 +641,7 @@ class POSItems {
} }
get_item_html(item) { get_item_html(item) {
const price_list_rate = format_currency(item.price_list_rate, this.currency) const price_list_rate = format_currency(item.price_list_rate, this.currency);
const { item_code, item_name, item_image, item_stock=0} = item; const { item_code, item_name, item_image, item_stock=0} = item;
const item_title = item_name || item_code; const item_title = item_name || item_code;
@ -619,39 +678,41 @@ class POSItems {
return template; return template;
} }
get_items(start = 10, page_length = 20) { get_items({start = 0, page_length = 40, search_value=''}={}) {
var me = this;
return new Promise(res => { return new Promise(res => {
frappe.call({ frappe.call({
method: "erpnext.selling.page.point_of_sale.point_of_sale.get_items", method: "erpnext.selling.page.point_of_sale.point_of_sale.get_items",
args: { args: {
start,
page_length,
'price_list': this.pos_profile.selling_price_list, 'price_list': this.pos_profile.selling_price_list,
'item': me.search_field.$input.value || "" search_value,
} }
}).then(r => { }).then(r => {
const items = r.message; const { items, serial_no } = r.message;
// convert to key, value res(items, serial_no);
let items_dict = {};
items.map(item => {
items_dict[item.item_code] = item;
});
res(items_dict);
}); });
}); });
} }
} }
class NumberPad { class NumberPad {
constructor({wrapper, onclick, button_array, add_class, disable_highlight}) { constructor({
wrapper, onclick, button_array,
add_class={}, disable_highlight=[],
reset_btns=[], del_btn='',
}) {
this.wrapper = wrapper; this.wrapper = wrapper;
this.onclick = onclick; this.onclick = onclick;
this.button_array = button_array; this.button_array = button_array;
this.add_class = add_class; this.add_class = add_class;
this.disable_highlight = disable_highlight; this.disable_highlight = disable_highlight;
this.reset_btns = reset_btns;
this.del_btn = del_btn;
this.make_dom(); this.make_dom();
this.bind_events(); this.bind_events();
this.value = '';
} }
make_dom() { make_dom() {
@ -697,10 +758,23 @@ class NumberPad {
if (!me.disable_highlight.includes(btn_value)) { if (!me.disable_highlight.includes(btn_value)) {
me.highlight_button($btn); me.highlight_button($btn);
} }
if (me.reset_btns.includes(btn_value)) {
me.value = '';
} else {
if (btn_value === me.del_btn) {
me.value = me.value.substr(0, me.value.length - 1);
} else {
me.value += btn_value;
}
}
me.onclick(btn_value); me.onclick(btn_value);
}); });
} }
get_value() {
return flt(this.value);
}
get_btn(btn_value) { get_btn(btn_value) {
return this.wrapper.find(`.num-col[data-value="${btn_value}"]`); return this.wrapper.find(`.num-col[data-value="${btn_value}"]`);
} }
@ -890,4 +964,4 @@ class Payment {
this.total_amount_section = $(this.$body).find("[data-fieldname = 'total_amount']"); this.total_amount_section = $(this.$body).find("[data-fieldname = 'total_amount']");
this.total_amount_section.html(template); this.total_amount_section.html(template);
} }
} }

View File

@ -12,28 +12,19 @@ from erpnext.accounts.party import get_party_account_currency
from erpnext.controllers.accounts_controller import get_taxes_and_charges from erpnext.controllers.accounts_controller import get_taxes_and_charges
@frappe.whitelist() @frappe.whitelist()
def get_items(price_list, item=None): def get_items(start, page_length, price_list, search_value=""):
condition = "" condition = ""
order_by = "" serial_no = ""
item_code = search_value
if item: if search_value:
# search serial no # search serial no
item_code = frappe.db.sql("""select name as serial_no, item_code serial_no_data = frappe.db.get_value('Serial No', search_value, ['name', 'item_code'])
from `tabSerial No` where name=%s""", (item), as_dict=1) if serial_no_data:
if item_code: serial_no, item_code = serial_no_data
item_code[0]["name"] = item_code[0]["item_code"]
return item_code
# search barcode
item_code = frappe.db.sql("""select name, item_code from `tabItem`
where barcode=%s""",
(item), as_dict=1)
if item_code:
item_code[0]["barcode"] = item
return item_code
# locate function is used to sort by closest match from the beginning of the value # locate function is used to sort by closest match from the beginning of the value
return frappe.db.sql("""select i.name as item_code, i.item_name, i.image as item_image, res = frappe.db.sql("""select i.name as item_code, i.item_name, i.image as item_image,
item_det.price_list_rate, item_det.currency item_det.price_list_rate, item_det.currency
from `tabItem` i LEFT JOIN from `tabItem` i LEFT JOIN
(select item_code, price_list_rate, currency from (select item_code, price_list_rate, currency from
@ -44,4 +35,19 @@ def get_items(price_list, item=None):
i.disabled = 0 and i.has_variants = 0 i.disabled = 0 and i.has_variants = 0
and (i.item_code like %(item_code)s and (i.item_code like %(item_code)s
or i.item_name like %(item_code)s) or i.item_name like %(item_code)s)
limit 24""", {'item_code': '%%%s%%'%(frappe.db.escape(item)), 'price_list': price_list} , as_dict=1) limit {start}, {page_length}""".format(start=start, page_length=page_length),
{
'item_code': '%%%s%%'%(frappe.db.escape(item_code)),
'price_list': price_list
} , as_dict=1)
res = {
'items': res
}
if serial_no:
res.update({
'serial_no': serial_no
})
return res