Merge pull request #16505 from deepeshgarg007/pos_issue
feat: Enhancement in POS functionality
This commit is contained in:
commit
6f7cc8b186
@ -54,6 +54,7 @@ def get_pos_data():
|
|||||||
'barcode_data': get_barcode_data(items_list),
|
'barcode_data': get_barcode_data(items_list),
|
||||||
'tax_data': get_item_tax_data(),
|
'tax_data': get_item_tax_data(),
|
||||||
'price_list_data': get_price_list_data(doc.selling_price_list),
|
'price_list_data': get_price_list_data(doc.selling_price_list),
|
||||||
|
'customer_wise_price_list': get_customer_wise_price_list(),
|
||||||
'bin_data': get_bin_data(pos_profile),
|
'bin_data': get_bin_data(pos_profile),
|
||||||
'pricing_rules': get_pricing_rule_data(doc),
|
'pricing_rules': get_pricing_rule_data(doc),
|
||||||
'print_template': print_template,
|
'print_template': print_template,
|
||||||
@ -327,6 +328,21 @@ def get_price_list_data(selling_price_list):
|
|||||||
|
|
||||||
return itemwise_price_list
|
return itemwise_price_list
|
||||||
|
|
||||||
|
def get_customer_wise_price_list():
|
||||||
|
customer_wise_price = {}
|
||||||
|
customer_price_list_mapping = frappe._dict(frappe.get_all('Customer',fields = ['default_price_list', 'name'], as_list=1))
|
||||||
|
|
||||||
|
price_lists = frappe.db.sql(""" Select ifnull(price_list_rate, 0) as price_list_rate,
|
||||||
|
item_code, price_list from `tabItem Price` """, as_dict=1)
|
||||||
|
|
||||||
|
for item in price_lists:
|
||||||
|
if item.price_list and customer_price_list_mapping.get(item.price_list):
|
||||||
|
|
||||||
|
customer_wise_price.setdefault(customer_price_list_mapping.get(item.price_list),{}).setdefault(
|
||||||
|
item.item_code, item.price_list_rate
|
||||||
|
)
|
||||||
|
|
||||||
|
return customer_wise_price
|
||||||
|
|
||||||
def get_bin_data(pos_profile):
|
def get_bin_data(pos_profile):
|
||||||
itemwise_bin_data = {}
|
itemwise_bin_data = {}
|
||||||
|
@ -313,6 +313,7 @@ erpnext.pos.PointOfSale = erpnext.taxes_and_totals.extend({
|
|||||||
this.contacts = r.message.contacts;
|
this.contacts = r.message.contacts;
|
||||||
this.address = r.message.address || {};
|
this.address = r.message.address || {};
|
||||||
this.price_list_data = r.message.price_list_data;
|
this.price_list_data = r.message.price_list_data;
|
||||||
|
this.customer_wise_price_list = r.message.customer_wise_price_list
|
||||||
this.bin_data = r.message.bin_data;
|
this.bin_data = r.message.bin_data;
|
||||||
this.pricing_rules = r.message.pricing_rules;
|
this.pricing_rules = r.message.pricing_rules;
|
||||||
this.print_template = r.message.print_template;
|
this.print_template = r.message.print_template;
|
||||||
@ -798,6 +799,7 @@ erpnext.pos.PointOfSale = erpnext.taxes_and_totals.extend({
|
|||||||
if (item.action) {
|
if (item.action) {
|
||||||
$(this).val("");
|
$(this).val("");
|
||||||
}
|
}
|
||||||
|
me.make_item_list(item.customer_name);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -1037,7 +1039,7 @@ erpnext.pos.PointOfSale = erpnext.taxes_and_totals.extend({
|
|||||||
this.numeric_keypad.show();
|
this.numeric_keypad.show();
|
||||||
},
|
},
|
||||||
|
|
||||||
make_item_list: function () {
|
make_item_list: function (customer) {
|
||||||
var me = this;
|
var me = this;
|
||||||
if (!this.price_list) {
|
if (!this.price_list) {
|
||||||
frappe.msgprint(__("Price List not found or disabled"));
|
frappe.msgprint(__("Price List not found or disabled"));
|
||||||
@ -1051,10 +1053,17 @@ erpnext.pos.PointOfSale = erpnext.taxes_and_totals.extend({
|
|||||||
|
|
||||||
if (this.items.length > 0) {
|
if (this.items.length > 0) {
|
||||||
$.each(this.items, function(index, obj) {
|
$.each(this.items, function(index, obj) {
|
||||||
|
let customer_price_list = me.customer_wise_price_list[customer];
|
||||||
|
let item_price
|
||||||
|
if (customer && customer_price_list && customer_price_list[obj.name]) {
|
||||||
|
item_price = format_currency(customer_price_list[obj.name], me.frm.doc.currency);
|
||||||
|
} else {
|
||||||
|
item_price = format_currency(me.price_list_data[obj.name], me.frm.doc.currency);
|
||||||
|
}
|
||||||
if(index < me.page_len) {
|
if(index < me.page_len) {
|
||||||
$(frappe.render_template("pos_item", {
|
$(frappe.render_template("pos_item", {
|
||||||
item_code: obj.name,
|
item_code: obj.name,
|
||||||
item_price: format_currency(me.price_list_data[obj.name], me.frm.doc.currency),
|
item_price: item_price,
|
||||||
item_name: obj.name === obj.item_name ? "" : obj.item_name,
|
item_name: obj.name === obj.item_name ? "" : obj.item_name,
|
||||||
item_image: obj.image,
|
item_image: obj.image,
|
||||||
item_stock: __('Stock Qty') + ": " + me.get_actual_qty(obj),
|
item_stock: __('Stock Qty') + ": " + me.get_actual_qty(obj),
|
||||||
@ -1417,8 +1426,20 @@ erpnext.pos.PointOfSale = erpnext.taxes_and_totals.extend({
|
|||||||
this.child.income_account = this.pos_profile_data['income_account'] || this.items[0].income_account;
|
this.child.income_account = this.pos_profile_data['income_account'] || this.items[0].income_account;
|
||||||
this.child.warehouse = (this.item_serial_no[this.child.item_code]
|
this.child.warehouse = (this.item_serial_no[this.child.item_code]
|
||||||
? this.item_serial_no[this.child.item_code][1] : (this.pos_profile_data['warehouse'] || this.items[0].default_warehouse));
|
? this.item_serial_no[this.child.item_code][1] : (this.pos_profile_data['warehouse'] || this.items[0].default_warehouse));
|
||||||
this.child.price_list_rate = flt(this.price_list_data[this.child.item_code] * this.child.conversion_factor, 9) / flt(this.frm.doc.conversion_rate, 9);
|
|
||||||
this.child.rate = flt(this.price_list_data[this.child.item_code] * this.child.conversion_factor, 9) / flt(this.frm.doc.conversion_rate, 9);
|
customer = this.frm.doc.customer;
|
||||||
|
let rate;
|
||||||
|
|
||||||
|
customer_price_list = this.customer_wise_price_list[customer]
|
||||||
|
if (customer_price_list && customer_price_list[this.child.item_code]){
|
||||||
|
rate = flt(this.customer_wise_price_list[customer][this.child.item_code] * this.child.conversion_factor, 9) / flt(this.frm.doc.conversion_rate, 9);
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
rate = flt(this.price_list_data[this.child.item_code] * this.child.conversion_factor, 9) / flt(this.frm.doc.conversion_rate, 9);
|
||||||
|
}
|
||||||
|
|
||||||
|
this.child.price_list_rate = rate;
|
||||||
|
this.child.rate = rate;
|
||||||
this.child.actual_qty = me.get_actual_qty(this.items[0]);
|
this.child.actual_qty = me.get_actual_qty(this.items[0]);
|
||||||
this.child.amount = flt(this.child.qty) * flt(this.child.rate);
|
this.child.amount = flt(this.child.qty) * flt(this.child.rate);
|
||||||
this.child.batch_no = this.item_batch_no[this.child.item_code];
|
this.child.batch_no = this.item_batch_no[this.child.item_code];
|
||||||
|
@ -477,7 +477,7 @@ erpnext.TransactionController = erpnext.taxes_and_totals.extend({
|
|||||||
var me = this;
|
var me = this;
|
||||||
var item = frappe.get_doc(cdt, cdn);
|
var item = frappe.get_doc(cdt, cdn);
|
||||||
|
|
||||||
if (item.serial_no) {
|
if (item && item.serial_no) {
|
||||||
if (!item.item_code) {
|
if (!item.item_code) {
|
||||||
this.frm.trigger("item_code", cdt, cdn);
|
this.frm.trigger("item_code", cdt, cdn);
|
||||||
}
|
}
|
||||||
|
@ -20,6 +20,16 @@ frappe.ui.form.on('POS Closing Voucher', {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
total_amount: function(frm) {
|
||||||
|
get_difference_amount(frm);
|
||||||
|
},
|
||||||
|
custody_amount: function(frm){
|
||||||
|
get_difference_amount(frm);
|
||||||
|
},
|
||||||
|
expense_amount: function(frm){
|
||||||
|
get_difference_amount(frm);
|
||||||
|
},
|
||||||
refresh: function(frm) {
|
refresh: function(frm) {
|
||||||
get_closing_voucher_details(frm);
|
get_closing_voucher_details(frm);
|
||||||
},
|
},
|
||||||
@ -47,6 +57,10 @@ frappe.ui.form.on('POS Closing Voucher Details', {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
var get_difference_amount = function(frm){
|
||||||
|
frm.doc.difference = frm.doc.total_amount - frm.doc.custody_amount - frm.doc.expense_amount;
|
||||||
|
refresh_field("difference");
|
||||||
|
};
|
||||||
|
|
||||||
var get_closing_voucher_details = function(frm) {
|
var get_closing_voucher_details = function(frm) {
|
||||||
if (frm.doc.period_end_date && frm.doc.period_start_date && frm.doc.company && frm.doc.pos_profile && frm.doc.user) {
|
if (frm.doc.period_end_date && frm.doc.period_start_date && frm.doc.company && frm.doc.pos_profile && frm.doc.user) {
|
||||||
@ -62,6 +76,7 @@ var get_closing_voucher_details = function(frm) {
|
|||||||
refresh_field("grand_total");
|
refresh_field("grand_total");
|
||||||
refresh_field("net_total");
|
refresh_field("net_total");
|
||||||
refresh_field("total_quantity");
|
refresh_field("total_quantity");
|
||||||
|
refresh_field("total_amount");
|
||||||
|
|
||||||
frm.get_field("payment_reconciliation_details").$wrapper.html(r.message);
|
frm.get_field("payment_reconciliation_details").$wrapper.html(r.message);
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
"allow_copy": 0,
|
"allow_copy": 0,
|
||||||
|
"allow_events_in_timeline": 0,
|
||||||
"allow_guest_to_view": 0,
|
"allow_guest_to_view": 0,
|
||||||
"allow_import": 0,
|
"allow_import": 0,
|
||||||
"allow_rename": 0,
|
"allow_rename": 0,
|
||||||
@ -38,7 +39,7 @@
|
|||||||
"precision": "",
|
"precision": "",
|
||||||
"print_hide": 0,
|
"print_hide": 0,
|
||||||
"print_hide_if_no_value": 0,
|
"print_hide_if_no_value": 0,
|
||||||
"read_only": 0,
|
"read_only": 1,
|
||||||
"remember_last_selected_value": 0,
|
"remember_last_selected_value": 0,
|
||||||
"report_hide": 0,
|
"report_hide": 0,
|
||||||
"reqd": 1,
|
"reqd": 1,
|
||||||
@ -71,7 +72,7 @@
|
|||||||
"precision": "",
|
"precision": "",
|
||||||
"print_hide": 0,
|
"print_hide": 0,
|
||||||
"print_hide_if_no_value": 0,
|
"print_hide_if_no_value": 0,
|
||||||
"read_only": 0,
|
"read_only": 1,
|
||||||
"remember_last_selected_value": 0,
|
"remember_last_selected_value": 0,
|
||||||
"report_hide": 0,
|
"report_hide": 0,
|
||||||
"reqd": 1,
|
"reqd": 1,
|
||||||
@ -307,6 +308,197 @@
|
|||||||
"translatable": 0,
|
"translatable": 0,
|
||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
|
"allow_in_quick_entry": 0,
|
||||||
|
"allow_on_submit": 0,
|
||||||
|
"bold": 0,
|
||||||
|
"collapsible": 0,
|
||||||
|
"columns": 0,
|
||||||
|
"fieldname": "expense_details_section",
|
||||||
|
"fieldtype": "Section Break",
|
||||||
|
"hidden": 0,
|
||||||
|
"ignore_user_permissions": 0,
|
||||||
|
"ignore_xss_filter": 0,
|
||||||
|
"in_filter": 0,
|
||||||
|
"in_global_search": 0,
|
||||||
|
"in_list_view": 0,
|
||||||
|
"in_standard_filter": 0,
|
||||||
|
"label": "Expense Details",
|
||||||
|
"length": 0,
|
||||||
|
"no_copy": 0,
|
||||||
|
"permlevel": 0,
|
||||||
|
"precision": "",
|
||||||
|
"print_hide": 0,
|
||||||
|
"print_hide_if_no_value": 0,
|
||||||
|
"read_only": 0,
|
||||||
|
"remember_last_selected_value": 0,
|
||||||
|
"report_hide": 0,
|
||||||
|
"reqd": 0,
|
||||||
|
"search_index": 0,
|
||||||
|
"set_only_once": 0,
|
||||||
|
"translatable": 0,
|
||||||
|
"unique": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
|
"allow_in_quick_entry": 0,
|
||||||
|
"allow_on_submit": 0,
|
||||||
|
"bold": 0,
|
||||||
|
"collapsible": 0,
|
||||||
|
"columns": 0,
|
||||||
|
"fieldname": "expense_amount",
|
||||||
|
"fieldtype": "Currency",
|
||||||
|
"hidden": 0,
|
||||||
|
"ignore_user_permissions": 0,
|
||||||
|
"ignore_xss_filter": 0,
|
||||||
|
"in_filter": 0,
|
||||||
|
"in_global_search": 0,
|
||||||
|
"in_list_view": 0,
|
||||||
|
"in_standard_filter": 0,
|
||||||
|
"label": "Expense Amount",
|
||||||
|
"length": 0,
|
||||||
|
"no_copy": 0,
|
||||||
|
"permlevel": 0,
|
||||||
|
"precision": "",
|
||||||
|
"print_hide": 0,
|
||||||
|
"print_hide_if_no_value": 0,
|
||||||
|
"read_only": 0,
|
||||||
|
"remember_last_selected_value": 0,
|
||||||
|
"report_hide": 0,
|
||||||
|
"reqd": 0,
|
||||||
|
"search_index": 0,
|
||||||
|
"set_only_once": 0,
|
||||||
|
"translatable": 0,
|
||||||
|
"unique": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
|
"allow_in_quick_entry": 0,
|
||||||
|
"allow_on_submit": 0,
|
||||||
|
"bold": 0,
|
||||||
|
"collapsible": 0,
|
||||||
|
"columns": 0,
|
||||||
|
"fieldname": "custody_amount",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"hidden": 0,
|
||||||
|
"ignore_user_permissions": 0,
|
||||||
|
"ignore_xss_filter": 0,
|
||||||
|
"in_filter": 0,
|
||||||
|
"in_global_search": 0,
|
||||||
|
"in_list_view": 0,
|
||||||
|
"in_standard_filter": 0,
|
||||||
|
"label": "Amount in Custody",
|
||||||
|
"length": 0,
|
||||||
|
"no_copy": 0,
|
||||||
|
"permlevel": 0,
|
||||||
|
"precision": "",
|
||||||
|
"print_hide": 0,
|
||||||
|
"print_hide_if_no_value": 0,
|
||||||
|
"read_only": 0,
|
||||||
|
"remember_last_selected_value": 0,
|
||||||
|
"report_hide": 0,
|
||||||
|
"reqd": 0,
|
||||||
|
"search_index": 0,
|
||||||
|
"set_only_once": 0,
|
||||||
|
"translatable": 0,
|
||||||
|
"unique": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
|
"allow_in_quick_entry": 0,
|
||||||
|
"allow_on_submit": 0,
|
||||||
|
"bold": 0,
|
||||||
|
"collapsible": 0,
|
||||||
|
"columns": 0,
|
||||||
|
"fieldname": "column_break_13",
|
||||||
|
"fieldtype": "Column Break",
|
||||||
|
"hidden": 0,
|
||||||
|
"ignore_user_permissions": 0,
|
||||||
|
"ignore_xss_filter": 0,
|
||||||
|
"in_filter": 0,
|
||||||
|
"in_global_search": 0,
|
||||||
|
"in_list_view": 0,
|
||||||
|
"in_standard_filter": 0,
|
||||||
|
"length": 0,
|
||||||
|
"no_copy": 0,
|
||||||
|
"permlevel": 0,
|
||||||
|
"precision": "",
|
||||||
|
"print_hide": 0,
|
||||||
|
"print_hide_if_no_value": 0,
|
||||||
|
"read_only": 0,
|
||||||
|
"remember_last_selected_value": 0,
|
||||||
|
"report_hide": 0,
|
||||||
|
"reqd": 0,
|
||||||
|
"search_index": 0,
|
||||||
|
"set_only_once": 0,
|
||||||
|
"translatable": 0,
|
||||||
|
"unique": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
|
"allow_in_quick_entry": 0,
|
||||||
|
"allow_on_submit": 0,
|
||||||
|
"bold": 0,
|
||||||
|
"collapsible": 0,
|
||||||
|
"columns": 0,
|
||||||
|
"fieldname": "total_amount",
|
||||||
|
"fieldtype": "Currency",
|
||||||
|
"hidden": 0,
|
||||||
|
"ignore_user_permissions": 0,
|
||||||
|
"ignore_xss_filter": 0,
|
||||||
|
"in_filter": 0,
|
||||||
|
"in_global_search": 0,
|
||||||
|
"in_list_view": 0,
|
||||||
|
"in_standard_filter": 0,
|
||||||
|
"label": "Total Collected Amount",
|
||||||
|
"length": 0,
|
||||||
|
"no_copy": 0,
|
||||||
|
"permlevel": 0,
|
||||||
|
"precision": "",
|
||||||
|
"print_hide": 0,
|
||||||
|
"print_hide_if_no_value": 0,
|
||||||
|
"read_only": 0,
|
||||||
|
"remember_last_selected_value": 0,
|
||||||
|
"report_hide": 0,
|
||||||
|
"reqd": 0,
|
||||||
|
"search_index": 0,
|
||||||
|
"set_only_once": 0,
|
||||||
|
"translatable": 0,
|
||||||
|
"unique": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
|
"allow_in_quick_entry": 0,
|
||||||
|
"allow_on_submit": 0,
|
||||||
|
"bold": 0,
|
||||||
|
"collapsible": 0,
|
||||||
|
"columns": 0,
|
||||||
|
"fieldname": "difference",
|
||||||
|
"fieldtype": "Currency",
|
||||||
|
"hidden": 0,
|
||||||
|
"ignore_user_permissions": 0,
|
||||||
|
"ignore_xss_filter": 0,
|
||||||
|
"in_filter": 0,
|
||||||
|
"in_global_search": 0,
|
||||||
|
"in_list_view": 1,
|
||||||
|
"in_standard_filter": 0,
|
||||||
|
"label": "Difference",
|
||||||
|
"length": 0,
|
||||||
|
"no_copy": 0,
|
||||||
|
"permlevel": 0,
|
||||||
|
"precision": "",
|
||||||
|
"print_hide": 0,
|
||||||
|
"print_hide_if_no_value": 0,
|
||||||
|
"read_only": 1,
|
||||||
|
"remember_last_selected_value": 0,
|
||||||
|
"report_hide": 0,
|
||||||
|
"reqd": 0,
|
||||||
|
"search_index": 0,
|
||||||
|
"set_only_once": 0,
|
||||||
|
"translatable": 0,
|
||||||
|
"unique": 0
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"allow_bulk_edit": 0,
|
"allow_bulk_edit": 0,
|
||||||
"allow_in_quick_entry": 0,
|
"allow_in_quick_entry": 0,
|
||||||
@ -766,7 +958,7 @@
|
|||||||
"issingle": 0,
|
"issingle": 0,
|
||||||
"istable": 0,
|
"istable": 0,
|
||||||
"max_attachments": 0,
|
"max_attachments": 0,
|
||||||
"modified": "2018-08-21 16:15:54.363636",
|
"modified": "2019-01-28 12:33:45.217813",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Selling",
|
"module": "Selling",
|
||||||
"name": "POS Closing Voucher",
|
"name": "POS Closing Voucher",
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
import frappe
|
import frappe
|
||||||
|
from frappe import _
|
||||||
from frappe.model.document import Document
|
from frappe.model.document import Document
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
from erpnext.controllers.taxes_and_totals import get_itemised_tax_breakup_data
|
from erpnext.controllers.taxes_and_totals import get_itemised_tax_breakup_data
|
||||||
@ -26,6 +27,7 @@ class POSClosingVoucher(Document):
|
|||||||
|
|
||||||
sales_summary = get_sales_summary(invoice_list)
|
sales_summary = get_sales_summary(invoice_list)
|
||||||
self.set_sales_summary_values(sales_summary)
|
self.set_sales_summary_values(sales_summary)
|
||||||
|
self.total_amount = sales_summary['grand_total']
|
||||||
|
|
||||||
if not self.get('payment_reconciliation'):
|
if not self.get('payment_reconciliation'):
|
||||||
mop = get_mode_of_payment_details(invoice_list)
|
mop = get_mode_of_payment_details(invoice_list)
|
||||||
@ -36,6 +38,21 @@ class POSClosingVoucher(Document):
|
|||||||
|
|
||||||
return self.get_payment_reconciliation_details()
|
return self.get_payment_reconciliation_details()
|
||||||
|
|
||||||
|
def validate(self):
|
||||||
|
user = frappe.get_all('POS Closing Voucher',
|
||||||
|
filters = {
|
||||||
|
'user': self.user,
|
||||||
|
'docstatus': 1
|
||||||
|
},
|
||||||
|
or_filters = {
|
||||||
|
'period_start_date': ('between', [self.period_start_date, self.period_end_date]),
|
||||||
|
'period_end_date': ('between', [self.period_start_date, self.period_end_date])
|
||||||
|
})
|
||||||
|
|
||||||
|
if user:
|
||||||
|
frappe.throw(_("POS Closing Voucher alreday exists for {0} between date {1} and {2}"
|
||||||
|
.format(self.user, self.period_start_date, self.period_end_date)))
|
||||||
|
|
||||||
def set_invoice_list(self, invoice_list):
|
def set_invoice_list(self, invoice_list):
|
||||||
self.sales_invoices_summary = []
|
self.sales_invoices_summary = []
|
||||||
for invoice in invoice_list:
|
for invoice in invoice_list:
|
||||||
|
@ -164,6 +164,12 @@ erpnext.pos.PointOfSale = class PointOfSale {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
frappe.ui.form.on('Sales Invoice', 'selling_price_list', (frm) => {
|
||||||
|
if(this.items) {
|
||||||
|
this.items.reset_items();
|
||||||
|
}
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
toggle_editing(flag) {
|
toggle_editing(flag) {
|
||||||
@ -1384,6 +1390,7 @@ class POSItems {
|
|||||||
}
|
}
|
||||||
|
|
||||||
get_items({start = 0, page_length = 40, search_value='', item_group=this.parent_item_group}={}) {
|
get_items({start = 0, page_length = 40, search_value='', item_group=this.parent_item_group}={}) {
|
||||||
|
const price_list = this.frm.doc.selling_price_list;
|
||||||
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",
|
||||||
@ -1391,10 +1398,10 @@ class POSItems {
|
|||||||
args: {
|
args: {
|
||||||
start,
|
start,
|
||||||
page_length,
|
page_length,
|
||||||
'price_list': this.frm.doc.selling_price_list,
|
price_list,
|
||||||
item_group,
|
item_group,
|
||||||
search_value,
|
search_value,
|
||||||
'pos_profile': this.frm.doc.pos_profile
|
pos_profile: this.frm.doc.pos_profile
|
||||||
}
|
}
|
||||||
}).then(r => {
|
}).then(r => {
|
||||||
// const { items, serial_no, batch_no } = r.message;
|
// const { items, serial_no, batch_no } = r.message;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user