blob: 0c7927438aa07dfd78fec29ba66e29263f701f91 [file] [log] [blame]
Anand Doshi885e0742015-03-03 14:55:30 +05301# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
Rushabh Mehtae67d1fb2013-08-05 14:59:54 +05302# License: GNU General Public License v3. See license.txt
Nabin Haitc3afb252013-03-19 12:01:24 +05303
4from __future__ import unicode_literals
Rohit Waghchauree9ff1912017-06-19 12:54:59 +05305import frappe, erpnext
Rushabh Mehtaffd80a62017-01-16 17:23:20 +05306from frappe.utils import cint, flt, cstr
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05307from frappe import msgprint, _
8import frappe.defaults
Valmik Janglad89dcf62016-03-04 14:33:49 +05309from erpnext.accounts.utils import get_fiscal_year
Nabin Hait1f94fa22015-08-24 14:32:38 +053010from erpnext.accounts.general_ledger import make_gl_entries, delete_gl_entries, process_gl_map
Rushabh Mehta1f847992013-12-12 19:12:19 +053011from erpnext.controllers.accounts_controller import AccountsController
Rohit Waghchaure3899d742017-01-25 18:47:53 +053012from erpnext.stock.stock_ledger import get_valuation_rate
Nabin Hait6d7b0ce2017-06-15 11:09:27 +053013from erpnext.stock import get_warehouse_account_map
Nabin Haitc3afb252013-03-19 12:01:24 +053014
Nabin Hait5a9579b2018-12-24 14:54:42 +053015class QualityInspectionRequiredError(frappe.ValidationError): pass
16class QualityInspectionRejectedError(frappe.ValidationError): pass
17
Nabin Haitc3afb252013-03-19 12:01:24 +053018class StockController(AccountsController):
Nabin Hait8af429d2016-11-16 17:21:59 +053019 def validate(self):
20 super(StockController, self).validate()
21 self.validate_inspection()
Rushabh Mehtaffd80a62017-01-16 17:23:20 +053022
Nabin Hait9784d272016-12-30 16:21:35 +053023 def make_gl_entries(self, gl_entries=None, repost_future_gle=True, from_repost=False):
Anand Doshif78d1ae2014-03-28 13:55:00 +053024 if self.docstatus == 2:
25 delete_gl_entries(voucher_type=self.doctype, voucher_no=self.name)
Anand Doshi2ce39cf2014-04-07 18:51:58 +053026
Rohit Waghchauree9ff1912017-06-19 12:54:59 +053027 if cint(erpnext.is_perpetual_inventory_enabled(self.company)):
Nabin Hait6d7b0ce2017-06-15 11:09:27 +053028 warehouse_account = get_warehouse_account_map()
Anand Doshi2ce39cf2014-04-07 18:51:58 +053029
Anand Doshif78d1ae2014-03-28 13:55:00 +053030 if self.docstatus==1:
Nabin Hait9784d272016-12-30 16:21:35 +053031 if not gl_entries:
32 gl_entries = self.get_gl_entries(warehouse_account)
33 make_gl_entries(gl_entries, from_repost=from_repost)
Nabin Hait145e5e22013-10-22 23:51:41 +053034
Nabin Haitbecf75d2014-03-27 17:18:29 +053035 if repost_future_gle:
Nabin Haitb9e04812014-09-26 14:22:18 +053036 items, warehouses = self.get_items_and_warehouses()
Nabin Haitadeb9762014-10-06 11:53:52 +053037 update_gl_entries_after(self.posting_date, self.posting_time, warehouses, items,
Nabin Haitf1a07ff2014-10-15 12:23:35 +053038 warehouse_account)
Rohit Waghchaureb6381c62018-06-12 13:54:40 +053039 elif self.doctype in ['Purchase Receipt', 'Purchase Invoice'] and self.docstatus == 1:
Rohit Waghchaure42169722018-05-16 18:16:08 +053040 gl_entries = []
41 gl_entries = self.get_asset_gl_entry(gl_entries)
42 make_gl_entries(gl_entries, from_repost=from_repost)
Anand Doshi2ce39cf2014-04-07 18:51:58 +053043
Nabin Haite83069c2013-11-14 18:40:08 +053044 def get_gl_entries(self, warehouse_account=None, default_expense_account=None,
Nabin Hait142007a2013-09-17 15:15:16 +053045 default_cost_center=None):
Nabin Haitadeb9762014-10-06 11:53:52 +053046
Nabin Hait142007a2013-09-17 15:15:16 +053047 if not warehouse_account:
Nabin Hait6d7b0ce2017-06-15 11:09:27 +053048 warehouse_account = get_warehouse_account_map()
Anand Doshi2ce39cf2014-04-07 18:51:58 +053049
Anand Doshide1a97d2014-04-17 11:37:46 +053050 sle_map = self.get_stock_ledger_details()
51 voucher_details = self.get_voucher_details(default_expense_account, default_cost_center, sle_map)
Anand Doshi2ce39cf2014-04-07 18:51:58 +053052
Nabin Hait2e296fa2013-08-28 18:53:11 +053053 gl_list = []
Nabin Hait7a75e102013-09-17 10:21:20 +053054 warehouse_with_no_account = []
Rushabh Mehtaffd80a62017-01-16 17:23:20 +053055
Nabin Hait8c61f342016-12-15 13:46:03 +053056 for item_row in voucher_details:
57 sle_list = sle_map.get(item_row.name)
Nabin Hait2e296fa2013-08-28 18:53:11 +053058 if sle_list:
59 for sle in sle_list:
60 if warehouse_account.get(sle.warehouse):
Nabin Hait2e296fa2013-08-28 18:53:11 +053061 # from warehouse account
Rushabh Mehtaffd80a62017-01-16 17:23:20 +053062
Nabin Hait8c61f342016-12-15 13:46:03 +053063 self.check_expense_account(item_row)
Rushabh Mehtaffd80a62017-01-16 17:23:20 +053064
Javier Wong9b11d9b2017-04-14 18:24:04 +080065 # If the item does not have the allow zero valuation rate flag set
Nabin Haitea8fab52017-02-06 17:13:39 +053066 # and ( valuation rate not mentioned in an incoming entry
Rushabh Mehtacc8b2b22017-03-31 12:44:29 +053067 # or incoming entry not found while delivering the item),
Nabin Haitea8fab52017-02-06 17:13:39 +053068 # try to pick valuation rate from previous sle or Item master and update in SLE
69 # Otherwise, throw an exception
Nabin Hait0a6aaf42017-02-07 01:23:26 +053070
71 if not sle.stock_value_difference and self.doctype != "Stock Reconciliation" \
Javier Wong9b11d9b2017-04-14 18:24:04 +080072 and not item_row.get("allow_zero_valuation_rate"):
Nabin Hait0a6aaf42017-02-07 01:23:26 +053073
Nabin Haitea8fab52017-02-06 17:13:39 +053074 sle = self.update_stock_ledger_entries(sle)
Rushabh Mehta14a908b2015-10-15 12:28:20 +053075
Nabin Hait2e296fa2013-08-28 18:53:11 +053076 gl_list.append(self.get_gl_dict({
Nabin Hait6d7b0ce2017-06-15 11:09:27 +053077 "account": warehouse_account[sle.warehouse]["account"],
Nabin Hait8c61f342016-12-15 13:46:03 +053078 "against": item_row.expense_account,
79 "cost_center": item_row.cost_center,
Nabin Haitdc82d4f2014-04-07 12:02:57 +053080 "remarks": self.get("remarks") or "Accounting Entry for Stock",
Nabin Hait46bcbaf2015-08-19 13:49:10 +053081 "debit": flt(sle.stock_value_difference, 2),
Nabin Hait6e439a52015-08-28 19:24:22 +053082 }, warehouse_account[sle.warehouse]["account_currency"]))
Nabin Hait27994c22013-08-26 16:53:30 +053083
Rushabh Mehta14a908b2015-10-15 12:28:20 +053084 # to target warehouse / expense account
Nabin Hait2e296fa2013-08-28 18:53:11 +053085 gl_list.append(self.get_gl_dict({
Nabin Hait8c61f342016-12-15 13:46:03 +053086 "account": item_row.expense_account,
Nabin Hait6d7b0ce2017-06-15 11:09:27 +053087 "against": warehouse_account[sle.warehouse]["account"],
Nabin Hait8c61f342016-12-15 13:46:03 +053088 "cost_center": item_row.cost_center,
Nabin Haitdc82d4f2014-04-07 12:02:57 +053089 "remarks": self.get("remarks") or "Accounting Entry for Stock",
Nabin Hait46bcbaf2015-08-19 13:49:10 +053090 "credit": flt(sle.stock_value_difference, 2),
Nabin Hait8c61f342016-12-15 13:46:03 +053091 "project": item_row.get("project") or self.get("project")
Nabin Hait2e296fa2013-08-28 18:53:11 +053092 }))
Nabin Hait7a75e102013-09-17 10:21:20 +053093 elif sle.warehouse not in warehouse_with_no_account:
94 warehouse_with_no_account.append(sle.warehouse)
Anand Doshi2ce39cf2014-04-07 18:51:58 +053095
96 if warehouse_with_no_account:
Nabin Haitd6625022016-10-24 18:17:57 +053097 for wh in warehouse_with_no_account:
98 if frappe.db.get_value("Warehouse", wh, "company"):
Nabin Hait6d7b0ce2017-06-15 11:09:27 +053099 frappe.throw(_("Warehouse {0} is not linked to any account, please mention the account in the warehouse record or set default inventory account in company {1}.").format(wh, self.company))
Rushabh Mehta14a908b2015-10-15 12:28:20 +0530100
Nabin Hait2e296fa2013-08-28 18:53:11 +0530101 return process_gl_map(gl_list)
Rushabh Mehtaffd80a62017-01-16 17:23:20 +0530102
Rohit Waghchaure3899d742017-01-25 18:47:53 +0530103 def update_stock_ledger_entries(self, sle):
Rushabh Mehtacc8b2b22017-03-31 12:44:29 +0530104 sle.valuation_rate = get_valuation_rate(sle.item_code, sle.warehouse,
Rohit Waghchaurea5f40942017-06-16 15:21:36 +0530105 self.doctype, self.name, currency=self.company_currency, company=self.company)
Nabin Haitea8fab52017-02-06 17:13:39 +0530106
Nabin Haitcb19f522017-01-25 19:20:35 +0530107 sle.stock_value = flt(sle.qty_after_transaction) * flt(sle.valuation_rate)
Nabin Haitea8fab52017-02-06 17:13:39 +0530108 sle.stock_value_difference = flt(sle.actual_qty) * flt(sle.valuation_rate)
Rushabh Mehtacc8b2b22017-03-31 12:44:29 +0530109
Kanchan Chauhanb77eaf72017-01-28 13:18:49 +0530110 if sle.name:
Nabin Haitea8fab52017-02-06 17:13:39 +0530111 frappe.db.sql("""
Rushabh Mehtacc8b2b22017-03-31 12:44:29 +0530112 update
113 `tabStock Ledger Entry`
114 set
Nabin Haitea8fab52017-02-06 17:13:39 +0530115 stock_value = %(stock_value)s,
Rushabh Mehtacc8b2b22017-03-31 12:44:29 +0530116 valuation_rate = %(valuation_rate)s,
117 stock_value_difference = %(stock_value_difference)s
118 where
Nabin Haitea8fab52017-02-06 17:13:39 +0530119 name = %(name)s""", (sle))
Rushabh Mehtacc8b2b22017-03-31 12:44:29 +0530120
Nabin Haitea8fab52017-02-06 17:13:39 +0530121 return sle
Rushabh Mehtacc8b2b22017-03-31 12:44:29 +0530122
Anand Doshide1a97d2014-04-17 11:37:46 +0530123 def get_voucher_details(self, default_expense_account, default_cost_center, sle_map):
124 if self.doctype == "Stock Reconciliation":
125 return [frappe._dict({ "name": voucher_detail_no, "expense_account": default_expense_account,
126 "cost_center": default_cost_center }) for voucher_detail_no, sle in sle_map.items()]
127 else:
Nabin Haitdd38a262014-12-26 13:15:21 +0530128 details = self.get("items")
Anand Doshi094610d2014-04-16 19:56:53 +0530129
Anand Doshide1a97d2014-04-17 11:37:46 +0530130 if default_expense_account or default_cost_center:
131 for d in details:
132 if default_expense_account and not d.get("expense_account"):
133 d.expense_account = default_expense_account
134 if default_cost_center and not d.get("cost_center"):
135 d.cost_center = default_cost_center
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530136
Anand Doshide1a97d2014-04-17 11:37:46 +0530137 return details
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530138
Nabin Haitb9e04812014-09-26 14:22:18 +0530139 def get_items_and_warehouses(self):
Nabin Haitbecf75d2014-03-27 17:18:29 +0530140 items, warehouses = [], []
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530141
Nabin Haitdd38a262014-12-26 13:15:21 +0530142 if hasattr(self, "items"):
143 item_doclist = self.get("items")
Anand Doshif78d1ae2014-03-28 13:55:00 +0530144 elif self.doctype == "Stock Reconciliation":
Nabin Haitbecf75d2014-03-27 17:18:29 +0530145 import json
146 item_doclist = []
Anand Doshif78d1ae2014-03-28 13:55:00 +0530147 data = json.loads(self.reconciliation_json)
Nabin Haitbecf75d2014-03-27 17:18:29 +0530148 for row in data[data.index(self.head_row)+1:]:
149 d = frappe._dict(zip(["item_code", "warehouse", "qty", "valuation_rate"], row))
150 item_doclist.append(d)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530151
Nabin Haitbecf75d2014-03-27 17:18:29 +0530152 if item_doclist:
153 for d in item_doclist:
154 if d.item_code and d.item_code not in items:
155 items.append(d.item_code)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530156
Nabin Haitdc82d4f2014-04-07 12:02:57 +0530157 if d.get("warehouse") and d.warehouse not in warehouses:
Nabin Haitbecf75d2014-03-27 17:18:29 +0530158 warehouses.append(d.warehouse)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530159
Nabin Haitdc82d4f2014-04-07 12:02:57 +0530160 if self.doctype == "Stock Entry":
161 if d.get("s_warehouse") and d.s_warehouse not in warehouses:
162 warehouses.append(d.s_warehouse)
163 if d.get("t_warehouse") and d.t_warehouse not in warehouses:
164 warehouses.append(d.t_warehouse)
Nabin Haitbecf75d2014-03-27 17:18:29 +0530165
Nabin Haitb9e04812014-09-26 14:22:18 +0530166 return items, warehouses
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530167
Nabin Hait2e296fa2013-08-28 18:53:11 +0530168 def get_stock_ledger_details(self):
169 stock_ledger = {}
Nabin Haitea8fab52017-02-06 17:13:39 +0530170 stock_ledger_entries = frappe.db.sql("""
Rushabh Mehtacc8b2b22017-03-31 12:44:29 +0530171 select
Nabin Hait0a6aaf42017-02-07 01:23:26 +0530172 name, warehouse, stock_value_difference, valuation_rate,
Rushabh Mehtacc8b2b22017-03-31 12:44:29 +0530173 voucher_detail_no, item_code, posting_date, posting_time,
Nabin Hait0a6aaf42017-02-07 01:23:26 +0530174 actual_qty, qty_after_transaction
Nabin Haitea8fab52017-02-06 17:13:39 +0530175 from
176 `tabStock Ledger Entry`
177 where
178 voucher_type=%s and voucher_no=%s
179 """, (self.doctype, self.name), as_dict=True)
Nabin Hait0a6aaf42017-02-07 01:23:26 +0530180
Nabin Haitea8fab52017-02-06 17:13:39 +0530181 for sle in stock_ledger_entries:
Nabin Hait2e296fa2013-08-28 18:53:11 +0530182 stock_ledger.setdefault(sle.voucher_detail_no, []).append(sle)
183 return stock_ledger
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530184
Rushabh Mehta551406a2017-04-21 12:40:19 +0530185 def make_batches(self, warehouse_field):
Rushabh Mehtae385b5b2017-04-20 15:21:01 +0530186 '''Create batches if required. Called before submit'''
187 for d in self.items:
Rushabh Mehta551406a2017-04-21 12:40:19 +0530188 if d.get(warehouse_field) and not d.batch_no:
189 has_batch_no, create_new_batch = frappe.db.get_value('Item', d.item_code, ['has_batch_no', 'create_new_batch'])
190 if has_batch_no and create_new_batch:
191 d.batch_no = frappe.get_doc(dict(
192 doctype='Batch',
193 item=d.item_code,
194 supplier=getattr(self, 'supplier', None),
195 reference_doctype=self.doctype,
196 reference_name=self.name)).insert().name
Rushabh Mehtae385b5b2017-04-20 15:21:01 +0530197
Nabin Hait2e296fa2013-08-28 18:53:11 +0530198 def make_adjustment_entry(self, expected_gle, voucher_obj):
Rushabh Mehta1f847992013-12-12 19:12:19 +0530199 from erpnext.accounts.utils import get_stock_and_account_difference
Nabin Hait27994c22013-08-26 16:53:30 +0530200 account_list = [d.account for d in expected_gle]
201 acc_diff = get_stock_and_account_difference(account_list, expected_gle[0].posting_date)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530202
Nabin Hait27994c22013-08-26 16:53:30 +0530203 cost_center = self.get_company_default("cost_center")
204 stock_adjustment_account = self.get_company_default("stock_adjustment_account")
205
Nabin Haitd4741942013-08-06 15:57:25 +0530206 gl_entries = []
207 for account, diff in acc_diff.items():
208 if diff:
Nabin Hait27994c22013-08-26 16:53:30 +0530209 gl_entries.append([
210 # stock in hand account
Nabin Hait2e296fa2013-08-28 18:53:11 +0530211 voucher_obj.get_gl_dict({
Nabin Hait27994c22013-08-26 16:53:30 +0530212 "account": account,
213 "against": stock_adjustment_account,
214 "debit": diff,
215 "remarks": "Adjustment Accounting Entry for Stock",
216 }),
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530217
Nabin Hait27994c22013-08-26 16:53:30 +0530218 # account against stock in hand
Nabin Hait2e296fa2013-08-28 18:53:11 +0530219 voucher_obj.get_gl_dict({
Nabin Hait27994c22013-08-26 16:53:30 +0530220 "account": stock_adjustment_account,
221 "against": account,
222 "credit": diff,
223 "cost_center": cost_center or None,
224 "remarks": "Adjustment Accounting Entry for Stock",
225 }),
226 ])
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530227
Nabin Haitd4741942013-08-06 15:57:25 +0530228 if gl_entries:
Rushabh Mehta1f847992013-12-12 19:12:19 +0530229 from erpnext.accounts.general_ledger import make_gl_entries
Nabin Haitd4741942013-08-06 15:57:25 +0530230 make_gl_entries(gl_entries)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530231
Nabin Hait27994c22013-08-26 16:53:30 +0530232 def check_expense_account(self, item):
Rushabh Mehta052fe822014-04-16 19:20:11 +0530233 if not item.get("expense_account"):
Nabin Haitd3412542014-05-01 17:42:21 +0530234 frappe.throw(_("Expense or Difference account is mandatory for Item {0} as it impacts overall stock value").format(item.item_code))
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530235
Anand Doshi496123a2014-06-19 19:25:19 +0530236 else:
Nabin Hait00778c92014-06-25 19:12:24 +0530237 is_expense_account = frappe.db.get_value("Account",
238 item.get("expense_account"), "report_type")=="Profit and Loss"
jof2jc524ebbc2016-02-08 23:44:55 +0700239 if self.doctype not in ("Purchase Receipt", "Purchase Invoice", "Stock Reconciliation", "Stock Entry") and not is_expense_account:
Nabin Hait00778c92014-06-25 19:12:24 +0530240 frappe.throw(_("Expense / Difference account ({0}) must be a 'Profit or Loss' account")
241 .format(item.get("expense_account")))
Anand Doshi496123a2014-06-19 19:25:19 +0530242 if is_expense_account and not item.get("cost_center"):
243 frappe.throw(_("{0} {1}: Cost Center is mandatory for Item {2}").format(
244 _(self.doctype), self.name, item.get("item_code")))
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530245
246 def get_sl_entries(self, d, args):
Nabin Hait5288bde2014-11-03 15:08:21 +0530247 sl_dict = frappe._dict({
Nabin Hait296d6262014-05-02 17:36:13 +0530248 "item_code": d.get("item_code", None),
Nabin Haitdc82d4f2014-04-07 12:02:57 +0530249 "warehouse": d.get("warehouse", None),
Anand Doshif78d1ae2014-03-28 13:55:00 +0530250 "posting_date": self.posting_date,
251 "posting_time": self.posting_time,
Valmik Janglad89dcf62016-03-04 14:33:49 +0530252 'fiscal_year': get_fiscal_year(self.posting_date, company=self.company)[0],
Anand Doshif78d1ae2014-03-28 13:55:00 +0530253 "voucher_type": self.doctype,
254 "voucher_no": self.name,
Nabin Hait1e2f20a2013-08-02 11:42:11 +0530255 "voucher_detail_no": d.name,
Nabin Haitdc82d4f2014-04-07 12:02:57 +0530256 "actual_qty": (self.docstatus==1 and 1 or -1)*flt(d.get("stock_qty")),
Nabin Haitc865f222015-09-21 09:18:43 +0530257 "stock_uom": frappe.db.get_value("Item", args.get("item_code") or d.get("item_code"), "stock_uom"),
Nabin Hait1e2f20a2013-08-02 11:42:11 +0530258 "incoming_rate": 0,
Anand Doshif78d1ae2014-03-28 13:55:00 +0530259 "company": self.company,
Nabin Hait296d6262014-05-02 17:36:13 +0530260 "batch_no": cstr(d.get("batch_no")).strip(),
261 "serial_no": d.get("serial_no"),
rohitwaghchaure93779c22018-03-21 17:52:41 +0530262 "project": d.get("project") or self.get('project'),
Anand Doshif78d1ae2014-03-28 13:55:00 +0530263 "is_cancelled": self.docstatus==2 and "Yes" or "No"
Nabin Hait5288bde2014-11-03 15:08:21 +0530264 })
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530265
Nabin Hait1e2f20a2013-08-02 11:42:11 +0530266 sl_dict.update(args)
267 return sl_dict
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530268
Anand Doshic3997092015-04-06 19:29:16 +0530269 def make_sl_entries(self, sl_entries, is_amended=None, allow_negative_stock=False,
Nabin Hait54c865e2015-03-27 15:38:31 +0530270 via_landed_cost_voucher=False):
Rushabh Mehta1f847992013-12-12 19:12:19 +0530271 from erpnext.stock.stock_ledger import make_sl_entries
Nabin Hait54c865e2015-03-27 15:38:31 +0530272 make_sl_entries(sl_entries, is_amended, allow_negative_stock, via_landed_cost_voucher)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530273
Nabin Hait3b6dc142016-08-19 16:39:33 +0530274 def make_gl_entries_on_cancel(self, repost_future_gle=True):
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530275 if frappe.db.sql("""select name from `tabGL Entry` where voucher_type=%s
Anand Doshif78d1ae2014-03-28 13:55:00 +0530276 and voucher_no=%s""", (self.doctype, self.name)):
Nabin Hait9784d272016-12-30 16:21:35 +0530277 self.make_gl_entries(repost_future_gle=repost_future_gle)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530278
Anand Doshia740f752014-06-25 13:31:02 +0530279 def get_serialized_items(self):
280 serialized_items = []
Nabin Haitdd38a262014-12-26 13:15:21 +0530281 item_codes = list(set([d.item_code for d in self.get("items")]))
Anand Doshia740f752014-06-25 13:31:02 +0530282 if item_codes:
283 serialized_items = frappe.db.sql_list("""select name from `tabItem`
Rushabh Mehta1e8025b2015-07-24 15:16:25 +0530284 where has_serial_no=1 and name in ({})""".format(", ".join(["%s"]*len(item_codes))),
Anand Doshia740f752014-06-25 13:31:02 +0530285 tuple(item_codes))
286
287 return serialized_items
Rushabh Mehtab16b9cd2015-08-03 16:13:33 +0530288
Nabin Hait20105d82016-01-19 18:05:28 +0530289 def get_incoming_rate_for_sales_return(self, item_code, against_document):
Nabin Hait1d218422015-07-17 15:19:02 +0530290 incoming_rate = 0.0
291 if against_document and item_code:
Anand Doshi602e8252015-11-16 19:05:46 +0530292 incoming_rate = frappe.db.sql("""select abs(stock_value_difference / actual_qty)
Nabin Hait1d218422015-07-17 15:19:02 +0530293 from `tabStock Ledger Entry`
Rushabh Mehta14a908b2015-10-15 12:28:20 +0530294 where voucher_type = %s and voucher_no = %s
Nabin Hait20105d82016-01-19 18:05:28 +0530295 and item_code = %s limit 1""",
296 (self.doctype, against_document, item_code))
Nabin Hait1d218422015-07-17 15:19:02 +0530297 incoming_rate = incoming_rate[0][0] if incoming_rate else 0.0
298
299 return incoming_rate
Rushabh Mehtaffd80a62017-01-16 17:23:20 +0530300
Saurabh2e292062015-11-18 17:03:33 +0530301 def validate_warehouse(self):
302 from erpnext.stock.utils import validate_warehouse_company
303
304 warehouses = list(set([d.warehouse for d in
305 self.get("items") if getattr(d, "warehouse", None)]))
306
307 for w in warehouses:
308 validate_warehouse_company(w, self.company)
Rushabh Mehtaffd80a62017-01-16 17:23:20 +0530309
Anand Doshi6b71ef52016-01-06 16:32:06 +0530310 def update_billing_percentage(self, update_modified=True):
Nabin Haitbdab0ee2015-12-30 19:08:11 +0530311 self._update_percent_field({
312 "target_dt": self.doctype + " Item",
313 "target_parent_dt": self.doctype,
314 "target_parent_field": "per_billed",
315 "target_ref_field": "amount",
316 "target_field": "billed_amt",
317 "name": self.name,
Anand Doshi6b71ef52016-01-06 16:32:06 +0530318 }, update_modified)
Anand Doshia740f752014-06-25 13:31:02 +0530319
Nabin Hait8af429d2016-11-16 17:21:59 +0530320 def validate_inspection(self):
Manas Solankicc902412016-11-10 19:15:11 +0530321 '''Checks if quality inspection is set for Items that require inspection.
322 On submit, throw an exception'''
Manas Solanki60db98a2016-11-18 14:52:13 +0530323 inspection_required_fieldname = None
Nabin Hait8af429d2016-11-16 17:21:59 +0530324 if self.doctype in ["Purchase Receipt", "Purchase Invoice"]:
325 inspection_required_fieldname = "inspection_required_before_purchase"
326 elif self.doctype in ["Delivery Note", "Sales Invoice"]:
327 inspection_required_fieldname = "inspection_required_before_delivery"
Rushabh Mehtaffd80a62017-01-16 17:23:20 +0530328
rohitwaghchaure4e8fdf72018-02-22 11:03:48 +0530329 if ((not inspection_required_fieldname and self.doctype != "Stock Entry") or
330 (self.doctype == "Stock Entry" and not self.inspection_required) or
331 (self.doctype in ["Sales Invoice", "Purchase Invoice"] and not self.update_stock)):
Nabin Hait8af429d2016-11-16 17:21:59 +0530332 return
Rushabh Mehtaffd80a62017-01-16 17:23:20 +0530333
Manas Solankicc902412016-11-10 19:15:11 +0530334 for d in self.get('items'):
Nabin Hait5a9579b2018-12-24 14:54:42 +0530335 qa_required = False
rohitwaghchaure4e8fdf72018-02-22 11:03:48 +0530336 if (inspection_required_fieldname and not d.quality_inspection and
337 frappe.db.get_value("Item", d.item_code, inspection_required_fieldname)):
Nabin Hait5a9579b2018-12-24 14:54:42 +0530338 qa_required = True
rohitwaghchaure4e8fdf72018-02-22 11:03:48 +0530339 elif self.doctype == "Stock Entry" and not d.quality_inspection and d.t_warehouse:
Nabin Hait5a9579b2018-12-24 14:54:42 +0530340 qa_required = True
Rushabh Mehtaffd80a62017-01-16 17:23:20 +0530341
Nabin Hait5a9579b2018-12-24 14:54:42 +0530342 if qa_required:
Manas Solankicc902412016-11-10 19:15:11 +0530343 frappe.msgprint(_("Quality Inspection required for Item {0}").format(d.item_code))
344 if self.docstatus==1:
Nabin Hait5a9579b2018-12-24 14:54:42 +0530345 raise QualityInspectionRequiredError
346 elif self.docstatus == 1:
347 if d.quality_inspection:
348 qa_doc = frappe.get_doc("Quality Inspection", d.quality_inspection)
349 qa_failed = any([r.status=="Rejected" for r in qa_doc.readings])
350 if qa_failed:
351 frappe.throw(_("Row {0}: Quality Inspection rejected for item {1}")
352 .format(d.idx, d.item_code), QualityInspectionRejectedError)
353
Manas Solankicc902412016-11-10 19:15:11 +0530354
Nabin Haitb2d3c0f2018-06-14 15:54:34 +0530355 def update_blanket_order(self):
Nabin Haitd1f40ad2018-06-14 17:09:55 +0530356 blanket_orders = list(set([d.blanket_order for d in self.items if d.blanket_order]))
Nabin Haitb2d3c0f2018-06-14 15:54:34 +0530357 for blanket_order in blanket_orders:
358 frappe.get_doc("Blanket Order", blanket_order).update_ordered_qty()
Manas Solankie5e87f72018-05-28 20:07:08 +0530359
Nabin Haitadeb9762014-10-06 11:53:52 +0530360def update_gl_entries_after(posting_date, posting_time, for_warehouses=None, for_items=None,
Nabin Haitf1a07ff2014-10-15 12:23:35 +0530361 warehouse_account=None):
Nabin Haitbecf75d2014-03-27 17:18:29 +0530362 def _delete_gl_entries(voucher_type, voucher_no):
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530363 frappe.db.sql("""delete from `tabGL Entry`
Nabin Haitbecf75d2014-03-27 17:18:29 +0530364 where voucher_type=%s and voucher_no=%s""", (voucher_type, voucher_no))
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530365
Nabin Haitbecf75d2014-03-27 17:18:29 +0530366 if not warehouse_account:
Nabin Hait6d7b0ce2017-06-15 11:09:27 +0530367 warehouse_account = get_warehouse_account_map()
Nabin Haitb9e04812014-09-26 14:22:18 +0530368
369 future_stock_vouchers = get_future_stock_vouchers(posting_date, posting_time, for_warehouses, for_items)
Nabin Haitbecf75d2014-03-27 17:18:29 +0530370 gle = get_voucherwise_gl_entries(future_stock_vouchers, posting_date)
Rushabh Mehtaffd80a62017-01-16 17:23:20 +0530371
Nabin Haitbecf75d2014-03-27 17:18:29 +0530372 for voucher_type, voucher_no in future_stock_vouchers:
373 existing_gle = gle.get((voucher_type, voucher_no), [])
Rushabh Mehta0a0f2492014-03-31 17:27:06 +0530374 voucher_obj = frappe.get_doc(voucher_type, voucher_no)
Nabin Haitbecf75d2014-03-27 17:18:29 +0530375 expected_gle = voucher_obj.get_gl_entries(warehouse_account)
376 if expected_gle:
Nabin Hait99d4ff42016-08-08 14:12:16 +0530377 if not existing_gle or not compare_existing_and_expected_gle(existing_gle, expected_gle):
378 _delete_gl_entries(voucher_type, voucher_no)
Nabin Hait9784d272016-12-30 16:21:35 +0530379 voucher_obj.make_gl_entries(gl_entries=expected_gle, repost_future_gle=False, from_repost=True)
Nabin Haitbecf75d2014-03-27 17:18:29 +0530380 else:
381 _delete_gl_entries(voucher_type, voucher_no)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530382
Nabin Haitbecf75d2014-03-27 17:18:29 +0530383def compare_existing_and_expected_gle(existing_gle, expected_gle):
384 matched = True
385 for entry in expected_gle:
robert schouten64657112016-09-12 11:17:14 +0800386 account_existed = False
Nabin Haitbecf75d2014-03-27 17:18:29 +0530387 for e in existing_gle:
robert schouten64657112016-09-12 11:17:14 +0800388 if entry.account == e.account:
389 account_existed = True
390 if entry.account == e.account and entry.against_account == e.against_account \
391 and (not entry.cost_center or not e.cost_center or entry.cost_center == e.cost_center) \
392 and (entry.debit != e.debit or entry.credit != e.credit):
393 matched = False
394 break
395 if not account_existed:
396 matched = False
397 break
Nabin Haitbecf75d2014-03-27 17:18:29 +0530398 return matched
399
Nabin Haitb9e04812014-09-26 14:22:18 +0530400def get_future_stock_vouchers(posting_date, posting_time, for_warehouses=None, for_items=None):
Nabin Haitbecf75d2014-03-27 17:18:29 +0530401 future_stock_vouchers = []
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530402
Anand Doshi913c51b2014-08-27 22:09:03 +0530403 values = []
Nabin Haitbecf75d2014-03-27 17:18:29 +0530404 condition = ""
405 if for_items:
Anand Doshi913c51b2014-08-27 22:09:03 +0530406 condition += " and item_code in ({})".format(", ".join(["%s"] * len(for_items)))
407 values += for_items
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530408
Nabin Haitb9e04812014-09-26 14:22:18 +0530409 if for_warehouses:
410 condition += " and warehouse in ({})".format(", ".join(["%s"] * len(for_warehouses)))
411 values += for_warehouses
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530412
413 for d in frappe.db.sql("""select distinct sle.voucher_type, sle.voucher_no
Nabin Haitbecf75d2014-03-27 17:18:29 +0530414 from `tabStock Ledger Entry` sle
Anand Doshi913c51b2014-08-27 22:09:03 +0530415 where timestamp(sle.posting_date, sle.posting_time) >= timestamp(%s, %s) {condition}
Aditya Hase0c164242019-01-07 22:07:13 +0530416 order by timestamp(sle.posting_date, sle.posting_time) asc, creation asc""".format(condition=condition),
Anand Doshi913c51b2014-08-27 22:09:03 +0530417 tuple([posting_date, posting_time] + values), as_dict=True):
Nabin Haitbecf75d2014-03-27 17:18:29 +0530418 future_stock_vouchers.append([d.voucher_type, d.voucher_no])
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530419
Nabin Haitbecf75d2014-03-27 17:18:29 +0530420 return future_stock_vouchers
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530421
Nabin Haitbecf75d2014-03-27 17:18:29 +0530422def get_voucherwise_gl_entries(future_stock_vouchers, posting_date):
423 gl_entries = {}
424 if future_stock_vouchers:
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530425 for d in frappe.db.sql("""select * from `tabGL Entry`
426 where posting_date >= %s and voucher_no in (%s)""" %
427 ('%s', ', '.join(['%s']*len(future_stock_vouchers))),
Nabin Haitbecf75d2014-03-27 17:18:29 +0530428 tuple([posting_date] + [d[1] for d in future_stock_vouchers]), as_dict=1):
429 gl_entries.setdefault((d.voucher_type, d.voucher_no), []).append(d)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530430
Nabin Hait6d7b0ce2017-06-15 11:09:27 +0530431 return gl_entries