blob: 0c85aa1bba40201d0494d5e9b76435122570b388 [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
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
Nabin Haitc3afb252013-03-19 12:01:24 +053012
13class StockController(AccountsController):
Nabin Hait8af429d2016-11-16 17:21:59 +053014 def validate(self):
15 super(StockController, self).validate()
16 self.validate_inspection()
17
Nabin Haitbecf75d2014-03-27 17:18:29 +053018 def make_gl_entries(self, repost_future_gle=True):
Anand Doshif78d1ae2014-03-28 13:55:00 +053019 if self.docstatus == 2:
20 delete_gl_entries(voucher_type=self.doctype, voucher_no=self.name)
Anand Doshi2ce39cf2014-04-07 18:51:58 +053021
Rushabh Mehta793ba6b2014-02-14 15:47:51 +053022 if cint(frappe.defaults.get_global_default("auto_accounting_for_stock")):
Nabin Haitb9e04812014-09-26 14:22:18 +053023 warehouse_account = get_warehouse_account()
Anand Doshi2ce39cf2014-04-07 18:51:58 +053024
Anand Doshif78d1ae2014-03-28 13:55:00 +053025 if self.docstatus==1:
Nabin Haite83069c2013-11-14 18:40:08 +053026 gl_entries = self.get_gl_entries(warehouse_account)
Nabin Hait145e5e22013-10-22 23:51:41 +053027 make_gl_entries(gl_entries)
28
Nabin Haitbecf75d2014-03-27 17:18:29 +053029 if repost_future_gle:
Nabin Haitb9e04812014-09-26 14:22:18 +053030 items, warehouses = self.get_items_and_warehouses()
Nabin Haitadeb9762014-10-06 11:53:52 +053031 update_gl_entries_after(self.posting_date, self.posting_time, warehouses, items,
Nabin Haitf1a07ff2014-10-15 12:23:35 +053032 warehouse_account)
Anand Doshi2ce39cf2014-04-07 18:51:58 +053033
Nabin Haite83069c2013-11-14 18:40:08 +053034 def get_gl_entries(self, warehouse_account=None, default_expense_account=None,
Nabin Hait142007a2013-09-17 15:15:16 +053035 default_cost_center=None):
Nabin Haitadeb9762014-10-06 11:53:52 +053036
Nabin Hait142007a2013-09-17 15:15:16 +053037 if not warehouse_account:
Nabin Haitbecf75d2014-03-27 17:18:29 +053038 warehouse_account = get_warehouse_account()
Anand Doshi2ce39cf2014-04-07 18:51:58 +053039
Anand Doshide1a97d2014-04-17 11:37:46 +053040 sle_map = self.get_stock_ledger_details()
41 voucher_details = self.get_voucher_details(default_expense_account, default_cost_center, sle_map)
Anand Doshi2ce39cf2014-04-07 18:51:58 +053042
Nabin Hait2e296fa2013-08-28 18:53:11 +053043 gl_list = []
Nabin Hait7a75e102013-09-17 10:21:20 +053044 warehouse_with_no_account = []
Nabin Hait99d4ff42016-08-08 14:12:16 +053045
Nabin Hait2e296fa2013-08-28 18:53:11 +053046 for detail in voucher_details:
Anand Doshide1a97d2014-04-17 11:37:46 +053047 sle_list = sle_map.get(detail.name)
Nabin Hait2e296fa2013-08-28 18:53:11 +053048 if sle_list:
49 for sle in sle_list:
50 if warehouse_account.get(sle.warehouse):
Nabin Hait2e296fa2013-08-28 18:53:11 +053051 # from warehouse account
Rushabh Mehta052fe822014-04-16 19:20:11 +053052
Rushabh Mehtac38fc712014-04-16 17:21:25 +053053 self.check_expense_account(detail)
Rushabh Mehta14a908b2015-10-15 12:28:20 +053054
Nabin Hait2e296fa2013-08-28 18:53:11 +053055 gl_list.append(self.get_gl_dict({
Nabin Hait46bcbaf2015-08-19 13:49:10 +053056 "account": warehouse_account[sle.warehouse]["name"],
Nabin Hait2e296fa2013-08-28 18:53:11 +053057 "against": detail.expense_account,
58 "cost_center": detail.cost_center,
Nabin Haitdc82d4f2014-04-07 12:02:57 +053059 "remarks": self.get("remarks") or "Accounting Entry for Stock",
Nabin Hait46bcbaf2015-08-19 13:49:10 +053060 "debit": flt(sle.stock_value_difference, 2),
Nabin Hait6e439a52015-08-28 19:24:22 +053061 }, warehouse_account[sle.warehouse]["account_currency"]))
Nabin Hait27994c22013-08-26 16:53:30 +053062
Rushabh Mehta14a908b2015-10-15 12:28:20 +053063 # to target warehouse / expense account
Nabin Hait2e296fa2013-08-28 18:53:11 +053064 gl_list.append(self.get_gl_dict({
65 "account": detail.expense_account,
Nabin Hait46bcbaf2015-08-19 13:49:10 +053066 "against": warehouse_account[sle.warehouse]["name"],
Nabin Hait2e296fa2013-08-28 18:53:11 +053067 "cost_center": detail.cost_center,
Nabin Haitdc82d4f2014-04-07 12:02:57 +053068 "remarks": self.get("remarks") or "Accounting Entry for Stock",
Nabin Hait46bcbaf2015-08-19 13:49:10 +053069 "credit": flt(sle.stock_value_difference, 2),
Nabin Hait591a5ab2016-05-26 17:41:39 +053070 "project": detail.get("project") or self.get("project")
Nabin Hait2e296fa2013-08-28 18:53:11 +053071 }))
Nabin Hait7a75e102013-09-17 10:21:20 +053072 elif sle.warehouse not in warehouse_with_no_account:
73 warehouse_with_no_account.append(sle.warehouse)
Anand Doshi2ce39cf2014-04-07 18:51:58 +053074
75 if warehouse_with_no_account:
Nabin Haitd6625022016-10-24 18:17:57 +053076 for wh in warehouse_with_no_account:
77 if frappe.db.get_value("Warehouse", wh, "company"):
78 frappe.throw(_("Warehouse {0} is not linked to any account, please create/link the corresponding (Asset) account for the warehouse.").format(wh))
79
Rushabh Mehta9f0d6252014-04-14 19:20:45 +053080 msgprint(_("No accounting entries for the following warehouses") + ": \n" +
Nabin Hait7a75e102013-09-17 10:21:20 +053081 "\n".join(warehouse_with_no_account))
Rushabh Mehta14a908b2015-10-15 12:28:20 +053082
Nabin Hait2e296fa2013-08-28 18:53:11 +053083 return process_gl_map(gl_list)
Anand Doshi2ce39cf2014-04-07 18:51:58 +053084
Anand Doshide1a97d2014-04-17 11:37:46 +053085 def get_voucher_details(self, default_expense_account, default_cost_center, sle_map):
86 if self.doctype == "Stock Reconciliation":
87 return [frappe._dict({ "name": voucher_detail_no, "expense_account": default_expense_account,
88 "cost_center": default_cost_center }) for voucher_detail_no, sle in sle_map.items()]
89 else:
Nabin Haitdd38a262014-12-26 13:15:21 +053090 details = self.get("items")
Anand Doshi094610d2014-04-16 19:56:53 +053091
Anand Doshide1a97d2014-04-17 11:37:46 +053092 if default_expense_account or default_cost_center:
93 for d in details:
94 if default_expense_account and not d.get("expense_account"):
95 d.expense_account = default_expense_account
96 if default_cost_center and not d.get("cost_center"):
97 d.cost_center = default_cost_center
Anand Doshi2ce39cf2014-04-07 18:51:58 +053098
Anand Doshide1a97d2014-04-17 11:37:46 +053099 return details
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530100
Nabin Haitb9e04812014-09-26 14:22:18 +0530101 def get_items_and_warehouses(self):
Nabin Haitbecf75d2014-03-27 17:18:29 +0530102 items, warehouses = [], []
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530103
Nabin Haitdd38a262014-12-26 13:15:21 +0530104 if hasattr(self, "items"):
105 item_doclist = self.get("items")
Anand Doshif78d1ae2014-03-28 13:55:00 +0530106 elif self.doctype == "Stock Reconciliation":
Nabin Haitbecf75d2014-03-27 17:18:29 +0530107 import json
108 item_doclist = []
Anand Doshif78d1ae2014-03-28 13:55:00 +0530109 data = json.loads(self.reconciliation_json)
Nabin Haitbecf75d2014-03-27 17:18:29 +0530110 for row in data[data.index(self.head_row)+1:]:
111 d = frappe._dict(zip(["item_code", "warehouse", "qty", "valuation_rate"], row))
112 item_doclist.append(d)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530113
Nabin Haitbecf75d2014-03-27 17:18:29 +0530114 if item_doclist:
115 for d in item_doclist:
116 if d.item_code and d.item_code not in items:
117 items.append(d.item_code)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530118
Nabin Haitdc82d4f2014-04-07 12:02:57 +0530119 if d.get("warehouse") and d.warehouse not in warehouses:
Nabin Haitbecf75d2014-03-27 17:18:29 +0530120 warehouses.append(d.warehouse)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530121
Nabin Haitdc82d4f2014-04-07 12:02:57 +0530122 if self.doctype == "Stock Entry":
123 if d.get("s_warehouse") and d.s_warehouse not in warehouses:
124 warehouses.append(d.s_warehouse)
125 if d.get("t_warehouse") and d.t_warehouse not in warehouses:
126 warehouses.append(d.t_warehouse)
Nabin Haitbecf75d2014-03-27 17:18:29 +0530127
Nabin Haitb9e04812014-09-26 14:22:18 +0530128 return items, warehouses
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530129
Nabin Hait2e296fa2013-08-28 18:53:11 +0530130 def get_stock_ledger_details(self):
131 stock_ledger = {}
Nabin Hait6c48ef72014-10-08 11:00:38 +0530132 for sle in frappe.db.sql("""select warehouse, stock_value_difference,
133 voucher_detail_no, item_code, posting_date, actual_qty
Nabin Hait27994c22013-08-26 16:53:30 +0530134 from `tabStock Ledger Entry` where voucher_type=%s and voucher_no=%s""",
Anand Doshif78d1ae2014-03-28 13:55:00 +0530135 (self.doctype, self.name), as_dict=True):
Nabin Hait2e296fa2013-08-28 18:53:11 +0530136 stock_ledger.setdefault(sle.voucher_detail_no, []).append(sle)
137 return stock_ledger
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530138
Nabin Hait2e296fa2013-08-28 18:53:11 +0530139 def make_adjustment_entry(self, expected_gle, voucher_obj):
Rushabh Mehta1f847992013-12-12 19:12:19 +0530140 from erpnext.accounts.utils import get_stock_and_account_difference
Nabin Hait27994c22013-08-26 16:53:30 +0530141 account_list = [d.account for d in expected_gle]
142 acc_diff = get_stock_and_account_difference(account_list, expected_gle[0].posting_date)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530143
Nabin Hait27994c22013-08-26 16:53:30 +0530144 cost_center = self.get_company_default("cost_center")
145 stock_adjustment_account = self.get_company_default("stock_adjustment_account")
146
Nabin Haitd4741942013-08-06 15:57:25 +0530147 gl_entries = []
148 for account, diff in acc_diff.items():
149 if diff:
Nabin Hait27994c22013-08-26 16:53:30 +0530150 gl_entries.append([
151 # stock in hand account
Nabin Hait2e296fa2013-08-28 18:53:11 +0530152 voucher_obj.get_gl_dict({
Nabin Hait27994c22013-08-26 16:53:30 +0530153 "account": account,
154 "against": stock_adjustment_account,
155 "debit": diff,
156 "remarks": "Adjustment Accounting Entry for Stock",
157 }),
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530158
Nabin Hait27994c22013-08-26 16:53:30 +0530159 # account against stock in hand
Nabin Hait2e296fa2013-08-28 18:53:11 +0530160 voucher_obj.get_gl_dict({
Nabin Hait27994c22013-08-26 16:53:30 +0530161 "account": stock_adjustment_account,
162 "against": account,
163 "credit": diff,
164 "cost_center": cost_center or None,
165 "remarks": "Adjustment Accounting Entry for Stock",
166 }),
167 ])
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530168
Nabin Haitd4741942013-08-06 15:57:25 +0530169 if gl_entries:
Rushabh Mehta1f847992013-12-12 19:12:19 +0530170 from erpnext.accounts.general_ledger import make_gl_entries
Nabin Haitd4741942013-08-06 15:57:25 +0530171 make_gl_entries(gl_entries)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530172
Nabin Hait27994c22013-08-26 16:53:30 +0530173 def check_expense_account(self, item):
Rushabh Mehta052fe822014-04-16 19:20:11 +0530174 if not item.get("expense_account"):
Nabin Haitd3412542014-05-01 17:42:21 +0530175 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 +0530176
Anand Doshi496123a2014-06-19 19:25:19 +0530177 else:
Nabin Hait00778c92014-06-25 19:12:24 +0530178 is_expense_account = frappe.db.get_value("Account",
179 item.get("expense_account"), "report_type")=="Profit and Loss"
jof2jc524ebbc2016-02-08 23:44:55 +0700180 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 +0530181 frappe.throw(_("Expense / Difference account ({0}) must be a 'Profit or Loss' account")
182 .format(item.get("expense_account")))
Anand Doshi496123a2014-06-19 19:25:19 +0530183 if is_expense_account and not item.get("cost_center"):
184 frappe.throw(_("{0} {1}: Cost Center is mandatory for Item {2}").format(
185 _(self.doctype), self.name, item.get("item_code")))
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530186
187 def get_sl_entries(self, d, args):
Nabin Hait5288bde2014-11-03 15:08:21 +0530188 sl_dict = frappe._dict({
Nabin Hait296d6262014-05-02 17:36:13 +0530189 "item_code": d.get("item_code", None),
Nabin Haitdc82d4f2014-04-07 12:02:57 +0530190 "warehouse": d.get("warehouse", None),
Anand Doshif78d1ae2014-03-28 13:55:00 +0530191 "posting_date": self.posting_date,
192 "posting_time": self.posting_time,
Valmik Janglad89dcf62016-03-04 14:33:49 +0530193 'fiscal_year': get_fiscal_year(self.posting_date, company=self.company)[0],
Anand Doshif78d1ae2014-03-28 13:55:00 +0530194 "voucher_type": self.doctype,
195 "voucher_no": self.name,
Nabin Hait1e2f20a2013-08-02 11:42:11 +0530196 "voucher_detail_no": d.name,
Nabin Haitdc82d4f2014-04-07 12:02:57 +0530197 "actual_qty": (self.docstatus==1 and 1 or -1)*flt(d.get("stock_qty")),
Nabin Haitc865f222015-09-21 09:18:43 +0530198 "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 +0530199 "incoming_rate": 0,
Anand Doshif78d1ae2014-03-28 13:55:00 +0530200 "company": self.company,
Nabin Hait296d6262014-05-02 17:36:13 +0530201 "batch_no": cstr(d.get("batch_no")).strip(),
202 "serial_no": d.get("serial_no"),
Neil Trini Lasrado6e343e22016-03-09 17:02:59 +0530203 "project": d.get("project"),
Anand Doshif78d1ae2014-03-28 13:55:00 +0530204 "is_cancelled": self.docstatus==2 and "Yes" or "No"
Nabin Hait5288bde2014-11-03 15:08:21 +0530205 })
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530206
Nabin Hait1e2f20a2013-08-02 11:42:11 +0530207 sl_dict.update(args)
208 return sl_dict
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530209
Anand Doshic3997092015-04-06 19:29:16 +0530210 def make_sl_entries(self, sl_entries, is_amended=None, allow_negative_stock=False,
Nabin Hait54c865e2015-03-27 15:38:31 +0530211 via_landed_cost_voucher=False):
Rushabh Mehta1f847992013-12-12 19:12:19 +0530212 from erpnext.stock.stock_ledger import make_sl_entries
Nabin Hait54c865e2015-03-27 15:38:31 +0530213 make_sl_entries(sl_entries, is_amended, allow_negative_stock, via_landed_cost_voucher)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530214
Nabin Hait3b6dc142016-08-19 16:39:33 +0530215 def make_gl_entries_on_cancel(self, repost_future_gle=True):
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530216 if frappe.db.sql("""select name from `tabGL Entry` where voucher_type=%s
Anand Doshif78d1ae2014-03-28 13:55:00 +0530217 and voucher_no=%s""", (self.doctype, self.name)):
Nabin Hait3b6dc142016-08-19 16:39:33 +0530218 self.make_gl_entries(repost_future_gle)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530219
Anand Doshia740f752014-06-25 13:31:02 +0530220 def get_serialized_items(self):
221 serialized_items = []
Nabin Haitdd38a262014-12-26 13:15:21 +0530222 item_codes = list(set([d.item_code for d in self.get("items")]))
Anand Doshia740f752014-06-25 13:31:02 +0530223 if item_codes:
224 serialized_items = frappe.db.sql_list("""select name from `tabItem`
Rushabh Mehta1e8025b2015-07-24 15:16:25 +0530225 where has_serial_no=1 and name in ({})""".format(", ".join(["%s"]*len(item_codes))),
Anand Doshia740f752014-06-25 13:31:02 +0530226 tuple(item_codes))
227
228 return serialized_items
Rushabh Mehtab16b9cd2015-08-03 16:13:33 +0530229
Nabin Hait20105d82016-01-19 18:05:28 +0530230 def get_incoming_rate_for_sales_return(self, item_code, against_document):
Nabin Hait1d218422015-07-17 15:19:02 +0530231 incoming_rate = 0.0
232 if against_document and item_code:
Anand Doshi602e8252015-11-16 19:05:46 +0530233 incoming_rate = frappe.db.sql("""select abs(stock_value_difference / actual_qty)
Nabin Hait1d218422015-07-17 15:19:02 +0530234 from `tabStock Ledger Entry`
Rushabh Mehta14a908b2015-10-15 12:28:20 +0530235 where voucher_type = %s and voucher_no = %s
Nabin Hait20105d82016-01-19 18:05:28 +0530236 and item_code = %s limit 1""",
237 (self.doctype, against_document, item_code))
Nabin Hait1d218422015-07-17 15:19:02 +0530238 incoming_rate = incoming_rate[0][0] if incoming_rate else 0.0
239
240 return incoming_rate
Saurabh2e292062015-11-18 17:03:33 +0530241
242 def validate_warehouse(self):
243 from erpnext.stock.utils import validate_warehouse_company
244
245 warehouses = list(set([d.warehouse for d in
246 self.get("items") if getattr(d, "warehouse", None)]))
247
248 for w in warehouses:
249 validate_warehouse_company(w, self.company)
Nabin Haitbdab0ee2015-12-30 19:08:11 +0530250
Anand Doshi6b71ef52016-01-06 16:32:06 +0530251 def update_billing_percentage(self, update_modified=True):
Nabin Haitbdab0ee2015-12-30 19:08:11 +0530252 self._update_percent_field({
253 "target_dt": self.doctype + " Item",
254 "target_parent_dt": self.doctype,
255 "target_parent_field": "per_billed",
256 "target_ref_field": "amount",
257 "target_field": "billed_amt",
258 "name": self.name,
Anand Doshi6b71ef52016-01-06 16:32:06 +0530259 }, update_modified)
Anand Doshia740f752014-06-25 13:31:02 +0530260
Nabin Hait8af429d2016-11-16 17:21:59 +0530261 def validate_inspection(self):
Manas Solankicc902412016-11-10 19:15:11 +0530262 '''Checks if quality inspection is set for Items that require inspection.
263 On submit, throw an exception'''
Nabin Hait8af429d2016-11-16 17:21:59 +0530264
Manas Solanki60db98a2016-11-18 14:52:13 +0530265 inspection_required_fieldname = None
Nabin Hait8af429d2016-11-16 17:21:59 +0530266 if self.doctype in ["Purchase Receipt", "Purchase Invoice"]:
267 inspection_required_fieldname = "inspection_required_before_purchase"
268 elif self.doctype in ["Delivery Note", "Sales Invoice"]:
269 inspection_required_fieldname = "inspection_required_before_delivery"
270
271 if not inspection_required_fieldname or \
272 (self.doctype in ["Sales Invoice", "Purchase Invoice"] and not self.update_stock):
273 return
274
Manas Solankicc902412016-11-10 19:15:11 +0530275 for d in self.get('items'):
Nabin Hait8af429d2016-11-16 17:21:59 +0530276 if (frappe.db.get_value("Item", d.item_code, inspection_required_fieldname)
Manas Solankicc902412016-11-10 19:15:11 +0530277 and not d.quality_inspection):
Nabin Hait8af429d2016-11-16 17:21:59 +0530278
Manas Solankicc902412016-11-10 19:15:11 +0530279 frappe.msgprint(_("Quality Inspection required for Item {0}").format(d.item_code))
280 if self.docstatus==1:
281 raise frappe.ValidationError
282
Nabin Haitadeb9762014-10-06 11:53:52 +0530283def update_gl_entries_after(posting_date, posting_time, for_warehouses=None, for_items=None,
Nabin Haitf1a07ff2014-10-15 12:23:35 +0530284 warehouse_account=None):
Nabin Haitbecf75d2014-03-27 17:18:29 +0530285 def _delete_gl_entries(voucher_type, voucher_no):
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530286 frappe.db.sql("""delete from `tabGL Entry`
Nabin Haitbecf75d2014-03-27 17:18:29 +0530287 where voucher_type=%s and voucher_no=%s""", (voucher_type, voucher_no))
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530288
Nabin Haitbecf75d2014-03-27 17:18:29 +0530289 if not warehouse_account:
290 warehouse_account = get_warehouse_account()
Nabin Haitb9e04812014-09-26 14:22:18 +0530291
292 future_stock_vouchers = get_future_stock_vouchers(posting_date, posting_time, for_warehouses, for_items)
Nabin Haitbecf75d2014-03-27 17:18:29 +0530293 gle = get_voucherwise_gl_entries(future_stock_vouchers, posting_date)
Nabin Hait3b6dc142016-08-19 16:39:33 +0530294
Nabin Haitbecf75d2014-03-27 17:18:29 +0530295 for voucher_type, voucher_no in future_stock_vouchers:
296 existing_gle = gle.get((voucher_type, voucher_no), [])
Rushabh Mehta0a0f2492014-03-31 17:27:06 +0530297 voucher_obj = frappe.get_doc(voucher_type, voucher_no)
Nabin Haitbecf75d2014-03-27 17:18:29 +0530298 expected_gle = voucher_obj.get_gl_entries(warehouse_account)
299 if expected_gle:
Nabin Hait99d4ff42016-08-08 14:12:16 +0530300 if not existing_gle or not compare_existing_and_expected_gle(existing_gle, expected_gle):
301 _delete_gl_entries(voucher_type, voucher_no)
302 voucher_obj.make_gl_entries(repost_future_gle=False)
Nabin Haitbecf75d2014-03-27 17:18:29 +0530303 else:
304 _delete_gl_entries(voucher_type, voucher_no)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530305
Nabin Haitbecf75d2014-03-27 17:18:29 +0530306def compare_existing_and_expected_gle(existing_gle, expected_gle):
307 matched = True
308 for entry in expected_gle:
robert schouten64657112016-09-12 11:17:14 +0800309 account_existed = False
Nabin Haitbecf75d2014-03-27 17:18:29 +0530310 for e in existing_gle:
robert schouten64657112016-09-12 11:17:14 +0800311 if entry.account == e.account:
312 account_existed = True
313 if entry.account == e.account and entry.against_account == e.against_account \
314 and (not entry.cost_center or not e.cost_center or entry.cost_center == e.cost_center) \
315 and (entry.debit != e.debit or entry.credit != e.credit):
316 matched = False
317 break
318 if not account_existed:
319 matched = False
320 break
Nabin Haitbecf75d2014-03-27 17:18:29 +0530321 return matched
322
Nabin Haitb9e04812014-09-26 14:22:18 +0530323def get_future_stock_vouchers(posting_date, posting_time, for_warehouses=None, for_items=None):
Nabin Haitbecf75d2014-03-27 17:18:29 +0530324 future_stock_vouchers = []
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530325
Anand Doshi913c51b2014-08-27 22:09:03 +0530326 values = []
Nabin Haitbecf75d2014-03-27 17:18:29 +0530327 condition = ""
328 if for_items:
Anand Doshi913c51b2014-08-27 22:09:03 +0530329 condition += " and item_code in ({})".format(", ".join(["%s"] * len(for_items)))
330 values += for_items
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530331
Nabin Haitb9e04812014-09-26 14:22:18 +0530332 if for_warehouses:
333 condition += " and warehouse in ({})".format(", ".join(["%s"] * len(for_warehouses)))
334 values += for_warehouses
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530335
336 for d in frappe.db.sql("""select distinct sle.voucher_type, sle.voucher_no
Nabin Haitbecf75d2014-03-27 17:18:29 +0530337 from `tabStock Ledger Entry` sle
Anand Doshi913c51b2014-08-27 22:09:03 +0530338 where timestamp(sle.posting_date, sle.posting_time) >= timestamp(%s, %s) {condition}
339 order by timestamp(sle.posting_date, sle.posting_time) asc, name asc""".format(condition=condition),
340 tuple([posting_date, posting_time] + values), as_dict=True):
Nabin Haitbecf75d2014-03-27 17:18:29 +0530341 future_stock_vouchers.append([d.voucher_type, d.voucher_no])
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530342
Nabin Haitbecf75d2014-03-27 17:18:29 +0530343 return future_stock_vouchers
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530344
Nabin Haitbecf75d2014-03-27 17:18:29 +0530345def get_voucherwise_gl_entries(future_stock_vouchers, posting_date):
346 gl_entries = {}
347 if future_stock_vouchers:
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530348 for d in frappe.db.sql("""select * from `tabGL Entry`
349 where posting_date >= %s and voucher_no in (%s)""" %
350 ('%s', ', '.join(['%s']*len(future_stock_vouchers))),
Nabin Haitbecf75d2014-03-27 17:18:29 +0530351 tuple([posting_date] + [d[1] for d in future_stock_vouchers]), as_dict=1):
352 gl_entries.setdefault((d.voucher_type, d.voucher_no), []).append(d)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530353
Nabin Haitbecf75d2014-03-27 17:18:29 +0530354 return gl_entries
355
356def get_warehouse_account():
Nabin Hait46bcbaf2015-08-19 13:49:10 +0530357 warehouse_account = frappe._dict()
Rushabh Mehta14a908b2015-10-15 12:28:20 +0530358
Nabin Hait6e439a52015-08-28 19:24:22 +0530359 for d in frappe.db.sql("""select warehouse, name, account_currency from tabAccount
Saurabh7fecb502016-06-24 13:11:29 +0530360 where account_type = 'Stock' and (warehouse is not null and warehouse != ''
Saurabh78333c72016-06-25 14:18:28 +0530361 and is_group != 1) and is_group=0 """, as_dict=1):
Nabin Hait46bcbaf2015-08-19 13:49:10 +0530362 warehouse_account.setdefault(d.warehouse, d)
Anand Doshi67d6a4e2014-03-28 13:41:59 +0530363 return warehouse_account