fix: reset pos profile when default doesn't exists
diff --git a/erpnext/selling/page/point_of_sale/point_of_sale.js b/erpnext/selling/page/point_of_sale/point_of_sale.js
index 9ade4c1..b213a29 100644
--- a/erpnext/selling/page/point_of_sale/point_of_sale.js
+++ b/erpnext/selling/page/point_of_sale/point_of_sale.js
@@ -483,9 +483,7 @@
reqd: 1,
onchange: function(e) {
me.get_default_pos_profile(this.value).then((r) => {
- if (r && r.name) {
- dialog.set_value('pos_profile', r.name);
- }
+ dialog.set_value('pos_profile', (r && r.name)? r.name : '');
});
}
},