fix(pos): filter on customer groups
Signed-off-by: Sabu Siyad <hello@ssiyad.com>
This commit is contained in:
parent
722e29df5c
commit
cc63415887
@ -5,6 +5,8 @@
|
|||||||
frappe.provide("erpnext.accounts");
|
frappe.provide("erpnext.accounts");
|
||||||
|
|
||||||
erpnext.selling.POSInvoiceController = class POSInvoiceController extends erpnext.selling.SellingController {
|
erpnext.selling.POSInvoiceController = class POSInvoiceController extends erpnext.selling.SellingController {
|
||||||
|
settings = {};
|
||||||
|
|
||||||
setup(doc) {
|
setup(doc) {
|
||||||
this.setup_posting_date_time_check();
|
this.setup_posting_date_time_check();
|
||||||
super.setup(doc);
|
super.setup(doc);
|
||||||
@ -25,8 +27,13 @@ erpnext.selling.POSInvoiceController = class POSInvoiceController extends erpnex
|
|||||||
erpnext.accounts.dimensions.setup_dimension_filters(this.frm, this.frm.doctype);
|
erpnext.accounts.dimensions.setup_dimension_filters(this.frm, this.frm.doctype);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
onload_post_render(frm) {
|
||||||
|
this.pos_profile(frm);
|
||||||
|
}
|
||||||
|
|
||||||
refresh(doc) {
|
refresh(doc) {
|
||||||
super.refresh();
|
super.refresh();
|
||||||
|
|
||||||
if (doc.docstatus == 1 && !doc.is_return) {
|
if (doc.docstatus == 1 && !doc.is_return) {
|
||||||
this.frm.add_custom_button(__('Return'), this.make_sales_return, __('Create'));
|
this.frm.add_custom_button(__('Return'), this.make_sales_return, __('Create'));
|
||||||
this.frm.page.set_inner_btn_group_as_primary(__('Create'));
|
this.frm.page.set_inner_btn_group_as_primary(__('Create'));
|
||||||
@ -36,6 +43,18 @@ erpnext.selling.POSInvoiceController = class POSInvoiceController extends erpnex
|
|||||||
this.frm.return_print_format = "Sales Invoice Return";
|
this.frm.return_print_format = "Sales Invoice Return";
|
||||||
this.frm.set_value('consolidated_invoice', '');
|
this.frm.set_value('consolidated_invoice', '');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.frm.set_query("customer", (function () {
|
||||||
|
const customer_groups = this.settings?.customer_groups;
|
||||||
|
|
||||||
|
if (!customer_groups?.length) return {};
|
||||||
|
|
||||||
|
return {
|
||||||
|
filters: {
|
||||||
|
customer_group: ["in", customer_groups],
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}).bind(this));
|
||||||
}
|
}
|
||||||
|
|
||||||
is_pos() {
|
is_pos() {
|
||||||
@ -88,6 +107,25 @@ erpnext.selling.POSInvoiceController = class POSInvoiceController extends erpnex
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pos_profile(frm) {
|
||||||
|
if (!frm.pos_profile || frm.pos_profile == '') {
|
||||||
|
this.update_customer_groups_settings([]);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
frappe.call({
|
||||||
|
method: "erpnext.selling.page.point_of_sale.point_of_sale.get_pos_profile_data",
|
||||||
|
args: { "pos_profile": frm.pos_profile },
|
||||||
|
callback: ({ message: profile }) => {
|
||||||
|
this.update_customer_groups_settings(profile?.customer_groups);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
update_customer_groups_settings(customer_groups) {
|
||||||
|
this.settings.customer_groups = customer_groups?.map((group) => group.name)
|
||||||
|
}
|
||||||
|
|
||||||
amount(){
|
amount(){
|
||||||
this.write_off_outstanding_amount_automatically()
|
this.write_off_outstanding_amount_automatically()
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user