blob: 4c6a3201586f1afeefe608108fccf91a778c00ee [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
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05305import frappe
6from frappe.utils import cint, flt, cstr
7from frappe import msgprint, _
8import frappe.defaults
Nabin Hait1f94fa22015-08-24 14:32:38 +05309from erpnext.accounts.general_ledger import make_gl_entries, delete_gl_entries, process_gl_map
Nabin Haitc865f222015-09-21 09:18:43 +053010from erpnext.stock.utils import get_incoming_rate
Nabin Haitd4741942013-08-06 15:57:25 +053011
Rushabh Mehta1f847992013-12-12 19:12:19 +053012from erpnext.controllers.accounts_controller import AccountsController
Nabin Haitc3afb252013-03-19 12:01:24 +053013
14class StockController(AccountsController):
Nabin Haitbecf75d2014-03-27 17:18:29 +053015 def make_gl_entries(self, repost_future_gle=True):
Anand Doshif78d1ae2014-03-28 13:55:00 +053016 if self.docstatus == 2:
17 delete_gl_entries(voucher_type=self.doctype, voucher_no=self.name)
Anand Doshi2ce39cf2014-04-07 18:51:58 +053018
Rushabh Mehta793ba6b2014-02-14 15:47:51 +053019 if cint(frappe.defaults.get_global_default("auto_accounting_for_stock")):
Nabin Haitb9e04812014-09-26 14:22:18 +053020 warehouse_account = get_warehouse_account()
Anand Doshi2ce39cf2014-04-07 18:51:58 +053021
Anand Doshif78d1ae2014-03-28 13:55:00 +053022 if self.docstatus==1:
Nabin Haite83069c2013-11-14 18:40:08 +053023 gl_entries = self.get_gl_entries(warehouse_account)
Nabin Hait145e5e22013-10-22 23:51:41 +053024 make_gl_entries(gl_entries)
25
Nabin Haitbecf75d2014-03-27 17:18:29 +053026 if repost_future_gle:
Nabin Haitb9e04812014-09-26 14:22:18 +053027 items, warehouses = self.get_items_and_warehouses()
Nabin Haitadeb9762014-10-06 11:53:52 +053028 update_gl_entries_after(self.posting_date, self.posting_time, warehouses, items,
Nabin Haitf1a07ff2014-10-15 12:23:35 +053029 warehouse_account)
Anand Doshi2ce39cf2014-04-07 18:51:58 +053030
Nabin Haite83069c2013-11-14 18:40:08 +053031 def get_gl_entries(self, warehouse_account=None, default_expense_account=None,
Nabin Hait142007a2013-09-17 15:15:16 +053032 default_cost_center=None):
Nabin Haitadeb9762014-10-06 11:53:52 +053033
Nabin Hait142007a2013-09-17 15:15:16 +053034 if not warehouse_account:
Nabin Haitbecf75d2014-03-27 17:18:29 +053035 warehouse_account = get_warehouse_account()
Anand Doshi2ce39cf2014-04-07 18:51:58 +053036
Anand Doshide1a97d2014-04-17 11:37:46 +053037 sle_map = self.get_stock_ledger_details()
38 voucher_details = self.get_voucher_details(default_expense_account, default_cost_center, sle_map)
Anand Doshi2ce39cf2014-04-07 18:51:58 +053039
Nabin Hait2e296fa2013-08-28 18:53:11 +053040 gl_list = []
Nabin Hait7a75e102013-09-17 10:21:20 +053041 warehouse_with_no_account = []
Nabin Hait2e296fa2013-08-28 18:53:11 +053042 for detail in voucher_details:
Anand Doshide1a97d2014-04-17 11:37:46 +053043 sle_list = sle_map.get(detail.name)
Nabin Hait2e296fa2013-08-28 18:53:11 +053044 if sle_list:
45 for sle in sle_list:
46 if warehouse_account.get(sle.warehouse):
Nabin Hait2e296fa2013-08-28 18:53:11 +053047 # from warehouse account
Rushabh Mehta052fe822014-04-16 19:20:11 +053048
Rushabh Mehtac38fc712014-04-16 17:21:25 +053049 self.check_expense_account(detail)
Rushabh Mehta14a908b2015-10-15 12:28:20 +053050
Nabin Hait2e296fa2013-08-28 18:53:11 +053051 gl_list.append(self.get_gl_dict({
Nabin Hait46bcbaf2015-08-19 13:49:10 +053052 "account": warehouse_account[sle.warehouse]["name"],
Nabin Hait2e296fa2013-08-28 18:53:11 +053053 "against": detail.expense_account,
54 "cost_center": detail.cost_center,
Nabin Haitdc82d4f2014-04-07 12:02:57 +053055 "remarks": self.get("remarks") or "Accounting Entry for Stock",
Nabin Hait46bcbaf2015-08-19 13:49:10 +053056 "debit": flt(sle.stock_value_difference, 2),
Nabin Hait6e439a52015-08-28 19:24:22 +053057 }, warehouse_account[sle.warehouse]["account_currency"]))
Nabin Hait27994c22013-08-26 16:53:30 +053058
Rushabh Mehta14a908b2015-10-15 12:28:20 +053059 # to target warehouse / expense account
Nabin Hait2e296fa2013-08-28 18:53:11 +053060 gl_list.append(self.get_gl_dict({
61 "account": detail.expense_account,
Nabin Hait46bcbaf2015-08-19 13:49:10 +053062 "against": warehouse_account[sle.warehouse]["name"],
Nabin Hait2e296fa2013-08-28 18:53:11 +053063 "cost_center": detail.cost_center,
Nabin Haitdc82d4f2014-04-07 12:02:57 +053064 "remarks": self.get("remarks") or "Accounting Entry for Stock",
Nabin Hait46bcbaf2015-08-19 13:49:10 +053065 "credit": flt(sle.stock_value_difference, 2),
Nabin Hait2e296fa2013-08-28 18:53:11 +053066 }))
Nabin Hait7a75e102013-09-17 10:21:20 +053067 elif sle.warehouse not in warehouse_with_no_account:
68 warehouse_with_no_account.append(sle.warehouse)
Anand Doshi2ce39cf2014-04-07 18:51:58 +053069
70 if warehouse_with_no_account:
Rushabh Mehta9f0d6252014-04-14 19:20:45 +053071 msgprint(_("No accounting entries for the following warehouses") + ": \n" +
Nabin Hait7a75e102013-09-17 10:21:20 +053072 "\n".join(warehouse_with_no_account))
Rushabh Mehta14a908b2015-10-15 12:28:20 +053073
Nabin Hait2e296fa2013-08-28 18:53:11 +053074 return process_gl_map(gl_list)
Anand Doshi2ce39cf2014-04-07 18:51:58 +053075
Anand Doshide1a97d2014-04-17 11:37:46 +053076 def get_voucher_details(self, default_expense_account, default_cost_center, sle_map):
77 if self.doctype == "Stock Reconciliation":
78 return [frappe._dict({ "name": voucher_detail_no, "expense_account": default_expense_account,
79 "cost_center": default_cost_center }) for voucher_detail_no, sle in sle_map.items()]
80 else:
Nabin Haitdd38a262014-12-26 13:15:21 +053081 details = self.get("items")
Anand Doshi094610d2014-04-16 19:56:53 +053082
Anand Doshide1a97d2014-04-17 11:37:46 +053083 if default_expense_account or default_cost_center:
84 for d in details:
85 if default_expense_account and not d.get("expense_account"):
86 d.expense_account = default_expense_account
87 if default_cost_center and not d.get("cost_center"):
88 d.cost_center = default_cost_center
Anand Doshi2ce39cf2014-04-07 18:51:58 +053089
Anand Doshide1a97d2014-04-17 11:37:46 +053090 return details
Anand Doshi2ce39cf2014-04-07 18:51:58 +053091
Nabin Haitb9e04812014-09-26 14:22:18 +053092 def get_items_and_warehouses(self):
Nabin Haitbecf75d2014-03-27 17:18:29 +053093 items, warehouses = [], []
Anand Doshi2ce39cf2014-04-07 18:51:58 +053094
Nabin Haitdd38a262014-12-26 13:15:21 +053095 if hasattr(self, "items"):
96 item_doclist = self.get("items")
Anand Doshif78d1ae2014-03-28 13:55:00 +053097 elif self.doctype == "Stock Reconciliation":
Nabin Haitbecf75d2014-03-27 17:18:29 +053098 import json
99 item_doclist = []
Anand Doshif78d1ae2014-03-28 13:55:00 +0530100 data = json.loads(self.reconciliation_json)
Nabin Haitbecf75d2014-03-27 17:18:29 +0530101 for row in data[data.index(self.head_row)+1:]:
102 d = frappe._dict(zip(["item_code", "warehouse", "qty", "valuation_rate"], row))
103 item_doclist.append(d)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530104
Nabin Haitbecf75d2014-03-27 17:18:29 +0530105 if item_doclist:
106 for d in item_doclist:
107 if d.item_code and d.item_code not in items:
108 items.append(d.item_code)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530109
Nabin Haitdc82d4f2014-04-07 12:02:57 +0530110 if d.get("warehouse") and d.warehouse not in warehouses:
Nabin Haitbecf75d2014-03-27 17:18:29 +0530111 warehouses.append(d.warehouse)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530112
Nabin Haitdc82d4f2014-04-07 12:02:57 +0530113 if self.doctype == "Stock Entry":
114 if d.get("s_warehouse") and d.s_warehouse not in warehouses:
115 warehouses.append(d.s_warehouse)
116 if d.get("t_warehouse") and d.t_warehouse not in warehouses:
117 warehouses.append(d.t_warehouse)
Nabin Haitbecf75d2014-03-27 17:18:29 +0530118
Nabin Haitb9e04812014-09-26 14:22:18 +0530119 return items, warehouses
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530120
Nabin Hait2e296fa2013-08-28 18:53:11 +0530121 def get_stock_ledger_details(self):
122 stock_ledger = {}
Nabin Hait6c48ef72014-10-08 11:00:38 +0530123 for sle in frappe.db.sql("""select warehouse, stock_value_difference,
124 voucher_detail_no, item_code, posting_date, actual_qty
Nabin Hait27994c22013-08-26 16:53:30 +0530125 from `tabStock Ledger Entry` where voucher_type=%s and voucher_no=%s""",
Anand Doshif78d1ae2014-03-28 13:55:00 +0530126 (self.doctype, self.name), as_dict=True):
Nabin Hait2e296fa2013-08-28 18:53:11 +0530127 stock_ledger.setdefault(sle.voucher_detail_no, []).append(sle)
128 return stock_ledger
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530129
Nabin Hait2e296fa2013-08-28 18:53:11 +0530130 def make_adjustment_entry(self, expected_gle, voucher_obj):
Rushabh Mehta1f847992013-12-12 19:12:19 +0530131 from erpnext.accounts.utils import get_stock_and_account_difference
Nabin Hait27994c22013-08-26 16:53:30 +0530132 account_list = [d.account for d in expected_gle]
133 acc_diff = get_stock_and_account_difference(account_list, expected_gle[0].posting_date)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530134
Nabin Hait27994c22013-08-26 16:53:30 +0530135 cost_center = self.get_company_default("cost_center")
136 stock_adjustment_account = self.get_company_default("stock_adjustment_account")
137
Nabin Haitd4741942013-08-06 15:57:25 +0530138 gl_entries = []
139 for account, diff in acc_diff.items():
140 if diff:
Nabin Hait27994c22013-08-26 16:53:30 +0530141 gl_entries.append([
142 # stock in hand account
Nabin Hait2e296fa2013-08-28 18:53:11 +0530143 voucher_obj.get_gl_dict({
Nabin Hait27994c22013-08-26 16:53:30 +0530144 "account": account,
145 "against": stock_adjustment_account,
146 "debit": diff,
147 "remarks": "Adjustment Accounting Entry for Stock",
148 }),
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530149
Nabin Hait27994c22013-08-26 16:53:30 +0530150 # account against stock in hand
Nabin Hait2e296fa2013-08-28 18:53:11 +0530151 voucher_obj.get_gl_dict({
Nabin Hait27994c22013-08-26 16:53:30 +0530152 "account": stock_adjustment_account,
153 "against": account,
154 "credit": diff,
155 "cost_center": cost_center or None,
156 "remarks": "Adjustment Accounting Entry for Stock",
157 }),
158 ])
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530159
Nabin Haitd4741942013-08-06 15:57:25 +0530160 if gl_entries:
Rushabh Mehta1f847992013-12-12 19:12:19 +0530161 from erpnext.accounts.general_ledger import make_gl_entries
Nabin Haitd4741942013-08-06 15:57:25 +0530162 make_gl_entries(gl_entries)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530163
Nabin Hait27994c22013-08-26 16:53:30 +0530164 def check_expense_account(self, item):
Rushabh Mehta052fe822014-04-16 19:20:11 +0530165 if not item.get("expense_account"):
Nabin Haitd3412542014-05-01 17:42:21 +0530166 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 +0530167
Anand Doshi496123a2014-06-19 19:25:19 +0530168 else:
Nabin Hait00778c92014-06-25 19:12:24 +0530169 is_expense_account = frappe.db.get_value("Account",
170 item.get("expense_account"), "report_type")=="Profit and Loss"
Nabin Haitf40ce612015-01-02 14:36:46 +0530171 if self.doctype not in ("Purchase Receipt", "Stock Reconciliation", "Stock Entry") and not is_expense_account:
Nabin Hait00778c92014-06-25 19:12:24 +0530172 frappe.throw(_("Expense / Difference account ({0}) must be a 'Profit or Loss' account")
173 .format(item.get("expense_account")))
Anand Doshi496123a2014-06-19 19:25:19 +0530174 if is_expense_account and not item.get("cost_center"):
175 frappe.throw(_("{0} {1}: Cost Center is mandatory for Item {2}").format(
176 _(self.doctype), self.name, item.get("item_code")))
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530177
178 def get_sl_entries(self, d, args):
Nabin Hait5288bde2014-11-03 15:08:21 +0530179 sl_dict = frappe._dict({
Nabin Hait296d6262014-05-02 17:36:13 +0530180 "item_code": d.get("item_code", None),
Nabin Haitdc82d4f2014-04-07 12:02:57 +0530181 "warehouse": d.get("warehouse", None),
Anand Doshif78d1ae2014-03-28 13:55:00 +0530182 "posting_date": self.posting_date,
183 "posting_time": self.posting_time,
184 "voucher_type": self.doctype,
185 "voucher_no": self.name,
Nabin Hait1e2f20a2013-08-02 11:42:11 +0530186 "voucher_detail_no": d.name,
Nabin Haitdc82d4f2014-04-07 12:02:57 +0530187 "actual_qty": (self.docstatus==1 and 1 or -1)*flt(d.get("stock_qty")),
Nabin Haitc865f222015-09-21 09:18:43 +0530188 "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 +0530189 "incoming_rate": 0,
Anand Doshif78d1ae2014-03-28 13:55:00 +0530190 "company": self.company,
191 "fiscal_year": self.fiscal_year,
Nabin Hait296d6262014-05-02 17:36:13 +0530192 "batch_no": cstr(d.get("batch_no")).strip(),
193 "serial_no": d.get("serial_no"),
Nabin Haitdc82d4f2014-04-07 12:02:57 +0530194 "project": d.get("project_name"),
Anand Doshif78d1ae2014-03-28 13:55:00 +0530195 "is_cancelled": self.docstatus==2 and "Yes" or "No"
Nabin Hait5288bde2014-11-03 15:08:21 +0530196 })
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530197
Nabin Hait1e2f20a2013-08-02 11:42:11 +0530198 sl_dict.update(args)
199 return sl_dict
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530200
Anand Doshic3997092015-04-06 19:29:16 +0530201 def make_sl_entries(self, sl_entries, is_amended=None, allow_negative_stock=False,
Nabin Hait54c865e2015-03-27 15:38:31 +0530202 via_landed_cost_voucher=False):
Rushabh Mehta1f847992013-12-12 19:12:19 +0530203 from erpnext.stock.stock_ledger import make_sl_entries
Nabin Hait54c865e2015-03-27 15:38:31 +0530204 make_sl_entries(sl_entries, is_amended, allow_negative_stock, via_landed_cost_voucher)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530205
nabinhait87f24012014-07-16 19:48:29 +0530206 def make_gl_entries_on_cancel(self):
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530207 if frappe.db.sql("""select name from `tabGL Entry` where voucher_type=%s
Anand Doshif78d1ae2014-03-28 13:55:00 +0530208 and voucher_no=%s""", (self.doctype, self.name)):
Nabin Haitbecf75d2014-03-27 17:18:29 +0530209 self.make_gl_entries()
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530210
Anand Doshia740f752014-06-25 13:31:02 +0530211 def get_serialized_items(self):
212 serialized_items = []
Nabin Haitdd38a262014-12-26 13:15:21 +0530213 item_codes = list(set([d.item_code for d in self.get("items")]))
Anand Doshia740f752014-06-25 13:31:02 +0530214 if item_codes:
215 serialized_items = frappe.db.sql_list("""select name from `tabItem`
Rushabh Mehta1e8025b2015-07-24 15:16:25 +0530216 where has_serial_no=1 and name in ({})""".format(", ".join(["%s"]*len(item_codes))),
Anand Doshia740f752014-06-25 13:31:02 +0530217 tuple(item_codes))
218
219 return serialized_items
Rushabh Mehtab16b9cd2015-08-03 16:13:33 +0530220
Nabin Hait20105d82016-01-19 18:05:28 +0530221 def get_incoming_rate_for_sales_return(self, item_code, against_document):
Nabin Hait1d218422015-07-17 15:19:02 +0530222 incoming_rate = 0.0
223 if against_document and item_code:
Anand Doshi602e8252015-11-16 19:05:46 +0530224 incoming_rate = frappe.db.sql("""select abs(stock_value_difference / actual_qty)
Nabin Hait1d218422015-07-17 15:19:02 +0530225 from `tabStock Ledger Entry`
Rushabh Mehta14a908b2015-10-15 12:28:20 +0530226 where voucher_type = %s and voucher_no = %s
Nabin Hait20105d82016-01-19 18:05:28 +0530227 and item_code = %s limit 1""",
228 (self.doctype, against_document, item_code))
Nabin Hait1d218422015-07-17 15:19:02 +0530229 incoming_rate = incoming_rate[0][0] if incoming_rate else 0.0
230
231 return incoming_rate
Rushabh Mehtab16b9cd2015-08-03 16:13:33 +0530232
Nabin Hait1f94fa22015-08-24 14:32:38 +0530233 def update_reserved_qty(self):
234 so_map = {}
235 for d in self.get("items"):
236 if d.so_detail:
237 if self.doctype == "Delivery Note" and d.against_sales_order:
238 so_map.setdefault(d.against_sales_order, []).append(d.so_detail)
239 elif self.doctype == "Sales Invoice" and d.sales_order and self.update_stock:
240 so_map.setdefault(d.sales_order, []).append(d.so_detail)
Nabin Hait453cc372015-07-29 12:21:03 +0530241
Nabin Hait1f94fa22015-08-24 14:32:38 +0530242 for so, so_item_rows in so_map.items():
243 if so and so_item_rows:
244 sales_order = frappe.get_doc("Sales Order", so)
Nabin Hait453cc372015-07-29 12:21:03 +0530245
Nabin Hait1f94fa22015-08-24 14:32:38 +0530246 if sales_order.status in ["Stopped", "Cancelled"]:
Anand Doshifa65c7b2015-08-26 19:14:16 +0530247 frappe.throw(_("{0} {1} is cancelled or stopped").format(_("Sales Order"), so),
248 frappe.InvalidStatusError)
249
Nabin Hait1f94fa22015-08-24 14:32:38 +0530250 sales_order.update_reserved_qty(so_item_rows)
Anand Doshifa65c7b2015-08-26 19:14:16 +0530251
Nabin Hait1f94fa22015-08-24 14:32:38 +0530252 def update_stock_ledger(self):
253 self.update_reserved_qty()
Anand Doshifa65c7b2015-08-26 19:14:16 +0530254
Nabin Hait1f94fa22015-08-24 14:32:38 +0530255 sl_entries = []
256 for d in self.get_item_list():
Nabin Haitc865f222015-09-21 09:18:43 +0530257 if frappe.db.get_value("Item", d.item_code, "is_stock_item") == 1 and flt(d.qty):
258 return_rate = 0
Nabin Hait1f94fa22015-08-24 14:32:38 +0530259 if cint(self.is_return) and self.return_against and self.docstatus==1:
Nabin Hait20105d82016-01-19 18:05:28 +0530260 return_rate = self.get_incoming_rate_for_sales_return(d.item_code, self.return_against)
Rushabh Mehta14a908b2015-10-15 12:28:20 +0530261
Nabin Haitc865f222015-09-21 09:18:43 +0530262 # On cancellation or if return entry submission, make stock ledger entry for
263 # target warehouse first, to update serial no values properly
Anand Doshifa65c7b2015-08-26 19:14:16 +0530264
Rushabh Mehta14a908b2015-10-15 12:28:20 +0530265 if d.warehouse and ((not cint(self.is_return) and self.docstatus==1)
Nabin Haitc865f222015-09-21 09:18:43 +0530266 or (cint(self.is_return) and self.docstatus==2)):
267 sl_entries.append(self.get_sl_entries(d, {
268 "actual_qty": -1*flt(d.qty),
269 "incoming_rate": return_rate
270 }))
Rushabh Mehta14a908b2015-10-15 12:28:20 +0530271
Nabin Haitc865f222015-09-21 09:18:43 +0530272 if d.target_warehouse:
273 target_warehouse_sle = self.get_sl_entries(d, {
274 "actual_qty": flt(d.qty),
275 "warehouse": d.target_warehouse
276 })
Rushabh Mehta14a908b2015-10-15 12:28:20 +0530277
Nabin Haitc865f222015-09-21 09:18:43 +0530278 if self.docstatus == 1:
279 if not cint(self.is_return):
280 args = frappe._dict({
281 "item_code": d.item_code,
282 "warehouse": d.warehouse,
283 "posting_date": self.posting_date,
284 "posting_time": self.posting_time,
285 "qty": -1*flt(d.qty),
286 "serial_no": d.serial_no
287 })
288 target_warehouse_sle.update({
289 "incoming_rate": get_incoming_rate(args)
290 })
291 else:
292 target_warehouse_sle.update({
293 "outgoing_rate": return_rate
294 })
295 sl_entries.append(target_warehouse_sle)
Rushabh Mehta14a908b2015-10-15 12:28:20 +0530296
297 if d.warehouse and ((not cint(self.is_return) and self.docstatus==2)
Nabin Haitc865f222015-09-21 09:18:43 +0530298 or (cint(self.is_return) and self.docstatus==1)):
299 sl_entries.append(self.get_sl_entries(d, {
300 "actual_qty": -1*flt(d.qty),
301 "incoming_rate": return_rate
302 }))
Rushabh Mehta14a908b2015-10-15 12:28:20 +0530303
Nabin Hait1f94fa22015-08-24 14:32:38 +0530304 self.make_sl_entries(sl_entries)
Saurabh2e292062015-11-18 17:03:33 +0530305
306 def validate_warehouse(self):
307 from erpnext.stock.utils import validate_warehouse_company
308
309 warehouses = list(set([d.warehouse for d in
310 self.get("items") if getattr(d, "warehouse", None)]))
311
312 for w in warehouses:
313 validate_warehouse_company(w, self.company)
Nabin Haitbdab0ee2015-12-30 19:08:11 +0530314
Anand Doshi6b71ef52016-01-06 16:32:06 +0530315 def update_billing_percentage(self, update_modified=True):
Nabin Haitbdab0ee2015-12-30 19:08:11 +0530316 self._update_percent_field({
317 "target_dt": self.doctype + " Item",
318 "target_parent_dt": self.doctype,
319 "target_parent_field": "per_billed",
320 "target_ref_field": "amount",
321 "target_field": "billed_amt",
322 "name": self.name,
Anand Doshi6b71ef52016-01-06 16:32:06 +0530323 }, update_modified)
Anand Doshia740f752014-06-25 13:31:02 +0530324
Nabin Haitadeb9762014-10-06 11:53:52 +0530325def update_gl_entries_after(posting_date, posting_time, for_warehouses=None, for_items=None,
Nabin Haitf1a07ff2014-10-15 12:23:35 +0530326 warehouse_account=None):
Nabin Haitbecf75d2014-03-27 17:18:29 +0530327 def _delete_gl_entries(voucher_type, voucher_no):
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530328 frappe.db.sql("""delete from `tabGL Entry`
Nabin Haitbecf75d2014-03-27 17:18:29 +0530329 where voucher_type=%s and voucher_no=%s""", (voucher_type, voucher_no))
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530330
Nabin Haitbecf75d2014-03-27 17:18:29 +0530331 if not warehouse_account:
332 warehouse_account = get_warehouse_account()
Nabin Haitb9e04812014-09-26 14:22:18 +0530333
334 future_stock_vouchers = get_future_stock_vouchers(posting_date, posting_time, for_warehouses, for_items)
Nabin Haitbecf75d2014-03-27 17:18:29 +0530335 gle = get_voucherwise_gl_entries(future_stock_vouchers, posting_date)
336
337 for voucher_type, voucher_no in future_stock_vouchers:
338 existing_gle = gle.get((voucher_type, voucher_no), [])
Rushabh Mehta0a0f2492014-03-31 17:27:06 +0530339 voucher_obj = frappe.get_doc(voucher_type, voucher_no)
Nabin Haitbecf75d2014-03-27 17:18:29 +0530340 expected_gle = voucher_obj.get_gl_entries(warehouse_account)
341 if expected_gle:
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530342 if not existing_gle or not compare_existing_and_expected_gle(existing_gle,
Nabin Haitbecf75d2014-03-27 17:18:29 +0530343 expected_gle):
344 _delete_gl_entries(voucher_type, voucher_no)
Anand Doshi03cf4072015-04-06 19:38:13 +0530345 voucher_obj.make_gl_entries(repost_future_gle=False)
Nabin Haitbecf75d2014-03-27 17:18:29 +0530346 else:
347 _delete_gl_entries(voucher_type, voucher_no)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530348
Nabin Haitbecf75d2014-03-27 17:18:29 +0530349def compare_existing_and_expected_gle(existing_gle, expected_gle):
350 matched = True
351 for entry in expected_gle:
352 for e in existing_gle:
353 if entry.account==e.account and entry.against_account==e.against_account \
Nabin Hait7778b482015-01-07 15:44:35 +0530354 and (not entry.cost_center or not e.cost_center or entry.cost_center==e.cost_center) \
Nabin Haitbecf75d2014-03-27 17:18:29 +0530355 and (entry.debit != e.debit or entry.credit != e.credit):
356 matched = False
357 break
358 return matched
359
Nabin Haitb9e04812014-09-26 14:22:18 +0530360def get_future_stock_vouchers(posting_date, posting_time, for_warehouses=None, for_items=None):
Nabin Haitbecf75d2014-03-27 17:18:29 +0530361 future_stock_vouchers = []
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530362
Anand Doshi913c51b2014-08-27 22:09:03 +0530363 values = []
Nabin Haitbecf75d2014-03-27 17:18:29 +0530364 condition = ""
365 if for_items:
Anand Doshi913c51b2014-08-27 22:09:03 +0530366 condition += " and item_code in ({})".format(", ".join(["%s"] * len(for_items)))
367 values += for_items
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530368
Nabin Haitb9e04812014-09-26 14:22:18 +0530369 if for_warehouses:
370 condition += " and warehouse in ({})".format(", ".join(["%s"] * len(for_warehouses)))
371 values += for_warehouses
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530372
373 for d in frappe.db.sql("""select distinct sle.voucher_type, sle.voucher_no
Nabin Haitbecf75d2014-03-27 17:18:29 +0530374 from `tabStock Ledger Entry` sle
Anand Doshi913c51b2014-08-27 22:09:03 +0530375 where timestamp(sle.posting_date, sle.posting_time) >= timestamp(%s, %s) {condition}
376 order by timestamp(sle.posting_date, sle.posting_time) asc, name asc""".format(condition=condition),
377 tuple([posting_date, posting_time] + values), as_dict=True):
Nabin Haitbecf75d2014-03-27 17:18:29 +0530378 future_stock_vouchers.append([d.voucher_type, d.voucher_no])
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530379
Nabin Haitbecf75d2014-03-27 17:18:29 +0530380 return future_stock_vouchers
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530381
Nabin Haitbecf75d2014-03-27 17:18:29 +0530382def get_voucherwise_gl_entries(future_stock_vouchers, posting_date):
383 gl_entries = {}
384 if future_stock_vouchers:
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530385 for d in frappe.db.sql("""select * from `tabGL Entry`
386 where posting_date >= %s and voucher_no in (%s)""" %
387 ('%s', ', '.join(['%s']*len(future_stock_vouchers))),
Nabin Haitbecf75d2014-03-27 17:18:29 +0530388 tuple([posting_date] + [d[1] for d in future_stock_vouchers]), as_dict=1):
389 gl_entries.setdefault((d.voucher_type, d.voucher_no), []).append(d)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530390
Nabin Haitbecf75d2014-03-27 17:18:29 +0530391 return gl_entries
392
393def get_warehouse_account():
Nabin Hait46bcbaf2015-08-19 13:49:10 +0530394 warehouse_account = frappe._dict()
Rushabh Mehta14a908b2015-10-15 12:28:20 +0530395
Nabin Hait6e439a52015-08-28 19:24:22 +0530396 for d in frappe.db.sql("""select warehouse, name, account_currency from tabAccount
Anand Doshi602e8252015-11-16 19:05:46 +0530397 where account_type = 'Warehouse' and (warehouse is not null and warehouse != '')""", as_dict=1):
Nabin Hait46bcbaf2015-08-19 13:49:10 +0530398 warehouse_account.setdefault(d.warehouse, d)
Anand Doshi67d6a4e2014-03-28 13:41:59 +0530399 return warehouse_account