blob: 425aadd27b714b6a5d55f188767350a32e1a5995 [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 Haitd4741942013-08-06 15:57:25 +05309
Rushabh Mehta1f847992013-12-12 19:12:19 +053010from erpnext.controllers.accounts_controller import AccountsController
Nabin Haitadeb9762014-10-06 11:53:52 +053011from erpnext.accounts.general_ledger import make_gl_entries, delete_gl_entries, process_gl_map
Nabin Hait453cc372015-07-29 12:21:03 +053012from erpnext.stock.utils import update_bin
13
Nabin Haitc3afb252013-03-19 12:01:24 +053014
15class StockController(AccountsController):
Nabin Haitbecf75d2014-03-27 17:18:29 +053016 def make_gl_entries(self, repost_future_gle=True):
Anand Doshif78d1ae2014-03-28 13:55:00 +053017 if self.docstatus == 2:
18 delete_gl_entries(voucher_type=self.doctype, voucher_no=self.name)
Anand Doshi2ce39cf2014-04-07 18:51:58 +053019
Rushabh Mehta793ba6b2014-02-14 15:47:51 +053020 if cint(frappe.defaults.get_global_default("auto_accounting_for_stock")):
Nabin Haitb9e04812014-09-26 14:22:18 +053021 warehouse_account = get_warehouse_account()
Anand Doshi2ce39cf2014-04-07 18:51:58 +053022
Anand Doshif78d1ae2014-03-28 13:55:00 +053023 if self.docstatus==1:
Nabin Haite83069c2013-11-14 18:40:08 +053024 gl_entries = self.get_gl_entries(warehouse_account)
Nabin Hait145e5e22013-10-22 23:51:41 +053025 make_gl_entries(gl_entries)
26
Nabin Haitbecf75d2014-03-27 17:18:29 +053027 if repost_future_gle:
Nabin Haitb9e04812014-09-26 14:22:18 +053028 items, warehouses = self.get_items_and_warehouses()
Nabin Haitadeb9762014-10-06 11:53:52 +053029 update_gl_entries_after(self.posting_date, self.posting_time, warehouses, items,
Nabin Haitf1a07ff2014-10-15 12:23:35 +053030 warehouse_account)
Anand Doshi2ce39cf2014-04-07 18:51:58 +053031
Nabin Haite83069c2013-11-14 18:40:08 +053032 def get_gl_entries(self, warehouse_account=None, default_expense_account=None,
Nabin Hait142007a2013-09-17 15:15:16 +053033 default_cost_center=None):
Nabin Haitadeb9762014-10-06 11:53:52 +053034
Nabin Hait142007a2013-09-17 15:15:16 +053035 if not warehouse_account:
Nabin Haitbecf75d2014-03-27 17:18:29 +053036 warehouse_account = get_warehouse_account()
Anand Doshi2ce39cf2014-04-07 18:51:58 +053037
Anand Doshide1a97d2014-04-17 11:37:46 +053038 sle_map = self.get_stock_ledger_details()
39 voucher_details = self.get_voucher_details(default_expense_account, default_cost_center, sle_map)
Anand Doshi2ce39cf2014-04-07 18:51:58 +053040
Nabin Hait2e296fa2013-08-28 18:53:11 +053041 gl_list = []
Nabin Hait7a75e102013-09-17 10:21:20 +053042 warehouse_with_no_account = []
Nabin Hait2e296fa2013-08-28 18:53:11 +053043 for detail in voucher_details:
Anand Doshide1a97d2014-04-17 11:37:46 +053044 sle_list = sle_map.get(detail.name)
Nabin Hait2e296fa2013-08-28 18:53:11 +053045 if sle_list:
46 for sle in sle_list:
47 if warehouse_account.get(sle.warehouse):
Nabin Hait2e296fa2013-08-28 18:53:11 +053048 # from warehouse account
Rushabh Mehta052fe822014-04-16 19:20:11 +053049
Rushabh Mehtac38fc712014-04-16 17:21:25 +053050 self.check_expense_account(detail)
Nabin Hait46bcbaf2015-08-19 13:49:10 +053051
Nabin Hait2e296fa2013-08-28 18:53:11 +053052 gl_list.append(self.get_gl_dict({
Nabin Hait46bcbaf2015-08-19 13:49:10 +053053 "account": warehouse_account[sle.warehouse]["name"],
Nabin Hait2e296fa2013-08-28 18:53:11 +053054 "against": detail.expense_account,
55 "cost_center": detail.cost_center,
Nabin Haitdc82d4f2014-04-07 12:02:57 +053056 "remarks": self.get("remarks") or "Accounting Entry for Stock",
Nabin Hait46bcbaf2015-08-19 13:49:10 +053057 "debit": flt(sle.stock_value_difference, 2),
58 }, warehouse_account[sle.warehouse]["currency"]))
Nabin Hait27994c22013-08-26 16:53:30 +053059
Nabin Hait46bcbaf2015-08-19 13:49:10 +053060 # to target warehouse / expense account
Nabin Hait2e296fa2013-08-28 18:53:11 +053061 gl_list.append(self.get_gl_dict({
62 "account": detail.expense_account,
Nabin Hait46bcbaf2015-08-19 13:49:10 +053063 "against": warehouse_account[sle.warehouse]["name"],
Nabin Hait2e296fa2013-08-28 18:53:11 +053064 "cost_center": detail.cost_center,
Nabin Haitdc82d4f2014-04-07 12:02:57 +053065 "remarks": self.get("remarks") or "Accounting Entry for Stock",
Nabin Hait46bcbaf2015-08-19 13:49:10 +053066 "credit": flt(sle.stock_value_difference, 2),
Nabin Hait2e296fa2013-08-28 18:53:11 +053067 }))
Nabin Hait7a75e102013-09-17 10:21:20 +053068 elif sle.warehouse not in warehouse_with_no_account:
69 warehouse_with_no_account.append(sle.warehouse)
Anand Doshi2ce39cf2014-04-07 18:51:58 +053070
71 if warehouse_with_no_account:
Rushabh Mehta9f0d6252014-04-14 19:20:45 +053072 msgprint(_("No accounting entries for the following warehouses") + ": \n" +
Nabin Hait7a75e102013-09-17 10:21:20 +053073 "\n".join(warehouse_with_no_account))
Anand Doshi2ce39cf2014-04-07 18:51:58 +053074
Nabin Hait2e296fa2013-08-28 18:53:11 +053075 return process_gl_map(gl_list)
Anand Doshi2ce39cf2014-04-07 18:51:58 +053076
Anand Doshide1a97d2014-04-17 11:37:46 +053077 def get_voucher_details(self, default_expense_account, default_cost_center, sle_map):
78 if self.doctype == "Stock Reconciliation":
79 return [frappe._dict({ "name": voucher_detail_no, "expense_account": default_expense_account,
80 "cost_center": default_cost_center }) for voucher_detail_no, sle in sle_map.items()]
81 else:
Nabin Haitdd38a262014-12-26 13:15:21 +053082 details = self.get("items")
Anand Doshi094610d2014-04-16 19:56:53 +053083
Anand Doshide1a97d2014-04-17 11:37:46 +053084 if default_expense_account or default_cost_center:
85 for d in details:
86 if default_expense_account and not d.get("expense_account"):
87 d.expense_account = default_expense_account
88 if default_cost_center and not d.get("cost_center"):
89 d.cost_center = default_cost_center
Anand Doshi2ce39cf2014-04-07 18:51:58 +053090
Anand Doshide1a97d2014-04-17 11:37:46 +053091 return details
Anand Doshi2ce39cf2014-04-07 18:51:58 +053092
Nabin Haitb9e04812014-09-26 14:22:18 +053093 def get_items_and_warehouses(self):
Nabin Haitbecf75d2014-03-27 17:18:29 +053094 items, warehouses = [], []
Anand Doshi2ce39cf2014-04-07 18:51:58 +053095
Nabin Haitdd38a262014-12-26 13:15:21 +053096 if hasattr(self, "items"):
97 item_doclist = self.get("items")
Anand Doshif78d1ae2014-03-28 13:55:00 +053098 elif self.doctype == "Stock Reconciliation":
Nabin Haitbecf75d2014-03-27 17:18:29 +053099 import json
100 item_doclist = []
Anand Doshif78d1ae2014-03-28 13:55:00 +0530101 data = json.loads(self.reconciliation_json)
Nabin Haitbecf75d2014-03-27 17:18:29 +0530102 for row in data[data.index(self.head_row)+1:]:
103 d = frappe._dict(zip(["item_code", "warehouse", "qty", "valuation_rate"], row))
104 item_doclist.append(d)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530105
Nabin Haitbecf75d2014-03-27 17:18:29 +0530106 if item_doclist:
107 for d in item_doclist:
108 if d.item_code and d.item_code not in items:
109 items.append(d.item_code)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530110
Nabin Haitdc82d4f2014-04-07 12:02:57 +0530111 if d.get("warehouse") and d.warehouse not in warehouses:
Nabin Haitbecf75d2014-03-27 17:18:29 +0530112 warehouses.append(d.warehouse)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530113
Nabin Haitdc82d4f2014-04-07 12:02:57 +0530114 if self.doctype == "Stock Entry":
115 if d.get("s_warehouse") and d.s_warehouse not in warehouses:
116 warehouses.append(d.s_warehouse)
117 if d.get("t_warehouse") and d.t_warehouse not in warehouses:
118 warehouses.append(d.t_warehouse)
Nabin Haitbecf75d2014-03-27 17:18:29 +0530119
Nabin Haitb9e04812014-09-26 14:22:18 +0530120 return items, warehouses
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530121
Nabin Hait2e296fa2013-08-28 18:53:11 +0530122 def get_stock_ledger_details(self):
123 stock_ledger = {}
Nabin Hait6c48ef72014-10-08 11:00:38 +0530124 for sle in frappe.db.sql("""select warehouse, stock_value_difference,
125 voucher_detail_no, item_code, posting_date, actual_qty
Nabin Hait27994c22013-08-26 16:53:30 +0530126 from `tabStock Ledger Entry` where voucher_type=%s and voucher_no=%s""",
Anand Doshif78d1ae2014-03-28 13:55:00 +0530127 (self.doctype, self.name), as_dict=True):
Nabin Hait2e296fa2013-08-28 18:53:11 +0530128 stock_ledger.setdefault(sle.voucher_detail_no, []).append(sle)
129 return stock_ledger
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530130
Nabin Hait2e296fa2013-08-28 18:53:11 +0530131 def make_adjustment_entry(self, expected_gle, voucher_obj):
Rushabh Mehta1f847992013-12-12 19:12:19 +0530132 from erpnext.accounts.utils import get_stock_and_account_difference
Nabin Hait27994c22013-08-26 16:53:30 +0530133 account_list = [d.account for d in expected_gle]
134 acc_diff = get_stock_and_account_difference(account_list, expected_gle[0].posting_date)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530135
Nabin Hait27994c22013-08-26 16:53:30 +0530136 cost_center = self.get_company_default("cost_center")
137 stock_adjustment_account = self.get_company_default("stock_adjustment_account")
138
Nabin Haitd4741942013-08-06 15:57:25 +0530139 gl_entries = []
140 for account, diff in acc_diff.items():
141 if diff:
Nabin Hait27994c22013-08-26 16:53:30 +0530142 gl_entries.append([
143 # stock in hand account
Nabin Hait2e296fa2013-08-28 18:53:11 +0530144 voucher_obj.get_gl_dict({
Nabin Hait27994c22013-08-26 16:53:30 +0530145 "account": account,
146 "against": stock_adjustment_account,
147 "debit": diff,
148 "remarks": "Adjustment Accounting Entry for Stock",
149 }),
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530150
Nabin Hait27994c22013-08-26 16:53:30 +0530151 # account against stock in hand
Nabin Hait2e296fa2013-08-28 18:53:11 +0530152 voucher_obj.get_gl_dict({
Nabin Hait27994c22013-08-26 16:53:30 +0530153 "account": stock_adjustment_account,
154 "against": account,
155 "credit": diff,
156 "cost_center": cost_center or None,
157 "remarks": "Adjustment Accounting Entry for Stock",
158 }),
159 ])
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530160
Nabin Haitd4741942013-08-06 15:57:25 +0530161 if gl_entries:
Rushabh Mehta1f847992013-12-12 19:12:19 +0530162 from erpnext.accounts.general_ledger import make_gl_entries
Nabin Haitd4741942013-08-06 15:57:25 +0530163 make_gl_entries(gl_entries)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530164
Nabin Hait27994c22013-08-26 16:53:30 +0530165 def check_expense_account(self, item):
Rushabh Mehta052fe822014-04-16 19:20:11 +0530166 if not item.get("expense_account"):
Nabin Haitd3412542014-05-01 17:42:21 +0530167 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 +0530168
Anand Doshi496123a2014-06-19 19:25:19 +0530169 else:
Nabin Hait00778c92014-06-25 19:12:24 +0530170 is_expense_account = frappe.db.get_value("Account",
171 item.get("expense_account"), "report_type")=="Profit and Loss"
Nabin Haitf40ce612015-01-02 14:36:46 +0530172 if self.doctype not in ("Purchase Receipt", "Stock Reconciliation", "Stock Entry") and not is_expense_account:
Nabin Hait00778c92014-06-25 19:12:24 +0530173 frappe.throw(_("Expense / Difference account ({0}) must be a 'Profit or Loss' account")
174 .format(item.get("expense_account")))
Anand Doshi496123a2014-06-19 19:25:19 +0530175 if is_expense_account and not item.get("cost_center"):
176 frappe.throw(_("{0} {1}: Cost Center is mandatory for Item {2}").format(
177 _(self.doctype), self.name, item.get("item_code")))
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530178
179 def get_sl_entries(self, d, args):
Nabin Hait5288bde2014-11-03 15:08:21 +0530180 sl_dict = frappe._dict({
Nabin Hait296d6262014-05-02 17:36:13 +0530181 "item_code": d.get("item_code", None),
Nabin Haitdc82d4f2014-04-07 12:02:57 +0530182 "warehouse": d.get("warehouse", None),
Anand Doshif78d1ae2014-03-28 13:55:00 +0530183 "posting_date": self.posting_date,
184 "posting_time": self.posting_time,
185 "voucher_type": self.doctype,
186 "voucher_no": self.name,
Nabin Hait1e2f20a2013-08-02 11:42:11 +0530187 "voucher_detail_no": d.name,
Nabin Haitdc82d4f2014-04-07 12:02:57 +0530188 "actual_qty": (self.docstatus==1 and 1 or -1)*flt(d.get("stock_qty")),
Nabin Hait296d6262014-05-02 17:36:13 +0530189 "stock_uom": d.get("stock_uom"),
Nabin Hait1e2f20a2013-08-02 11:42:11 +0530190 "incoming_rate": 0,
Anand Doshif78d1ae2014-03-28 13:55:00 +0530191 "company": self.company,
192 "fiscal_year": self.fiscal_year,
Nabin Hait296d6262014-05-02 17:36:13 +0530193 "batch_no": cstr(d.get("batch_no")).strip(),
194 "serial_no": d.get("serial_no"),
Nabin Haitdc82d4f2014-04-07 12:02:57 +0530195 "project": d.get("project_name"),
Anand Doshif78d1ae2014-03-28 13:55:00 +0530196 "is_cancelled": self.docstatus==2 and "Yes" or "No"
Nabin Hait5288bde2014-11-03 15:08:21 +0530197 })
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530198
Nabin Hait1e2f20a2013-08-02 11:42:11 +0530199 sl_dict.update(args)
200 return sl_dict
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530201
Anand Doshic3997092015-04-06 19:29:16 +0530202 def make_sl_entries(self, sl_entries, is_amended=None, allow_negative_stock=False,
Nabin Hait54c865e2015-03-27 15:38:31 +0530203 via_landed_cost_voucher=False):
Rushabh Mehta1f847992013-12-12 19:12:19 +0530204 from erpnext.stock.stock_ledger import make_sl_entries
Nabin Hait54c865e2015-03-27 15:38:31 +0530205 make_sl_entries(sl_entries, is_amended, allow_negative_stock, via_landed_cost_voucher)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530206
nabinhait87f24012014-07-16 19:48:29 +0530207 def make_gl_entries_on_cancel(self):
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530208 if frappe.db.sql("""select name from `tabGL Entry` where voucher_type=%s
Anand Doshif78d1ae2014-03-28 13:55:00 +0530209 and voucher_no=%s""", (self.doctype, self.name)):
Nabin Haitbecf75d2014-03-27 17:18:29 +0530210 self.make_gl_entries()
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530211
Anand Doshia740f752014-06-25 13:31:02 +0530212 def get_serialized_items(self):
213 serialized_items = []
Nabin Haitdd38a262014-12-26 13:15:21 +0530214 item_codes = list(set([d.item_code for d in self.get("items")]))
Anand Doshia740f752014-06-25 13:31:02 +0530215 if item_codes:
216 serialized_items = frappe.db.sql_list("""select name from `tabItem`
Rushabh Mehta1e8025b2015-07-24 15:16:25 +0530217 where has_serial_no=1 and name in ({})""".format(", ".join(["%s"]*len(item_codes))),
Anand Doshia740f752014-06-25 13:31:02 +0530218 tuple(item_codes))
219
220 return serialized_items
Rushabh Mehtab16b9cd2015-08-03 16:13:33 +0530221
Nabin Hait1d218422015-07-17 15:19:02 +0530222 def get_incoming_rate_for_sales_return(self, item_code, against_document):
223 incoming_rate = 0.0
224 if against_document and item_code:
225 incoming_rate = frappe.db.sql("""select abs(ifnull(stock_value_difference, 0) / actual_qty)
226 from `tabStock Ledger Entry`
227 where voucher_type = %s and voucher_no = %s and item_code = %s limit 1""",
228 (self.doctype, against_document, item_code))
229 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 Hait453cc372015-07-29 12:21:03 +0530233 def update_reserved_qty(self, d):
234 if d['reserved_qty'] < 0 :
235 # Reduce reserved qty from reserved warehouse mentioned in so
236 if not d["reserved_warehouse"]:
Rushabh Mehtab16b9cd2015-08-03 16:13:33 +0530237 frappe.throw(_("Delivery Warehouse is missing in Sales Order"))
Nabin Hait453cc372015-07-29 12:21:03 +0530238
239 args = {
240 "item_code": d['item_code'],
241 "warehouse": d["reserved_warehouse"],
242 "voucher_type": self.doctype,
243 "voucher_no": self.name,
244 "reserved_qty": (self.docstatus==1 and 1 or -1)*flt(d['reserved_qty']),
245 "posting_date": self.posting_date,
246 "is_amended": self.amended_from and 'Yes' or 'No'
247 }
248 update_bin(args)
Anand Doshia740f752014-06-25 13:31:02 +0530249
Nabin Haitadeb9762014-10-06 11:53:52 +0530250def update_gl_entries_after(posting_date, posting_time, for_warehouses=None, for_items=None,
Nabin Haitf1a07ff2014-10-15 12:23:35 +0530251 warehouse_account=None):
Nabin Haitbecf75d2014-03-27 17:18:29 +0530252 def _delete_gl_entries(voucher_type, voucher_no):
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530253 frappe.db.sql("""delete from `tabGL Entry`
Nabin Haitbecf75d2014-03-27 17:18:29 +0530254 where voucher_type=%s and voucher_no=%s""", (voucher_type, voucher_no))
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530255
Nabin Haitbecf75d2014-03-27 17:18:29 +0530256 if not warehouse_account:
257 warehouse_account = get_warehouse_account()
Nabin Haitb9e04812014-09-26 14:22:18 +0530258
259 future_stock_vouchers = get_future_stock_vouchers(posting_date, posting_time, for_warehouses, for_items)
Nabin Haitbecf75d2014-03-27 17:18:29 +0530260 gle = get_voucherwise_gl_entries(future_stock_vouchers, posting_date)
261
262 for voucher_type, voucher_no in future_stock_vouchers:
263 existing_gle = gle.get((voucher_type, voucher_no), [])
Rushabh Mehta0a0f2492014-03-31 17:27:06 +0530264 voucher_obj = frappe.get_doc(voucher_type, voucher_no)
Nabin Haitbecf75d2014-03-27 17:18:29 +0530265 expected_gle = voucher_obj.get_gl_entries(warehouse_account)
266 if expected_gle:
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530267 if not existing_gle or not compare_existing_and_expected_gle(existing_gle,
Nabin Haitbecf75d2014-03-27 17:18:29 +0530268 expected_gle):
269 _delete_gl_entries(voucher_type, voucher_no)
Anand Doshi03cf4072015-04-06 19:38:13 +0530270 voucher_obj.make_gl_entries(repost_future_gle=False)
Nabin Haitbecf75d2014-03-27 17:18:29 +0530271 else:
272 _delete_gl_entries(voucher_type, voucher_no)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530273
Nabin Haitbecf75d2014-03-27 17:18:29 +0530274def compare_existing_and_expected_gle(existing_gle, expected_gle):
275 matched = True
276 for entry in expected_gle:
277 for e in existing_gle:
278 if entry.account==e.account and entry.against_account==e.against_account \
Nabin Hait7778b482015-01-07 15:44:35 +0530279 and (not entry.cost_center or not e.cost_center or entry.cost_center==e.cost_center) \
Nabin Haitbecf75d2014-03-27 17:18:29 +0530280 and (entry.debit != e.debit or entry.credit != e.credit):
281 matched = False
282 break
283 return matched
284
Nabin Haitb9e04812014-09-26 14:22:18 +0530285def get_future_stock_vouchers(posting_date, posting_time, for_warehouses=None, for_items=None):
Nabin Haitbecf75d2014-03-27 17:18:29 +0530286 future_stock_vouchers = []
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530287
Anand Doshi913c51b2014-08-27 22:09:03 +0530288 values = []
Nabin Haitbecf75d2014-03-27 17:18:29 +0530289 condition = ""
290 if for_items:
Anand Doshi913c51b2014-08-27 22:09:03 +0530291 condition += " and item_code in ({})".format(", ".join(["%s"] * len(for_items)))
292 values += for_items
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530293
Nabin Haitb9e04812014-09-26 14:22:18 +0530294 if for_warehouses:
295 condition += " and warehouse in ({})".format(", ".join(["%s"] * len(for_warehouses)))
296 values += for_warehouses
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530297
298 for d in frappe.db.sql("""select distinct sle.voucher_type, sle.voucher_no
Nabin Haitbecf75d2014-03-27 17:18:29 +0530299 from `tabStock Ledger Entry` sle
Anand Doshi913c51b2014-08-27 22:09:03 +0530300 where timestamp(sle.posting_date, sle.posting_time) >= timestamp(%s, %s) {condition}
301 order by timestamp(sle.posting_date, sle.posting_time) asc, name asc""".format(condition=condition),
302 tuple([posting_date, posting_time] + values), as_dict=True):
Nabin Haitbecf75d2014-03-27 17:18:29 +0530303 future_stock_vouchers.append([d.voucher_type, d.voucher_no])
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530304
Nabin Haitbecf75d2014-03-27 17:18:29 +0530305 return future_stock_vouchers
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530306
Nabin Haitbecf75d2014-03-27 17:18:29 +0530307def get_voucherwise_gl_entries(future_stock_vouchers, posting_date):
308 gl_entries = {}
309 if future_stock_vouchers:
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530310 for d in frappe.db.sql("""select * from `tabGL Entry`
311 where posting_date >= %s and voucher_no in (%s)""" %
312 ('%s', ', '.join(['%s']*len(future_stock_vouchers))),
Nabin Haitbecf75d2014-03-27 17:18:29 +0530313 tuple([posting_date] + [d[1] for d in future_stock_vouchers]), as_dict=1):
314 gl_entries.setdefault((d.voucher_type, d.voucher_no), []).append(d)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530315
Nabin Haitbecf75d2014-03-27 17:18:29 +0530316 return gl_entries
317
318def get_warehouse_account():
Nabin Hait46bcbaf2015-08-19 13:49:10 +0530319 warehouse_account = frappe._dict()
320
321 for d in frappe.db.sql("""select warehouse, name, currency from tabAccount
322 where account_type = 'Warehouse' and ifnull(warehouse, '') != ''""", as_dict=1):
323 warehouse_account.setdefault(d.warehouse, d)
Anand Doshi67d6a4e2014-03-28 13:41:59 +0530324 return warehouse_account