Merge pull request #32847 from maharshivpatel/fix-pos-opening-entry-profile-filter
fix: Create POS Opening Entry POS Profile filter.
This commit is contained in:
commit
90fbab4b1e
@ -67,7 +67,7 @@ erpnext.PointOfSale.Controller = class {
|
|||||||
{
|
{
|
||||||
fieldtype: 'Link', label: __('POS Profile'),
|
fieldtype: 'Link', label: __('POS Profile'),
|
||||||
options: 'POS Profile', fieldname: 'pos_profile', reqd: 1,
|
options: 'POS Profile', fieldname: 'pos_profile', reqd: 1,
|
||||||
get_query: () => pos_profile_query,
|
get_query: () => pos_profile_query(),
|
||||||
onchange: () => fetch_pos_payment_methods()
|
onchange: () => fetch_pos_payment_methods()
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -101,9 +101,11 @@ erpnext.PointOfSale.Controller = class {
|
|||||||
primary_action_label: __('Submit')
|
primary_action_label: __('Submit')
|
||||||
});
|
});
|
||||||
dialog.show();
|
dialog.show();
|
||||||
const pos_profile_query = {
|
const pos_profile_query = () => {
|
||||||
query: 'erpnext.accounts.doctype.pos_profile.pos_profile.pos_profile_query',
|
return {
|
||||||
filters: { company: dialog.fields_dict.company.get_value() }
|
query: 'erpnext.accounts.doctype.pos_profile.pos_profile.pos_profile_query',
|
||||||
|
filters: { company: dialog.fields_dict.company.get_value() }
|
||||||
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user