blob: cae2d996a17e04708fe85e187593a95b4c98d9de [file] [log] [blame]
Rohit Waghchaure6087fe12016-04-09 14:31:09 +05301frappe.provide("erpnext.pos");
2{% include "erpnext/public/js/controllers/taxes_and_totals.js" %}
3
Rushabh Mehta06fa46f2015-01-29 18:09:11 +05304frappe.pages['pos'].on_page_load = function(wrapper) {
Rushabh Mehta4c36d732015-01-01 15:59:34 +05305 var page = frappe.ui.make_app_page({
Rushabh Mehta72e17192014-08-08 15:30:49 +05306 parent: wrapper,
Rohit Waghchauref2aa1762016-05-20 23:55:45 +05307 title: __('Point of Sale'),
Rushabh Mehta72e17192014-08-08 15:30:49 +05308 single_column: true
9 });
Rohit Waghchauree0934d12016-05-11 15:04:57 +053010
11 wrapper.pos = new erpnext.pos.PointOfSale(wrapper)
Rushabh Mehta72e17192014-08-08 15:30:49 +053012}
Rohit Waghchaure6087fe12016-04-09 14:31:09 +053013
Rohit Waghchauree0934d12016-05-11 15:04:57 +053014frappe.pages['pos'].refresh = function(wrapper) {
Rohit Waghchaure9fe40d52016-06-13 21:37:10 +053015 window.onbeforeunload = function () {
16 return wrapper.pos.beforeunload()
17 }
Rohit Waghchauree0934d12016-05-11 15:04:57 +053018}
19
20
Rohit Waghchaure6087fe12016-04-09 14:31:09 +053021erpnext.pos.PointOfSale = erpnext.taxes_and_totals.extend({
Rohit Waghchauree0934d12016-05-11 15:04:57 +053022 init: function(wrapper){
Rohit Waghchauree0934d12016-05-11 15:04:57 +053023 this.page = wrapper.page;
24 this.wrapper = $(wrapper).find('.page-content');
Rohit Waghchaure6087fe12016-04-09 14:31:09 +053025 this.set_indicator();
26 this.onload();
27 this.make_menu_list();
Rohit Waghchaure6087fe12016-04-09 14:31:09 +053028 this.si_docs = this.get_doc_from_localstorage();
29 },
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +053030
Rohit Waghchaure9fe40d52016-06-13 21:37:10 +053031 beforeunload: function(e){
32 if(this.connection_status == false && frappe.get_route()[0] == "pos"){
33 e = e || window.event;
34
35 // For IE and Firefox prior to version 4
36 if (e) {
37 e.returnValue = __("You are in offline mode. You will not be able to reload until you have network.");
38 return
39 }
40
41 // For Safari
42 return __("You are in offline mode. You will not be able to reload until you have network.");
43 }
44 },
45
Rohit Waghchaure6087fe12016-04-09 14:31:09 +053046 check_internet_connection: function(){
47 var me = this;
48 //Check Internet connection after every 30 seconds
49 setInterval(function(){
50 me.set_indicator();
Rohit Waghchauref2aa1762016-05-20 23:55:45 +053051 }, 5000)
Rohit Waghchaure6087fe12016-04-09 14:31:09 +053052 },
53
54 set_indicator: function(){
55 var me = this;
56 // navigator.onLine
Rohit Waghchauref2aa1762016-05-20 23:55:45 +053057 this.connection_status = false;
Rohit Waghchaure26cf01a2016-07-22 13:24:33 +053058 this.page.set_indicator(__("Offline"), "grey")
Rohit Waghchaure6087fe12016-04-09 14:31:09 +053059 frappe.call({
60 method:"frappe.handler.ping",
61 callback: function(r){
62 if(r.message){
63 me.connection_status = true;
Rohit Waghchaure26cf01a2016-07-22 13:24:33 +053064 me.page.set_indicator(__("Online"), "green")
Rohit Waghchaure6087fe12016-04-09 14:31:09 +053065 }
66 }
67 })
68 },
69
70 onload: function(){
71 var me = this;
Rohit Waghchaure6087fe12016-04-09 14:31:09 +053072 this.get_data_from_server(function(){
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +053073 me.create_new();
Rohit Waghchaure6087fe12016-04-09 14:31:09 +053074 });
Rohit Waghchaure6087fe12016-04-09 14:31:09 +053075 },
76
77 make_menu_list: function(){
78 var me = this;
79
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +053080 this.page.add_menu_item(__("New Sales Invoice"), function() {
Rohit Waghchaure9fe40d52016-06-13 21:37:10 +053081 me.save_previous_entry();
82 me.create_new();
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +053083 })
84
85 this.page.add_menu_item(__("View Offline Records"), function(){
Rohit Waghchaure9fe40d52016-06-13 21:37:10 +053086 me.show_unsync_invoice_list();
Rohit Waghchaure6087fe12016-04-09 14:31:09 +053087 });
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +053088
Rohit Waghchaure6087fe12016-04-09 14:31:09 +053089 this.page.add_menu_item(__("Sync Master Data"), function(){
Rohit Waghchauree0934d12016-05-11 15:04:57 +053090 me.get_data_from_server(function(){
Rohit Waghchaureea278b52016-07-21 23:28:04 +053091 me.load_data(false);
Rohit Waghchaure9fe40d52016-06-13 21:37:10 +053092 me.make_customer();
Rohit Waghchaure6f33dfb2016-10-09 15:32:56 +053093 me.make_item_list();
Rohit Waghchaureea278b52016-07-21 23:28:04 +053094 me.set_missing_values();
Rohit Waghchauree0934d12016-05-11 15:04:57 +053095 })
Rohit Waghchaure6087fe12016-04-09 14:31:09 +053096 });
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +053097
Rohit Waghchaure82be0202016-10-04 12:46:37 +053098 this.page.add_menu_item(__("Sync Offline Invoices"), function(){
99 me.sync_sales_invoice()
100 });
101
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530102 this.page.add_menu_item(__("POS Profile"), function() {
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530103 frappe.set_route('List', 'POS Profile');
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530104 });
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530105 },
106
107 show_unsync_invoice_list: function(){
108 var me = this;
109 this.si_docs = this.get_doc_from_localstorage();
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530110 this.list_dialog = new frappe.ui.Dialog({
111 title: 'Invoice List'
112 });
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530113
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530114 this.list_dialog.show();
115 this.list_body = this.list_dialog.body;
Rohit Waghchaure9f2cc382016-12-09 11:46:08 +0530116 if(me.pos_profile_data["allow_delete"]) {
117 this.list_dialog.set_primary_action(__("Delete"), function() {
118 frappe.confirm(__("Delete permanently?"), function () {
119 me.delete_records();
120 })
121 }).addClass("btn-danger");
122 this.toggle_primary_action();
123 }
124
Rohit Waghchaure9fe40d52016-06-13 21:37:10 +0530125 if(this.si_docs.length > 0){
Rohit Waghchaure9f2cc382016-12-09 11:46:08 +0530126 me.render_offline_data();
127 me.dialog_actions()
Rohit Waghchaure9fe40d52016-06-13 21:37:10 +0530128 }else{
129 $(this.list_body).append(repl('<div class="media-heading">%(message)s</div>', {'message': __("All records are synced.")}))
130 }
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530131 },
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530132
Rohit Waghchaure9f2cc382016-12-09 11:46:08 +0530133 render_offline_data: function() {
134 var me = this;
135
136 this.removed_items = [];
137 $(this.list_body).empty();
138
139 $(this.list_body).append('<div class="row list-row list-row-head pos-invoice-list">\
140 <div class="col-xs-1"><input class="list-select-all" type="checkbox"></div>\
141 <div class="col-xs-3">Customer</div>\
142 <div class="col-xs-2 text-left">Status</div>\
143 <div class="col-xs-3 text-right">Paid Amount</div>\
144 <div class="col-xs-3 text-right">Grand Total</div>\
145 </div>')
146
147 $.each(this.si_docs, function(index, data){
148 for(key in data) {
149 $(frappe.render_template("pos_invoice_list", {
150 sr: index + 1,
151 name: key,
152 customer: data[key].customer,
153 paid_amount: format_currency(data[key].paid_amount, me.frm.doc.currency),
154 grand_total: format_currency(data[key].grand_total, me.frm.doc.currency),
155 data: me.get_doctype_status(data[key])
156 })).appendTo($(me.list_body));
157 }
158 })
159 },
160
161 dialog_actions: function() {
162 var me = this;
163
164 $(this.list_body).find('.list-column').click(function() {
165 me.name = $(this).parents().attr('invoice-name')
166 me.edit_record();
167 })
168
169 $(this.list_body).find('.list-select-all').click(function() {
170 me.removed_items = [];
171 $(me.list_body).find('.list-delete').prop("checked", $(this).is(":checked"))
172 if($(this).is(":checked")) {
173 $.each(me.si_docs, function(index, data){
174 for(key in data) {
175 me.removed_items.push(key)
176 }
177 })
178 }
179
180 me.toggle_primary_action();
181 })
182
183 $(this.list_body).find('.list-delete').click(function() {
184 me.name = $(this).parent().parent().attr('invoice-name');
185 if($(this).is(":checked")) {
186 me.removed_items.push(me.name);
187 } else {
188 me.removed_items.pop(me.name)
189 }
190
191 me.toggle_primary_action();
192 })
193 },
194
195 edit_record: function() {
196 var me = this;
197
198 doc_data = this.get_invoice_doc(this.si_docs);
199 if(doc_data){
200 this.frm.doc = doc_data[0][this.name];
201 this.set_missing_values();
202 this.refresh(false);
203 this.disable_input_field();
204 this.list_dialog.hide();
205 }
206 },
207
208 delete_records: function() {
209 var me = this;
210 this.remove_doc_from_localstorage()
211 this.update_localstorage();
212 this.render_offline_data();
213 this.dialog_actions();
214 this.toggle_primary_action();
215 },
216
217 toggle_primary_action: function() {
218 var me = this;
219 if(this.removed_items && this.removed_items.length > 0) {
220 $(this.list_dialog.wrapper).find('.btn-danger').show();
221 } else {
222 $(this.list_dialog.wrapper).find('.btn-danger').hide();
223 }
224 },
225
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530226 get_doctype_status: function(doc){
Rohit Waghchaure60a05322016-09-12 01:37:46 +0530227 if(doc.docstatus == 0) {
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530228 return {status: "Draft", indicator: "red"}
Rohit Waghchaure60a05322016-09-12 01:37:46 +0530229 }else if(doc.outstanding_amount == 0) {
230 return {status: "Paid", indicator: "green"}
231 }else {
232 return {status: "Submitted", indicator: "blue"}
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530233 }
234 },
235
Rohit Waghchauree0934d12016-05-11 15:04:57 +0530236 set_missing_values: function(){
237 var me = this;
238 doc = JSON.parse(localStorage.getItem('doc'))
239 if(this.frm.doc.payments.length == 0){
240 this.frm.doc.payments = doc.payments;
Rohit Waghchaureb77a1052016-08-01 18:35:18 +0530241 this.calculate_outstanding_amount();
Rohit Waghchauree0934d12016-05-11 15:04:57 +0530242 }
Rohit Waghchaureea278b52016-07-21 23:28:04 +0530243
244 if(this.frm.doc.customer){
245 this.party_field.$input.val(this.frm.doc.customer);
246 }
Rohit Waghchaurebaef2622016-08-05 15:41:36 +0530247
248 if(!this.frm.doc.write_off_account){
249 this.frm.doc.write_off_account = doc.write_off_account
250 }
251
Rohit Waghchauree4e69ec2016-08-17 16:20:13 +0530252 if(!this.frm.doc.account_for_change_amount){
253 this.frm.doc.account_for_change_amount = doc.account_for_change_amount
Rohit Waghchaurebaef2622016-08-05 15:41:36 +0530254 }
Rohit Waghchauree0934d12016-05-11 15:04:57 +0530255 },
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530256
257 get_invoice_doc: function(si_docs){
258 var me = this;
259 this.si_docs = this.get_doc_from_localstorage();
260
261 return $.grep(this.si_docs, function(data){
262 for(key in data){
263 return key == me.name
264 }
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530265 })
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530266 },
267
268 get_data_from_server: function(callback){
269 var me = this;
270 frappe.call({
271 method: "erpnext.accounts.doctype.sales_invoice.pos.get_pos_data",
272 freeze: true,
Rohit Waghchauree0934d12016-05-11 15:04:57 +0530273 freeze_message: __("Master data syncing, it might take some time"),
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530274 callback: function(r){
Rohit Waghchaurea27c4172016-11-20 23:41:13 +0530275 me.init_master_data(r)
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530276 localStorage.setItem('doc', JSON.stringify(r.message.doc));
Rohit Waghchaurea27c4172016-11-20 23:41:13 +0530277 me.set_interval_for_si_sync();
278 me.check_internet_connection();
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530279 if(callback){
280 callback();
281 }
282 }
283 })
284 },
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530285
Rohit Waghchaurea27c4172016-11-20 23:41:13 +0530286 init_master_data: function(r){
287 var me = this;
288 this.meta = r.message.meta;
289 this.item_data = r.message.items;
290 this.customers = r.message.customers;
291 this.serial_no_data = r.message.serial_no_data;
292 this.batch_no_data = r.message.batch_no_data;
293 this.tax_data = r.message.tax_data;
294 this.price_list_data = r.message.price_list_data;
295 this.bin_data = r.message.bin_data;
296 this.pricing_rules = r.message.pricing_rules;
297 this.print_template = r.message.print_template;
298 this.pos_profile_data = r.message.pos_profile;
299 this.default_customer = r.message.default_customer || null;
300 },
301
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530302 save_previous_entry : function(){
Rohit Waghchaure9f2cc382016-12-09 11:46:08 +0530303 if(this.frm.doc.docstatus < 1 && this.frm.doc.items.length > 0){
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530304 this.create_invoice()
305 }
306 },
307
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530308 create_new: function(){
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530309 var me = this;
Rohit Waghchauree0934d12016-05-11 15:04:57 +0530310 this.frm = {}
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530311 this.name = '';
Rohit Waghchaureea278b52016-07-21 23:28:04 +0530312 this.load_data(true);
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530313 this.setup();
314 },
315
Rohit Waghchaureea278b52016-07-21 23:28:04 +0530316 load_data: function(load_doc){
Rohit Waghchaurea27c4172016-11-20 23:41:13 +0530317 var me = this;
Rohit Waghchaureea278b52016-07-21 23:28:04 +0530318
Rohit Waghchaurea27c4172016-11-20 23:41:13 +0530319 this.items = this.item_data;
Rohit Waghchaure80f5bb62016-11-27 12:04:12 +0530320 this.actual_qty_dict = {};
321
Rohit Waghchaureea278b52016-07-21 23:28:04 +0530322 if(load_doc) {
323 this.frm.doc = JSON.parse(localStorage.getItem('doc'));
324 }
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530325
Rohit Waghchaurea27c4172016-11-20 23:41:13 +0530326 $.each(this.meta, function(i, data){
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530327 frappe.meta.sync(data)
Rohit Waghchaurefe7a5b32016-12-27 14:15:52 +0530328 locals["DocType"][data.name] = data;
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530329 })
330
Rohit Waghchaure9f2cc382016-12-09 11:46:08 +0530331 this.print_template_data = frappe.render_template("print_template",
Rohit Waghchaurea27c4172016-11-20 23:41:13 +0530332 {content: this.print_template, title:"POS",
Rohit Waghchaure3c4cdd22016-09-19 00:17:32 +0530333 base_url: frappe.urllib.get_base_url(), print_css: frappe.boot.print_css})
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530334 },
335
336 setup: function(){
337 this.wrapper.html(frappe.render_template("pos", this.frm.doc));
338 this.set_transaction_defaults("Customer");
339 this.make();
340 this.set_primary_action();
341 },
342
343 set_transaction_defaults: function(party) {
344 var me = this;
345 this.party = party;
346 this.price_list = (party == "Customer" ?
347 this.frm.doc.selling_price_list : this.frm.doc.buying_price_list);
348 this.price_list_field = (party == "Customer" ? "selling_price_list" : "buying_price_list");
349 this.sales_or_purchase = (party == "Customer" ? "Sales" : "Purchase");
350 },
351
352 make: function() {
353 this.make_search();
354 this.make_customer();
Rohit Waghchaure6f33dfb2016-10-09 15:32:56 +0530355 this.make_item_list();
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530356 this.make_discount_field()
357 },
358
359 make_search: function() {
360 var me = this;
361 this.search = frappe.ui.form.make_control({
362 df: {
363 "fieldtype": "Data",
364 "label": "Item",
365 "fieldname": "pos_item",
Rohit Waghchaure26cf01a2016-07-22 13:24:33 +0530366 "placeholder": __("Search Item")
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530367 },
368 parent: this.wrapper.find(".search-area"),
369 only_input: true,
370 });
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530371
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530372 this.search.make_input();
373 this.search.$input.on("keyup", function() {
374 setTimeout(function() {
375 me.items = me.get_items();
Rohit Waghchaure6f33dfb2016-10-09 15:32:56 +0530376 me.make_item_list();
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530377 }, 1000);
378 });
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530379
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530380 this.party_field = frappe.ui.form.make_control({
381 df: {
382 "fieldtype": "Data",
383 "options": this.party,
384 "label": this.party,
385 "fieldname": this.party.toLowerCase(),
Rushabh Mehtae0686b32016-06-10 12:34:41 +0530386 "placeholder": __("Select or add new customer")
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530387 },
388 parent: this.wrapper.find(".party-area"),
389 only_input: true,
390 });
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530391
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530392 this.party_field.make_input();
Rohit Waghchaure60a05322016-09-12 01:37:46 +0530393 this.set_focus()
394 },
395
396 set_focus: function(){
397 if(this.default_customer){
398 this.search.$input.focus();
399 }else{
400 this.party_field.$input.focus();
401 }
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530402 },
403
404 make_customer: function() {
405 var me = this;
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530406
Rohit Waghchaureea278b52016-07-21 23:28:04 +0530407 if(this.default_customer && !this.frm.doc.customer){
Rohit Waghchaure539e9132016-07-07 16:44:40 +0530408 this.party_field.$input.val(this.default_customer);
409 this.frm.doc.customer = this.default_customer;
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530410 }
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530411
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530412 this.party_field.$input.autocomplete({
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530413 autoFocus: true,
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530414 source: function (request, response) {
415 me.customer_data = me.get_customers(request.term)
Rohit Waghchaurefe7a5b32016-12-27 14:15:52 +0530416 me.add_customer();
417
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530418 response($.map(me.customer_data, function(data){
Rohit Waghchaurefe7a5b32016-12-27 14:15:52 +0530419 return {label: data.name, customer_name: data.name, customer_group: data.customer_group,
420 territory: data.territory, onclick: data.onclick}
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530421 }))
422 },
Rohit Waghchaurefe7a5b32016-12-27 14:15:52 +0530423 select: function(event, ui){
424 if(ui.item.onclick) {
425 ui.item.value = ""
426 ui.item.onclick(me);
427 }else if(ui.item) {
428 me.update_customer_data(ui.item)
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530429 }
430 me.refresh();
Rohit Waghchaurefe7a5b32016-12-27 14:15:52 +0530431 },
432 change: function(event, ui) {
433 if(!ui.item) {
434 me.frm.doc.customer = $(this).val();
435 }
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530436 }
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530437 }).on("focus", function(){
438 setTimeout(function() {
439 if(!me.party_field.$input.val()) {
440 me.party_field.$input.autocomplete( "search", " " );
441 }
442 }, 500);
Rohit Waghchaurefe7a5b32016-12-27 14:15:52 +0530443 }).autocomplete(this.party_field).data('ui-autocomplete')._renderItem = function(ul, d){
444 var html = "<span>" + __(d.label) + "</span>";
445 return $('<li></li>')
446 .data('item.autocomplete', d)
447 .html('<a><p>' + html + '</p></a>')
448 .appendTo(ul);
449 }
450 },
451
452 add_customer: function() {
453 var me = this;
454 if(this.connection_status) {
455 this.customer_data.push({
456 name: "<span class='text-primary link-option'>"
457 + "<i class='fa fa-plus' style='margin-right: 5px;'></i> "
458 + __("Create a new Customer")
459 + "</span>",
460 onclick: me.new_customer
461 });
462 }
463 },
464
465 new_customer: function(obj) {
466 var me = obj;
467 frappe.ui.form.quick_entry('Customer', function(doc){
468 me.customers.push(doc)
469 me.party_field.$input.val(doc.name);
470 me.update_customer_data(doc)
471 })
472 },
473
474 update_customer_data: function(doc) {
475 var me = this;
476 this.frm.doc.customer = doc.label || doc.name;
477 this.frm.doc.customer_name = doc.customer_name;
478 this.frm.doc.customer_group = doc.customer_group;
479 this.frm.doc.territory = doc.territory;
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530480 },
481
482 get_customers: function(key){
483 var me = this;
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530484 key = key.toLowerCase().trim()
Rohit Waghchaure163e3592016-10-05 13:38:02 +0530485 var re = new RegExp('%', 'g');
486 var reg = new RegExp(key.replace(re, '\\w*\\s*[a-zA-Z0-9]*'))
487
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530488 if(key){
489 return $.grep(this.customers, function(data) {
Rohit Waghchaure163e3592016-10-05 13:38:02 +0530490 if(reg.test(data.name.toLowerCase())
491 || reg.test(data.customer_name.toLowerCase())
492 || (data.customer_group && reg.test(data.customer_group.toLowerCase()))){
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530493 return data
494 }
495 })
496 }else{
497 customers = this.customers.sort(function(a,b){ return a.idx < b.idx })
498 return customers.slice(0, 20)
499 }
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530500 },
501
Rohit Waghchaure6f33dfb2016-10-09 15:32:56 +0530502 make_item_list: function() {
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530503 var me = this;
504 if(!this.price_list) {
505 msgprint(__("Price List not found or disabled"));
506 return;
507 }
508
509 me.item_timeout = null;
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530510
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530511 var $wrap = me.wrapper.find(".item-list");
512 me.wrapper.find(".item-list").empty();
513
Rohit Waghchaure801029e2016-11-17 00:14:21 +0530514 if (this.items.length > 0) {
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530515 $.each(this.items, function(index, obj) {
Rohit Waghchaure6f33dfb2016-10-09 15:32:56 +0530516 if(index < 30){
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530517 $(frappe.render_template("pos_item", {
518 item_code: obj.name,
Rohit Waghchaurea27c4172016-11-20 23:41:13 +0530519 item_price: format_currency(me.price_list_data[obj.name], me.frm.doc.currency),
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530520 item_name: obj.name===obj.item_name ? "" : obj.item_name,
521 item_image: obj.image ? "url('" + obj.image + "')" : null,
522 color: frappe.get_palette(obj.item_name),
523 abbr: frappe.get_abbr(obj.item_name)
524 })).tooltip().appendTo($wrap);
525 }
526 });
Rohit Waghchaure801029e2016-11-17 00:14:21 +0530527 } else {
528 $("<h4>Searching record not found.</h4>").appendTo($wrap)
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530529 }
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530530
Rohit Waghchaure28c02fe2016-06-10 00:48:03 +0530531 if(this.items.length == 1
532 && this.search.$input.val()) {
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530533 this.search.$input.val("");
534 this.add_to_cart();
535 }
536
537 // if form is local then allow this function
538 $(me.wrapper).find("div.pos-item").on("click", function() {
539 me.customer_validate();
540 if(me.frm.doc.docstatus==0) {
541 me.items = me.get_items($(this).attr("data-item-code"))
542 me.add_to_cart();
543 }
544 });
545 },
546
547 get_items: function(item_code){
548 // To search item as per the key enter
549
550 var me = this;
Rohit Waghchaure03da40b2016-07-16 03:02:20 +0530551 this.item_serial_no = {};
552 this.item_batch_no = {};
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530553
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530554 if(item_code){
Rohit Waghchaurea27c4172016-11-20 23:41:13 +0530555 return $.grep(this.item_data, function(item){
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530556 if(item.item_code == item_code ){
557 return true
558 }
559 })
560 }
561
Rohit Waghchaure9a360832016-11-24 20:00:23 +0530562 key = this.search.$input.val().toLowerCase().replace(/[&\/\\#,+()\[\]$~.'":*?<>{}]/g,'\\$&');
Rohit Waghchaure163e3592016-10-05 13:38:02 +0530563 var re = new RegExp('%', 'g');
Rohit Waghchaure6f33dfb2016-10-09 15:32:56 +0530564 var reg = new RegExp(key.replace(re, '[\\w*\\s*[a-zA-Z0-9]*]*'))
Rohit Waghchaureea5a32d2016-08-10 17:18:52 +0530565 search_status = true
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530566
567 if(key){
Rohit Waghchaurea27c4172016-11-20 23:41:13 +0530568 return $.grep(this.item_data, function(item){
Rohit Waghchaureea5a32d2016-08-10 17:18:52 +0530569 if(search_status){
Rohit Waghchaurea27c4172016-11-20 23:41:13 +0530570 if(in_list(me.batch_no_data[item.item_code], me.search.$input.val())){
Rohit Waghchaureea5a32d2016-08-10 17:18:52 +0530571 search_status = false;
572 return me.item_batch_no[item.item_code] = me.search.$input.val()
Rohit Waghchaurea27c4172016-11-20 23:41:13 +0530573 } else if( me.serial_no_data[item.item_code]
574 && in_list(Object.keys(me.serial_no_data[item.item_code]), me.search.$input.val())) {
Rohit Waghchaureea5a32d2016-08-10 17:18:52 +0530575 search_status = false;
Rohit Waghchaurea27c4172016-11-20 23:41:13 +0530576 me.item_serial_no[item.item_code] = [me.search.$input.val(), me.serial_no_data[item.item_code][me.search.$input.val()]]
Rohit Waghchaureea5a32d2016-08-10 17:18:52 +0530577 return true
578 } else if(item.barcode == me.search.$input.val()) {
579 search_status = false;
580 return item.barcode == me.search.$input.val();
Rohit Waghchaure163e3592016-10-05 13:38:02 +0530581 } else if(reg.test(item.item_code.toLowerCase()) || reg.test(item.description.toLowerCase()) ||
582 reg.test(item.item_name.toLowerCase()) || reg.test(item.item_group.toLowerCase()) ){
Rohit Waghchaureea5a32d2016-08-10 17:18:52 +0530583 return true
584 }
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530585 }
586 })
587 }else{
Rohit Waghchaurea27c4172016-11-20 23:41:13 +0530588 return this.item_data;
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530589 }
590 },
591
Rohit Waghchauredd58d532016-12-21 17:23:01 +0530592 bind_qty_event: function() {
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530593 var me = this;
594
595 $(this.wrapper).find(".pos-item-qty").on("change", function(){
596 var item_code = $(this).parents(".pos-bill-item").attr("data-item-code");
Rohit Waghchauredd58d532016-12-21 17:23:01 +0530597 var qty = $(this).val();
598 me.update_qty(item_code, qty)
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530599 })
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530600
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530601 $(this.wrapper).find("[data-action='increase-qty']").on("click", function(){
602 var item_code = $(this).parents(".pos-bill-item").attr("data-item-code");
603 var qty = flt($(this).parents(".pos-bill-item").find('.pos-item-qty').val()) + 1;
Rohit Waghchauredd58d532016-12-21 17:23:01 +0530604 me.update_qty(item_code, qty)
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530605 })
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530606
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530607 $(this.wrapper).find("[data-action='decrease-qty']").on("click", function(){
608 var item_code = $(this).parents(".pos-bill-item").attr("data-item-code");
609 var qty = flt($(this).parents(".pos-bill-item").find('.pos-item-qty').val()) - 1;
Rohit Waghchauredd58d532016-12-21 17:23:01 +0530610 me.update_qty(item_code, qty)
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530611 })
612 },
Rohit Waghchauredd58d532016-12-21 17:23:01 +0530613
614 update_qty: function(item_code, qty) {
615 var me = this;
616 this.items = this.get_items(item_code);
617 this.validate_serial_no()
618 this.update_qty_rate_against_item_code(item_code, "qty", qty);
619 },
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530620
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530621 update_rate: function() {
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530622 var me = this;
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530623
624 $(this.wrapper).find(".pos-item-rate").on("change", function(){
625 var item_code = $(this).parents(".pos-bill-item").attr("data-item-code");
626 me.update_qty_rate_against_item_code(item_code, "rate", $(this).val());
627 })
628 },
629
630 update_qty_rate_against_item_code: function(item_code, field, value){
631 var me = this;
632 if(value < 0){
633 frappe.throw(__("Enter value must be positive"));
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530634 }
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530635
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530636 this.remove_item = []
637 $.each(this.frm.doc["items"] || [], function(i, d) {
Rohit Waghchaure8c9c9cf2016-12-27 12:31:35 +0530638 if(d.serial_no && field == 'qty'){
Rohit Waghchauree4e69ec2016-08-17 16:20:13 +0530639 me.validate_serial_no_qty(d, item_code, field, value)
Rohit Waghchaure03da40b2016-07-16 03:02:20 +0530640 }
641
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530642 if (d.item_code == item_code) {
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530643 d[field] = flt(value);
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530644 d.amount = flt(d.rate) * flt(d.qty);
645 if(d.qty==0){
646 me.remove_item.push(d.idx)
647 }
648 }
649 });
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530650
651 if(field == 'qty'){
652 this.remove_zero_qty_item();
653 }
654
Rohit Waghchaure713e2b72016-08-19 15:11:36 +0530655 this.update_paid_amount_status(false)
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530656 },
657
658 remove_zero_qty_item: function(){
659 var me = this;
660 idx = 0
661 this.items = []
662 idx = 0
663 $.each(this.frm.doc["items"] || [], function(i, d) {
664 if(!in_list(me.remove_item, d.idx)){
665 d.idx = idx;
666 me.items.push(d);
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530667 idx++;
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530668 }
669 });
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530670
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530671 this.frm.doc["items"] = this.items;
672 },
673
674 make_discount_field: function(){
675 var me = this;
676
677 this.wrapper.find('input.discount-percentage').on("change", function() {
678 me.frm.doc.additional_discount_percentage = flt($(this).val(), precision("additional_discount_percentage"));
679 total = me.frm.doc.grand_total
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530680
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530681 if(me.frm.doc.apply_discount_on == 'Net Total'){
682 total = me.frm.doc.net_total
683 }
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530684
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530685 me.frm.doc.discount_amount = flt(total*flt(me.frm.doc.additional_discount_percentage) / 100, precision("discount_amount"));
686 me.wrapper.find('input.discount-amount').val(me.frm.doc.discount_amount)
687 me.refresh();
688 });
689
690 this.wrapper.find('input.discount-amount').on("change", function() {
691 me.frm.doc.discount_amount = flt($(this).val(), precision("discount_amount"));
692 me.frm.doc.additional_discount_percentage = 0.0;
693 me.wrapper.find('input.discount-percentage').val(0);
694 me.refresh();
695 });
696 },
697
698 customer_validate: function(){
699 var me = this;
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530700 if(!this.frm.doc.customer){
701 frappe.throw(__("Please select customer"))
702 }
703 },
704
705 add_to_cart: function() {
706 var me = this;
707 var caught = false;
708 var no_of_items = me.wrapper.find(".pos-bill-item").length;
709
Rohit Waghchaure03da40b2016-07-16 03:02:20 +0530710 this.customer_validate();
711 this.mandatory_batch_no();
712 this.validate_serial_no();
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530713 this.validate_warehouse();
714
715 if (no_of_items != 0) {
716 $.each(this.frm.doc["items"] || [], function(i, d) {
717 if (d.item_code == me.items[0].item_code) {
718 caught = true;
719 d.qty += 1;
Rohit Waghchaure03da40b2016-07-16 03:02:20 +0530720 d.amount = flt(d.rate) * flt(d.qty);
721 if(me.item_serial_no[d.item_code]){
722 d.serial_no += '\n' + me.item_serial_no[d.item_code][0]
723 d.warehouse = me.item_serial_no[d.item_code][1]
724 }
725
726 if(me.item_batch_no.length){
727 d.batch_no = me.item_batch_no[d.item_code]
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530728 }
729 }
730 });
731 }
732
733 // if item not found then add new item
734 if (!caught)
735 this.add_new_item_to_grid();
736
Rohit Waghchaure713e2b72016-08-19 15:11:36 +0530737 this.update_paid_amount_status(false)
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530738 },
739
740 add_new_item_to_grid: function() {
741 var me = this;
742 this.child = frappe.model.add_child(this.frm.doc, this.frm.doc.doctype + " Item", "items");
743 this.child.item_code = this.items[0].item_code;
744 this.child.item_name = this.items[0].item_name;
745 this.child.stock_uom = this.items[0].stock_uom;
746 this.child.description = this.items[0].description;
747 this.child.qty = 1;
748 this.child.item_group = this.items[0].item_group;
Rohit Waghchaurea27c4172016-11-20 23:41:13 +0530749 this.child.cost_center = this.pos_profile_data['cost_center'] || this.items[0].cost_center;
750 this.child.income_account = this.pos_profile_data['income_account'] || this.items[0].income_account;
Rohit Waghchaure03da40b2016-07-16 03:02:20 +0530751 this.child.warehouse = (this.item_serial_no[this.child.item_code]
Rohit Waghchaurea27c4172016-11-20 23:41:13 +0530752 ? this.item_serial_no[this.child.item_code][1] : (this.pos_profile_data['warehouse'] || this.items[0].default_warehouse) );
753 this.child.price_list_rate = flt(this.price_list_data[this.child.item_code], 9) / flt(this.frm.doc.conversion_rate, 9);
754 this.child.rate = flt(this.price_list_data[this.child.item_code], 9) / flt(this.frm.doc.conversion_rate, 9);
755 this.child.actual_qty = me.get_actual_qty(this.items[0]);
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530756 this.child.amount = flt(this.child.qty) * flt(this.child.rate);
Rohit Waghchaure03da40b2016-07-16 03:02:20 +0530757 this.child.batch_no = this.item_batch_no[this.child.item_code];
758 this.child.serial_no = (this.item_serial_no[this.child.item_code]
759 ? this.item_serial_no[this.child.item_code][0] : '');
Rohit Waghchaurea27c4172016-11-20 23:41:13 +0530760 this.child.item_tax_rate = JSON.stringify(this.tax_data[this.child.item_code]);
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530761 },
762
Rohit Waghchaure713e2b72016-08-19 15:11:36 +0530763 update_paid_amount_status: function(update_paid_amount){
764 if(this.name){
765 update_paid_amount = update_paid_amount ? false : true;
766 }
767
768 this.refresh(update_paid_amount);
769 },
770
Rohit Waghchaureea278b52016-07-21 23:28:04 +0530771 refresh: function(update_paid_amount) {
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530772 var me = this;
Rohit Waghchaureea278b52016-07-21 23:28:04 +0530773 this.refresh_fields(update_paid_amount);
Rohit Waghchauredd58d532016-12-21 17:23:01 +0530774 this.bind_qty_event();
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530775 this.update_rate();
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530776 this.set_primary_action();
777 },
Rohit Waghchaure713e2b72016-08-19 15:11:36 +0530778
Rohit Waghchaureea278b52016-07-21 23:28:04 +0530779 refresh_fields: function(update_paid_amount) {
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530780 this.apply_pricing_rule();
781 this.discount_amount_applied = false;
782 this._calculate_taxes_and_totals();
783 this.calculate_discount_amount();
784 this.show_items_in_item_cart();
785 this.set_taxes();
Rohit Waghchaureea278b52016-07-21 23:28:04 +0530786 this.calculate_outstanding_amount(update_paid_amount);
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530787 this.set_totals();
788 },
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530789
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530790 get_company_currency: function() {
791 return erpnext.get_currency(this.frm.doc.company);
792 },
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530793
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530794 show_item_wise_taxes: function(){
795 return null;
796 },
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530797
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530798 show_items_in_item_cart: function() {
799 var me = this;
800 var $items = this.wrapper.find(".items").empty();
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530801 $.each(this.frm.doc.items|| [], function(i, d) {
802 $(frappe.render_template("pos_bill_item", {
803 item_code: d.item_code,
804 item_name: (d.item_name===d.item_code || !d.item_name) ? "" : ("<br>" + d.item_name),
805 qty: d.qty,
Rohit Waghchaure80f5bb62016-11-27 12:04:12 +0530806 actual_qty: me.actual_qty_dict[d.item_code] || 0,
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530807 projected_qty: d.projected_qty,
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530808 rate: format_number(d.rate, me.frm.doc.currency),
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530809 amount: format_currency(d.amount, me.frm.doc.currency)
810 })).appendTo($items);
811 });
812
813 this.wrapper.find("input.pos-item-qty").on("focus", function() {
814 $(this).select();
815 });
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530816
817 this.wrapper.find("input.pos-item-rate").on("focus", function() {
818 $(this).select();
819 });
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530820 },
821
822 set_taxes: function(){
823 var me = this;
824 me.frm.doc.total_taxes_and_charges = 0.0
825
826 var taxes = this.frm.doc.taxes || [];
827 $(this.wrapper)
828 .find(".tax-area").toggleClass("hide", (taxes && taxes.length) ? false : true)
829 .find(".tax-table").empty();
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530830
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530831 $.each(taxes, function(i, d) {
832 if (d.tax_amount && cint(d.included_in_print_rate) == 0) {
833 $(frappe.render_template("pos_tax_row", {
834 description: d.description,
835 tax_amount: format_currency(flt(d.tax_amount_after_discount_amount),
836 me.frm.doc.currency)
837 })).appendTo(me.wrapper.find(".tax-table"));
838 }
839 });
840 },
841
842 set_totals: function() {
843 var me = this;
844 this.wrapper.find(".net-total").text(format_currency(me.frm.doc.total, me.frm.doc.currency));
845 this.wrapper.find(".grand-total").text(format_currency(me.frm.doc.grand_total, me.frm.doc.currency));
846 },
847
848 set_primary_action: function() {
849 var me = this;
850
Rohit Waghchaure61b4a432016-07-20 11:21:51 +0530851 if (this.frm.doc.docstatus==0) {
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530852 this.page.set_primary_action(__("Pay"), function() {
Rohit Waghchaure713e2b72016-08-19 15:11:36 +0530853 me.validate();
854 me.update_paid_amount_status(true);
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530855 me.create_invoice();
856 me.make_payment();
Rushabh Mehta323c06e2016-12-05 14:17:26 +0530857 }, "octicon octfa fa-credit-card");
Rohit Waghchaure61b4a432016-07-20 11:21:51 +0530858 }else if(this.frm.doc.docstatus == 1) {
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530859 this.page.set_primary_action(__("Print"), function() {
Rohit Waghchaure9f2cc382016-12-09 11:46:08 +0530860 html = frappe.render(me.print_template_data, me.frm.doc)
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530861 me.print_document(html)
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530862 })
Rohit Waghchauree0934d12016-05-11 15:04:57 +0530863 }else {
864 this.page.clear_primary_action()
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530865 }
Rohit Waghchaure9fe40d52016-06-13 21:37:10 +0530866
867 this.page.set_secondary_action(__("New"), function() {
868 me.save_previous_entry();
869 me.create_new();
Rushabh Mehta323c06e2016-12-05 14:17:26 +0530870 }, "octicon octfa fa-plus").addClass("btn-primary");
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530871 },
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530872
Rohit Waghchaure60a05322016-09-12 01:37:46 +0530873 print_dialog: function(){
874 var me = this;
875
876 msgprint = frappe.msgprint(format('<a class="btn btn-primary print_doc" \
877 style="margin-right: 5px;">{0}</a>\
878 <a class="btn btn-default new_doc">{1}</a>', [
879 __('Print'), __('New')
880 ]));
881
882 $('.print_doc').click(function(){
Rohit Waghchaure9f2cc382016-12-09 11:46:08 +0530883 html = frappe.render(me.print_template_data, me.frm.doc)
Rohit Waghchaure60a05322016-09-12 01:37:46 +0530884 me.print_document(html)
885 })
886
887 $('.new_doc').click(function(){
888 msgprint.hide()
889 me.create_new();
890 })
891 },
892
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530893 print_document: function(html){
894 var w = window.open();
895 w.document.write(html);
896 w.document.close();
897 setTimeout(function(){
898 w.print();
899 w.close();
900 }, 1000)
901 },
902
Rohit Waghchauree0934d12016-05-11 15:04:57 +0530903 submit_invoice: function(){
904 var me = this;
Rohit Waghchaure60a05322016-09-12 01:37:46 +0530905 this.change_status();
906 if(this.frm.doc.docstatus == 1){
907 this.print_dialog()
908 }
Rohit Waghchauree0934d12016-05-11 15:04:57 +0530909 },
910
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530911 change_status: function(){
912 if(this.frm.doc.docstatus == 0){
913 this.frm.doc.docstatus = 1;
914 this.update_invoice();
915 this.disable_input_field();
916 }
917 },
918
919 disable_input_field: function(){
920 var pointer_events = 'inherit'
921 $(this.wrapper).find('input').attr("disabled", false);
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530922
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530923 if(this.frm.doc.docstatus == 1){
Rohit Waghchaure03da40b2016-07-16 03:02:20 +0530924 pointer_events = 'none';
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530925 $(this.wrapper).find('input').attr("disabled", true);
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530926 }
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +0530927
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530928 $(this.wrapper).find('.pos-bill-wrapper').css('pointer-events', pointer_events);
929 $(this.wrapper).find('.pos-items-section').css('pointer-events', pointer_events);
930 this.set_primary_action();
931 },
932
933 create_invoice: function(){
934 var me = this;
935 var invoice_data = {}
936 this.si_docs = this.get_doc_from_localstorage();
937 if(this.name){
938 this.update_invoice()
939 }else{
940 this.name = $.now();
Rohit Waghchaure377c7ac2016-09-05 17:56:44 +0530941 this.frm.doc.offline_pos_name = this.name;
Rohit Waghchaure9cd356c2016-08-11 16:54:30 +0530942 this.frm.doc.posting_date = frappe.datetime.get_today();
943 this.frm.doc.posting_time = frappe.datetime.now_time();
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530944 invoice_data[this.name] = this.frm.doc
945 this.si_docs.push(invoice_data)
946 this.update_localstorage();
947 this.set_primary_action();
948 }
949 },
950
951 update_invoice: function(){
952 var me = this;
953 this.si_docs = this.get_doc_from_localstorage();
954 $.each(this.si_docs, function(index, data){
955 for(key in data){
956 if(key == me.name){
Rohit Waghchaure03da40b2016-07-16 03:02:20 +0530957 me.si_docs[index][key] = me.frm.doc;
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530958 me.update_localstorage();
959 }
960 }
961 })
962 },
963
964 update_localstorage: function(){
965 try{
966 localStorage.setItem('sales_invoice_doc', JSON.stringify(this.si_docs));
967 }catch(e){
968 frappe.throw(__("LocalStorage is full , did not save"))
969 }
970 },
971
972 get_doc_from_localstorage: function(){
Rohit Waghchauree0934d12016-05-11 15:04:57 +0530973 try{
974 return JSON.parse(localStorage.getItem('sales_invoice_doc')) || [];
975 }catch(e){
976 return []
977 }
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530978 },
979
980 set_interval_for_si_sync: function(){
981 var me = this;
982 setInterval(function(){
983 me.sync_sales_invoice()
Rohit Waghchauree0934d12016-05-11 15:04:57 +0530984 }, 60000)
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530985 },
986
987 sync_sales_invoice: function(){
988 var me = this;
Rohit Waghchaure03da40b2016-07-16 03:02:20 +0530989 this.si_docs = this.get_submitted_invoice();
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530990
Rohit Waghchauref2aa1762016-05-20 23:55:45 +0530991 if(this.si_docs.length){
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530992 frappe.call({
993 method: "erpnext.accounts.doctype.sales_invoice.pos.make_invoice",
994 args: {
995 doc_list: me.si_docs
996 },
997 callback: function(r){
998 if(r.message){
999 me.removed_items = r.message;
1000 me.remove_doc_from_localstorage();
1001 }
1002 }
1003 })
1004 }
1005 },
1006
1007 get_submitted_invoice: function(){
Rohit Waghchauref2aa1762016-05-20 23:55:45 +05301008 var invoices = [];
1009 var index = 1;
1010 docs = this.get_doc_from_localstorage();
Rohit Waghchaure6087fe12016-04-09 14:31:09 +05301011 if(docs){
1012 invoices = $.map(docs, function(data){
1013 for(key in data){
Rohit Waghchauref2aa1762016-05-20 23:55:45 +05301014 if(data[key].docstatus == 1 && index < 50){
1015 index++
Rohit Waghchaureb77a1052016-08-01 18:35:18 +05301016 data[key].docstatus = 0;
Rohit Waghchaure6087fe12016-04-09 14:31:09 +05301017 return data
1018 }
1019 }
1020 });
1021 }
1022
1023 return invoices
1024 },
1025
1026 remove_doc_from_localstorage: function(){
1027 var me = this;
1028 this.si_docs = this.get_doc_from_localstorage();
Rohit Waghchaure03da40b2016-07-16 03:02:20 +05301029 this.new_si_docs = [];
Rohit Waghchaure6087fe12016-04-09 14:31:09 +05301030 if(this.removed_items){
1031 $.each(this.si_docs, function(index, data){
1032 for(key in data){
Rohit Waghchauree0934d12016-05-11 15:04:57 +05301033 if(!in_list(me.removed_items, key)){
Rohit Waghchaure03da40b2016-07-16 03:02:20 +05301034 me.new_si_docs.push(data);
Rohit Waghchaure6087fe12016-04-09 14:31:09 +05301035 }
1036 }
1037 })
Rohit Waghchauree0934d12016-05-11 15:04:57 +05301038 this.si_docs = this.new_si_docs;
Rohit Waghchaure6087fe12016-04-09 14:31:09 +05301039 this.update_localstorage();
1040 }
1041 },
1042
1043 validate: function(){
1044 var me = this;
1045 this.customer_validate();
1046 this.item_validate();
Rohit Waghchaure03da40b2016-07-16 03:02:20 +05301047 this.validate_mode_of_payments();
Rohit Waghchaure6087fe12016-04-09 14:31:09 +05301048 },
1049
1050 item_validate: function(){
1051 if(this.frm.doc.items.length == 0){
1052 frappe.throw(__("Select items to save the invoice"))
1053 }
1054 },
Saurabh9a6c6662016-06-27 16:51:44 +05301055
1056 validate_mode_of_payments: function(){
1057 if (this.frm.doc.payments.length === 0){
1058 frappe.throw(__("Payment Mode is not configured. Please check, whether account has been set on Mode of Payments or on POS Profile."))
1059 }
1060 },
1061
Rohit Waghchaure6087fe12016-04-09 14:31:09 +05301062 validate_serial_no: function(){
1063 var me = this;
1064 var item_code = serial_no = '';
1065 for (key in this.item_serial_no){
1066 item_code = key;
Rohit Waghchaure03da40b2016-07-16 03:02:20 +05301067 serial_no = me.item_serial_no[key][0];
Rohit Waghchaure6087fe12016-04-09 14:31:09 +05301068 }
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +05301069
Rohit Waghchauredd58d532016-12-21 17:23:01 +05301070 if(this.items[0].has_serial_no && serial_no == ""){
1071 this.refresh();
1072 frappe.throw(__(repl("Error: Serial no is mandatory for item %(item)s", {
1073 'item': this.items[0].item_code
1074 })))
1075 }
1076
Rohit Waghchaure6087fe12016-04-09 14:31:09 +05301077 if(item_code && serial_no){
1078 $.each(this.frm.doc.items, function(index, data){
1079 if(data.item_code == item_code){
1080 if(in_list(data.serial_no.split('\n'), serial_no)){
1081 frappe.throw(__(repl("Serial no %(serial_no)s is already taken", {
1082 'serial_no': serial_no
1083 })))
1084 }
1085 }
1086 })
1087 }
Rohit Waghchaure03da40b2016-07-16 03:02:20 +05301088 },
1089
Rohit Waghchauree4e69ec2016-08-17 16:20:13 +05301090 validate_serial_no_qty: function(args, item_code, field, value){
1091 var me = this;
1092 if (args.item_code == item_code && args.serial_no
1093 && field == 'qty' && cint(value) != value) {
1094 args.qty = 0.0;
1095 this.refresh();
1096 frappe.throw(__("Serial no item cannot be a fraction"))
1097 }
1098
Rohit Waghchauredd58d532016-12-21 17:23:01 +05301099 if(args.item_code == item_code && args.serial_no && args.serial_no.split('\n').length != cint(value)){
Rohit Waghchauree4e69ec2016-08-17 16:20:13 +05301100 args.qty = 0.0;
1101 args.serial_no = ''
1102 this.refresh();
Rohit Waghchauredd58d532016-12-21 17:23:01 +05301103 frappe.throw(__(repl("Total nos of serial no is not equal to quantity for item %(item)s.", {
1104 'item': item_code
1105 })))
Rohit Waghchauree4e69ec2016-08-17 16:20:13 +05301106 }
1107 },
1108
Rohit Waghchaure03da40b2016-07-16 03:02:20 +05301109 mandatory_batch_no: function(){
1110 var me = this;
1111 if(this.items[0].has_batch_no && !this.item_batch_no[this.items[0].item_code]){
1112 frappe.throw(__(repl("Error: Batch no is mandatory for item %(item)s", {
1113 'item': this.items[0].item_code
1114 })))
1115 }
Rohit Waghchaure6087fe12016-04-09 14:31:09 +05301116 },
1117
1118 apply_pricing_rule: function(){
1119 var me = this;
1120 $.each(this.frm.doc["items"], function(n, item) {
1121 pricing_rule = me.get_pricing_rule(item)
1122 me.validate_pricing_rule(pricing_rule)
1123 if(pricing_rule.length){
1124 item.margin_type = pricing_rule[0].margin_type;
1125 item.price_list_rate = pricing_rule[0].price || item.price_list_rate;
1126 item.margin_rate_or_amount = pricing_rule[0].margin_rate_or_amount;
1127 item.discount_percentage = pricing_rule[0].discount_percentage || 0.0;
1128 me.apply_pricing_rule_on_item(item)
Rohit Waghchaure619c40b2016-11-07 15:29:17 +05301129 } else if(item.discount_percentage > 0 || item.margin_rate_or_amount > 0) {
1130 item.margin_rate_or_amount = 0.0;
1131 item.discount_percentage = 0.0;
1132 me.apply_pricing_rule_on_item(item)
Rohit Waghchaure6087fe12016-04-09 14:31:09 +05301133 }
1134 })
1135 },
1136
1137 get_pricing_rule: function(item){
1138 var me = this;
1139 return $.grep(this.pricing_rules, function(data){
Rohit Waghchaurebaef2622016-08-05 15:41:36 +05301140 if(item.qty >= data.min_qty && (item.qty <= (data.max_qty ? data.max_qty : item.qty)) ){
1141 if(data.item_code == item.item_code || in_list(['All Item Groups', item.item_group], data.item_group)) {
1142 if(in_list(['Customer', 'Customer Group', 'Territory', 'Campaign'], data.applicable_for)){
1143 return me.validate_condition(data)
1144 }else{
1145 return true
1146 }
Rohit Waghchaure6087fe12016-04-09 14:31:09 +05301147 }
1148 }
1149 })
1150 },
1151
1152 validate_condition: function(data){
1153 //This method check condition based on applicable for
1154 condition = this.get_mapper_for_pricing_rule(data)[data.applicable_for]
1155 if(in_list(condition[1], condition[0])){
1156 return true
1157 }
1158 },
1159
1160 get_mapper_for_pricing_rule: function(data){
1161 return {
Rohit Waghchaure89ee3092016-07-08 15:17:04 +05301162 'Customer': [data.customer, [this.frm.doc.customer]],
1163 'Customer Group': [data.customer_group, [this.frm.doc.customer_group, 'All Customer Groups']],
1164 'Territory': [data.territory, [this.frm.doc.territory, 'All Territories']],
Rohit Waghchaurebaef2622016-08-05 15:41:36 +05301165 'Campaign': [data.campaign, [this.frm.doc.campaign]],
Rohit Waghchaure6087fe12016-04-09 14:31:09 +05301166 }
1167 },
1168
1169 validate_pricing_rule: function(pricing_rule){
1170 //This method validate duplicate pricing rule
1171 var pricing_rule_name = '';
1172 var priority = 0;
1173 var pricing_rule_list = [];
1174 var priority_list = []
1175
1176 if(pricing_rule.length > 1){
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +05301177
Rohit Waghchaure6087fe12016-04-09 14:31:09 +05301178 $.each(pricing_rule, function(index, data){
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +05301179 pricing_rule_name += data.name + ','
Rohit Waghchaure6087fe12016-04-09 14:31:09 +05301180 priority_list.push(data.priority)
1181 if(priority <= data.priority){
1182 priority = data.priority
1183 pricing_rule_list.push(data)
1184 }
1185 })
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +05301186
Rohit Waghchaure6087fe12016-04-09 14:31:09 +05301187 count = 0
1188 $.each(priority_list, function(index, value){
1189 if(value == priority){
1190 count++
1191 }
1192 })
1193
1194 if(priority == 0 || count > 1){
1195 frappe.throw(__(repl("Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: %(pricing_rule)s", {
1196 'pricing_rule': pricing_rule_name
1197 })))
1198 }
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +05301199
Rohit Waghchaure6087fe12016-04-09 14:31:09 +05301200 return pricing_rule_list
1201 }
1202 },
Rushabh Mehtad0cee1b2016-05-20 12:54:44 +05301203
Rohit Waghchaure6087fe12016-04-09 14:31:09 +05301204 validate_warehouse: function(){
Nabin Hait977eff92016-11-21 18:29:16 +05301205 if(this.items[0].is_stock_item && !this.items[0].default_warehouse && !this.pos_profile_data['warehouse']){
Neil Trini Lasrado5ddd7ac2016-10-24 15:25:33 +05301206 frappe.throw(__("Default warehouse is required for selected item"))
Rohit Waghchaure6087fe12016-04-09 14:31:09 +05301207 }
Rohit Waghchaurea27c4172016-11-20 23:41:13 +05301208 },
1209
1210 get_actual_qty: function(item) {
1211 this.actual_qty = 0.0;
Rohit Waghchaure80f5bb62016-11-27 12:04:12 +05301212
Rohit Waghchaurea27c4172016-11-20 23:41:13 +05301213 var warehouse = this.pos_profile_data['warehouse'] || item.default_warehouse;
1214 if(warehouse && this.bin_data[item.item_code]) {
1215 this.actual_qty = this.bin_data[item.item_code][warehouse] || 0;
Rohit Waghchaure80f5bb62016-11-27 12:04:12 +05301216 this.actual_qty_dict[item.item_code] = this.actual_qty
Rohit Waghchaurea27c4172016-11-20 23:41:13 +05301217 }
1218
1219 return this.actual_qty
Rohit Waghchaure6087fe12016-04-09 14:31:09 +05301220 }
1221})