blob: 69d27ba277628cb6e352b4baa149e7f1d20383ba [file] [log] [blame]
Rushabh Mehtaad45e312013-11-20 12:59:58 +05301# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
Rushabh Mehtae67d1fb2013-08-05 14:59:54 +05302# License: GNU General Public License v3. See license.txt
Nabin Hait9d0f6362013-01-07 18:51:11 +05303
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05304import frappe
5from frappe import msgprint, _
Nabin Hait9d0f6362013-01-07 18:51:11 +05306import json
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05307from frappe.utils import flt, cstr, nowdate, add_days, cint
8from frappe.defaults import get_global_default
9from frappe.utils.email_lib import sendmail
Nabin Hait9d0f6362013-01-07 18:51:11 +053010
Rushabh Mehta793ba6b2014-02-14 15:47:51 +053011class InvalidWarehouseCompany(frappe.ValidationError): pass
Nabin Hait0dd7be12013-08-02 11:45:43 +053012
Nabin Hait625da792013-09-25 10:32:51 +053013def get_stock_balance_on(warehouse, posting_date=None):
Nabin Hait0dd7be12013-08-02 11:45:43 +053014 if not posting_date: posting_date = nowdate()
15
Anand Doshie9baaa62014-02-26 12:35:33 +053016 stock_ledger_entries = frappe.db.sql("""
Nabin Hait0dd7be12013-08-02 11:45:43 +053017 SELECT
Nabin Hait625da792013-09-25 10:32:51 +053018 item_code, stock_value
Nabin Hait0dd7be12013-08-02 11:45:43 +053019 FROM
20 `tabStock Ledger Entry`
21 WHERE
Nabin Hait625da792013-09-25 10:32:51 +053022 warehouse=%s AND posting_date <= %s
Nabin Hait0dd7be12013-08-02 11:45:43 +053023 ORDER BY timestamp(posting_date, posting_time) DESC, name DESC
Nabin Hait625da792013-09-25 10:32:51 +053024 """, (warehouse, posting_date), as_dict=1)
Nabin Hait0dd7be12013-08-02 11:45:43 +053025
26 sle_map = {}
27 for sle in stock_ledger_entries:
Nabin Hait625da792013-09-25 10:32:51 +053028 sle_map.setdefault(sle.item_code, flt(sle.stock_value))
Nabin Hait0dd7be12013-08-02 11:45:43 +053029
Nabin Hait625da792013-09-25 10:32:51 +053030 return sum(sle_map.values())
Nabin Hait0dd7be12013-08-02 11:45:43 +053031
Nabin Hait47dc3182013-08-06 15:58:16 +053032def get_latest_stock_balance():
33 bin_map = {}
Anand Doshie9baaa62014-02-26 12:35:33 +053034 for d in frappe.db.sql("""SELECT item_code, warehouse, stock_value as stock_value
Nabin Hait47dc3182013-08-06 15:58:16 +053035 FROM tabBin""", as_dict=1):
Nabin Hait469ee712013-08-07 12:33:37 +053036 bin_map.setdefault(d.warehouse, {}).setdefault(d.item_code, flt(d.stock_value))
Nabin Hait47dc3182013-08-06 15:58:16 +053037
38 return bin_map
Nabin Hait74c281c2013-08-19 16:17:18 +053039
40def get_bin(item_code, warehouse):
Anand Doshie9baaa62014-02-26 12:35:33 +053041 bin = frappe.db.get_value("Bin", {"item_code": item_code, "warehouse": warehouse})
Nabin Hait74c281c2013-08-19 16:17:18 +053042 if not bin:
Rushabh Mehtab385ecf2014-03-28 16:44:37 +053043 bin_wrapper = frappe.get_doc([{
Nabin Hait74c281c2013-08-19 16:17:18 +053044 "doctype": "Bin",
45 "item_code": item_code,
46 "warehouse": warehouse,
47 }])
48 bin_wrapper.ignore_permissions = 1
49 bin_wrapper.insert()
50 bin_obj = bin_wrapper.make_controller()
51 else:
Rushabh Mehta0a0f2492014-03-31 17:27:06 +053052 bin_obj = frappe.get_doc('Bin', bin)
Nabin Hait74c281c2013-08-19 16:17:18 +053053 return bin_obj
54
55def update_bin(args):
Anand Doshie9baaa62014-02-26 12:35:33 +053056 is_stock_item = frappe.db.get_value('Item', args.get("item_code"), 'is_stock_item')
Nabin Hait74c281c2013-08-19 16:17:18 +053057 if is_stock_item == 'Yes':
58 bin = get_bin(args.get("item_code"), args.get("warehouse"))
59 bin.update_stock(args)
60 return bin
61 else:
62 msgprint("[Stock Update] Ignored %s since it is not a stock item"
63 % args.get("item_code"))
Nabin Hait0dd7be12013-08-02 11:45:43 +053064
Nabin Hait9d0f6362013-01-07 18:51:11 +053065def get_incoming_rate(args):
66 """Get Incoming Rate based on valuation method"""
Rushabh Mehta1f847992013-12-12 19:12:19 +053067 from erpnext.stock.stock_ledger import get_previous_sle
Nabin Hait9d0f6362013-01-07 18:51:11 +053068
69 in_rate = 0
70 if args.get("serial_no"):
71 in_rate = get_avg_purchase_rate(args.get("serial_no"))
72 elif args.get("bom_no"):
Anand Doshie9baaa62014-02-26 12:35:33 +053073 result = frappe.db.sql("""select ifnull(total_cost, 0) / ifnull(quantity, 1)
Nabin Hait9d0f6362013-01-07 18:51:11 +053074 from `tabBOM` where name = %s and docstatus=1 and is_active=1""", args.get("bom_no"))
75 in_rate = result and flt(result[0][0]) or 0
76 else:
77 valuation_method = get_valuation_method(args.get("item_code"))
78 previous_sle = get_previous_sle(args)
79 if valuation_method == 'FIFO':
Nabin Hait831207f2013-01-16 14:15:48 +053080 if not previous_sle:
81 return 0.0
Rushabh Mehta4c17f942013-08-12 14:18:09 +053082 previous_stock_queue = json.loads(previous_sle.get('stock_queue', '[]') or '[]')
Nabin Hait831207f2013-01-16 14:15:48 +053083 in_rate = previous_stock_queue and \
Nabin Hait6b1f21d2013-01-16 17:17:17 +053084 get_fifo_rate(previous_stock_queue, args.get("qty") or 0) or 0
Nabin Hait9d0f6362013-01-07 18:51:11 +053085 elif valuation_method == 'Moving Average':
86 in_rate = previous_sle.get('valuation_rate') or 0
87 return in_rate
88
89def get_avg_purchase_rate(serial_nos):
90 """get average value of serial numbers"""
91
92 serial_nos = get_valid_serial_nos(serial_nos)
Anand Doshie9baaa62014-02-26 12:35:33 +053093 return flt(frappe.db.sql("""select avg(ifnull(purchase_rate, 0)) from `tabSerial No`
Nabin Hait9d0f6362013-01-07 18:51:11 +053094 where name in (%s)""" % ", ".join(["%s"] * len(serial_nos)),
95 tuple(serial_nos))[0][0])
96
97def get_valuation_method(item_code):
98 """get valuation method from item or default"""
Anand Doshie9baaa62014-02-26 12:35:33 +053099 val_method = frappe.db.get_value('Item', item_code, 'valuation_method')
Nabin Hait9d0f6362013-01-07 18:51:11 +0530100 if not val_method:
Rushabh Mehta5117d9c2013-02-19 15:27:31 +0530101 val_method = get_global_default('valuation_method') or "FIFO"
Nabin Hait9d0f6362013-01-07 18:51:11 +0530102 return val_method
103
Nabin Hait831207f2013-01-16 14:15:48 +0530104def get_fifo_rate(previous_stock_queue, qty):
105 """get FIFO (average) Rate from Queue"""
106 if qty >= 0:
107 total = sum(f[0] for f in previous_stock_queue)
108 return total and sum(f[0] * f[1] for f in previous_stock_queue) / flt(total) or 0.0
109 else:
110 outgoing_cost = 0
111 qty_to_pop = abs(qty)
Nabin Hait64d7c4b2013-01-17 12:22:59 +0530112 while qty_to_pop and previous_stock_queue:
Nabin Hait831207f2013-01-16 14:15:48 +0530113 batch = previous_stock_queue[0]
114 if 0 < batch[0] <= qty_to_pop:
115 # if batch qty > 0
116 # not enough or exactly same qty in current batch, clear batch
117 outgoing_cost += flt(batch[0]) * flt(batch[1])
118 qty_to_pop -= batch[0]
119 previous_stock_queue.pop(0)
120 else:
121 # all from current batch
122 outgoing_cost += flt(qty_to_pop) * flt(batch[1])
123 batch[0] -= qty_to_pop
124 qty_to_pop = 0
Nabin Hait64d7c4b2013-01-17 12:22:59 +0530125 # if queue gets blank and qty_to_pop remaining, get average rate of full queue
126 return outgoing_cost / abs(qty) - qty_to_pop
Nabin Hait9d0f6362013-01-07 18:51:11 +0530127
128def get_valid_serial_nos(sr_nos, qty=0, item_code=''):
129 """split serial nos, validate and return list of valid serial nos"""
130 # TODO: remove duplicates in client side
131 serial_nos = cstr(sr_nos).strip().replace(',', '\n').split('\n')
132
133 valid_serial_nos = []
134 for val in serial_nos:
135 if val:
136 val = val.strip()
137 if val in valid_serial_nos:
138 msgprint("You have entered duplicate serial no: '%s'" % val, raise_exception=1)
139 else:
140 valid_serial_nos.append(val)
141
142 if qty and len(valid_serial_nos) != abs(qty):
143 msgprint("Please enter serial nos for "
144 + cstr(abs(qty)) + " quantity against item code: " + item_code,
145 raise_exception=1)
146
Rushabh Mehta0dbe8982013-02-04 13:56:50 +0530147 return valid_serial_nos
Nabin Haita72c5122013-03-06 18:50:53 +0530148
Anand Doshi373680b2013-10-10 16:04:40 +0530149def validate_warehouse_company(warehouse, company):
Anand Doshie9baaa62014-02-26 12:35:33 +0530150 warehouse_company = frappe.db.get_value("Warehouse", warehouse, "company")
Anand Doshi373680b2013-10-10 16:04:40 +0530151 if warehouse_company and warehouse_company != company:
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530152 frappe.msgprint(_("Warehouse does not belong to company.") + " (" + \
Anand Doshi373680b2013-10-10 16:04:40 +0530153 warehouse + ", " + company +")", raise_exception=InvalidWarehouseCompany)
Rushabh Mehtaa65253b2013-08-27 10:32:56 +0530154
Nabin Hait94c90bd2013-08-30 22:48:19 +0530155def get_sales_bom_buying_amount(item_code, warehouse, voucher_type, voucher_no, voucher_detail_no,
156 stock_ledger_entries, item_sales_bom):
157 # sales bom item
158 buying_amount = 0.0
159 for bom_item in item_sales_bom[item_code]:
160 if bom_item.get("parent_detail_docname")==voucher_detail_no:
161 buying_amount += get_buying_amount(voucher_type, voucher_no, voucher_detail_no,
162 stock_ledger_entries.get((bom_item.item_code, warehouse), []))
163
164 return buying_amount
Nabin Haita72c5122013-03-06 18:50:53 +0530165
Nabin Hait94c90bd2013-08-30 22:48:19 +0530166def get_buying_amount(voucher_type, voucher_no, item_row, stock_ledger_entries):
Anand Doshi5dd6b1d2013-08-07 19:27:30 +0530167 # IMP NOTE
168 # stock_ledger_entries should already be filtered by item_code and warehouse and
169 # sorted by posting_date desc, posting_time desc
170 for i, sle in enumerate(stock_ledger_entries):
Nabin Hait0cfbc5f2013-03-12 11:34:56 +0530171 if sle.voucher_type == voucher_type and sle.voucher_no == voucher_no and \
Anand Doshi8c454202013-03-28 16:40:30 +0530172 sle.voucher_detail_no == item_row:
Anand Doshi5dd6b1d2013-08-07 19:27:30 +0530173 previous_stock_value = len(stock_ledger_entries) > i+1 and \
174 flt(stock_ledger_entries[i+1].stock_value) or 0.0
Nabin Haitc3afb252013-03-19 12:01:24 +0530175 buying_amount = previous_stock_value - flt(sle.stock_value)
Anand Doshi6d8d3b42013-03-21 18:45:02 +0530176
Nabin Haitc3afb252013-03-19 12:01:24 +0530177 return buying_amount
Nabin Hait62d06292013-05-22 16:19:10 +0530178 return 0.0
179
180
181def reorder_item():
182 """ Reorder item if stock reaches reorder level"""
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530183 if getattr(frappe.local, "auto_indent", None) is None:
Anand Doshie9baaa62014-02-26 12:35:33 +0530184 frappe.local.auto_indent = cint(frappe.db.get_value('Stock Settings', None, 'auto_indent'))
Nabin Haitbf5d44c2013-08-12 16:30:48 +0530185
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530186 if frappe.local.auto_indent:
Nabin Hait62d06292013-05-22 16:19:10 +0530187 material_requests = {}
Anand Doshie9baaa62014-02-26 12:35:33 +0530188 bin_list = frappe.db.sql("""select item_code, warehouse, projected_qty
Anand Doshiad6180e2013-06-17 11:57:04 +0530189 from tabBin where ifnull(item_code, '') != '' and ifnull(warehouse, '') != ''
190 and exists (select name from `tabItem`
191 where `tabItem`.name = `tabBin`.item_code and
192 is_stock_item='Yes' and (is_purchase_item='Yes' or is_sub_contracted_item='Yes') and
Anand Doshi4d47b002013-08-23 16:54:31 +0530193 (ifnull(end_of_life, '')='' or end_of_life > now()))""", as_dict=True)
Nabin Hait62d06292013-05-22 16:19:10 +0530194 for bin in bin_list:
195 #check if re-order is required
Anand Doshie9baaa62014-02-26 12:35:33 +0530196 item_reorder = frappe.db.get("Item Reorder",
Nabin Hait62d06292013-05-22 16:19:10 +0530197 {"parent": bin.item_code, "warehouse": bin.warehouse})
198 if item_reorder:
199 reorder_level = item_reorder.warehouse_reorder_level
200 reorder_qty = item_reorder.warehouse_reorder_qty
201 material_request_type = item_reorder.material_request_type or "Purchase"
202 else:
Anand Doshie9baaa62014-02-26 12:35:33 +0530203 reorder_level, reorder_qty = frappe.db.get_value("Item", bin.item_code,
Nabin Hait62d06292013-05-22 16:19:10 +0530204 ["re_order_level", "re_order_qty"])
205 material_request_type = "Purchase"
206
Anand Doshiad6180e2013-06-17 11:57:04 +0530207 if flt(reorder_level) and flt(bin.projected_qty) < flt(reorder_level):
Nabin Hait62d06292013-05-22 16:19:10 +0530208 if flt(reorder_level) - flt(bin.projected_qty) > flt(reorder_qty):
209 reorder_qty = flt(reorder_level) - flt(bin.projected_qty)
210
Anand Doshie9baaa62014-02-26 12:35:33 +0530211 company = frappe.db.get_value("Warehouse", bin.warehouse, "company") or \
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530212 frappe.defaults.get_defaults()["company"] or \
Anand Doshie9baaa62014-02-26 12:35:33 +0530213 frappe.db.sql("""select name from tabCompany limit 1""")[0][0]
Nabin Hait62d06292013-05-22 16:19:10 +0530214
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530215 material_requests.setdefault(material_request_type, frappe._dict()).setdefault(
216 company, []).append(frappe._dict({
Nabin Hait62d06292013-05-22 16:19:10 +0530217 "item_code": bin.item_code,
218 "warehouse": bin.warehouse,
219 "reorder_qty": reorder_qty
220 })
221 )
Anand Doshi4a67d362013-11-13 14:53:09 +0530222
Nabin Hait62d06292013-05-22 16:19:10 +0530223 create_material_request(material_requests)
224
225def create_material_request(material_requests):
226 """ Create indent on reaching reorder level """
227 mr_list = []
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530228 defaults = frappe.defaults.get_defaults()
Anand Doshiad6180e2013-06-17 11:57:04 +0530229 exceptions_list = []
Rushabh Mehta1f847992013-12-12 19:12:19 +0530230 from erpnext.accounts.utils import get_fiscal_year
Akhilesh Darjeeb0a1b3a2013-11-26 14:45:27 +0530231 current_fiscal_year = get_fiscal_year(nowdate())[0] or defaults.fiscal_year
Nabin Hait62d06292013-05-22 16:19:10 +0530232 for request_type in material_requests:
233 for company in material_requests[request_type]:
Anand Doshiad6180e2013-06-17 11:57:04 +0530234 try:
235 items = material_requests[request_type][company]
236 if not items:
237 continue
Anand Doshi6f6e91c2013-07-22 11:28:34 +0530238
Nabin Hait62d06292013-05-22 16:19:10 +0530239 mr = [{
240 "doctype": "Material Request",
241 "company": company,
Akhilesh Darjeeb0a1b3a2013-11-26 14:45:27 +0530242 "fiscal_year": current_fiscal_year,
Nabin Hait62d06292013-05-22 16:19:10 +0530243 "transaction_date": nowdate(),
Anand Doshi4a67d362013-11-13 14:53:09 +0530244 "material_request_type": request_type
Nabin Hait62d06292013-05-22 16:19:10 +0530245 }]
246
Anand Doshiad6180e2013-06-17 11:57:04 +0530247 for d in items:
Rushabh Mehtab385ecf2014-03-28 16:44:37 +0530248 item = frappe.get_doc("Item", d.item_code)
Anand Doshiad6180e2013-06-17 11:57:04 +0530249 mr.append({
250 "doctype": "Material Request Item",
251 "parenttype": "Material Request",
252 "parentfield": "indent_details",
253 "item_code": d.item_code,
254 "schedule_date": add_days(nowdate(),cint(item.lead_time_days)),
255 "uom": item.stock_uom,
256 "warehouse": d.warehouse,
257 "item_name": item.item_name,
258 "description": item.description,
259 "item_group": item.item_group,
260 "qty": d.reorder_qty,
261 "brand": item.brand,
262 })
Nabin Hait62d06292013-05-22 16:19:10 +0530263
Rushabh Mehtab385ecf2014-03-28 16:44:37 +0530264 mr_bean = frappe.get_doc(mr)
Anand Doshiad6180e2013-06-17 11:57:04 +0530265 mr_bean.insert()
266 mr_bean.submit()
267 mr_list.append(mr_bean)
Anand Doshi6f6e91c2013-07-22 11:28:34 +0530268
Anand Doshiad6180e2013-06-17 11:57:04 +0530269 except:
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530270 if frappe.local.message_log:
271 exceptions_list.append([] + frappe.local.message_log)
272 frappe.local.message_log = []
Anand Doshiad6180e2013-06-17 11:57:04 +0530273 else:
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530274 exceptions_list.append(frappe.get_traceback())
Nabin Hait62d06292013-05-22 16:19:10 +0530275
276 if mr_list:
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530277 if getattr(frappe.local, "reorder_email_notify", None) is None:
Anand Doshie9baaa62014-02-26 12:35:33 +0530278 frappe.local.reorder_email_notify = cint(frappe.db.get_value('Stock Settings', None,
Nabin Haitbf5d44c2013-08-12 16:30:48 +0530279 'reorder_email_notify'))
Nabin Hait62d06292013-05-22 16:19:10 +0530280
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530281 if(frappe.local.reorder_email_notify):
Nabin Hait62d06292013-05-22 16:19:10 +0530282 send_email_notification(mr_list)
Anand Doshiad6180e2013-06-17 11:57:04 +0530283
284 if exceptions_list:
285 notify_errors(exceptions_list)
Nabin Hait62d06292013-05-22 16:19:10 +0530286
287def send_email_notification(mr_list):
288 """ Notify user about auto creation of indent"""
289
Anand Doshie9baaa62014-02-26 12:35:33 +0530290 email_list = frappe.db.sql_list("""select distinct r.parent
Rushabh Mehta7c932002014-03-11 16:15:05 +0530291 from tabUserRole r, tabUser p
Nabin Hait62d06292013-05-22 16:19:10 +0530292 where p.name = r.parent and p.enabled = 1 and p.docstatus < 2
293 and r.role in ('Purchase Manager','Material Manager')
294 and p.name not in ('Administrator', 'All', 'Guest')""")
295
296 msg="""<h3>Following Material Requests has been raised automatically \
297 based on item reorder level:</h3>"""
298 for mr in mr_list:
Anand Doshif78d1ae2014-03-28 13:55:00 +0530299 msg += "<p><b><u>" + mr.name + """</u></b></p><table class='table table-bordered'><tr>
Nabin Hait62d06292013-05-22 16:19:10 +0530300 <th>Item Code</th><th>Warehouse</th><th>Qty</th><th>UOM</th></tr>"""
Rushabh Mehtad2b34dc2014-03-27 16:12:56 +0530301 for item in mr.get("indent_details"):
Nabin Hait62d06292013-05-22 16:19:10 +0530302 msg += "<tr><td>" + item.item_code + "</td><td>" + item.warehouse + "</td><td>" + \
303 cstr(item.qty) + "</td><td>" + cstr(item.uom) + "</td></tr>"
304 msg += "</table>"
Anand Doshiad6180e2013-06-17 11:57:04 +0530305 sendmail(email_list, subject='Auto Material Request Generation Notification', msg = msg)
306
307def notify_errors(exceptions_list):
308 subject = "[Important] [ERPNext] Error(s) while creating Material Requests based on Re-order Levels"
309 msg = """Dear System Manager,
310
311 An error occured for certain Items while creating Material Requests based on Re-order level.
312
313 Please rectify these issues:
314 ---
315
316 %s
317
318 ---
319 Regards,
320 Administrator""" % ("\n\n".join(["\n".join(msg) for msg in exceptions_list]),)
321
Rushabh Mehta7c932002014-03-11 16:15:05 +0530322 from frappe.utils.user import get_system_managers
Anand Doshiad6180e2013-06-17 11:57:04 +0530323 sendmail(get_system_managers(), subject=subject, msg=msg)