Anand Doshi | 885e074 | 2015-03-03 14:55:30 +0530 | [diff] [blame] | 1 | # Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors |
Rushabh Mehta | e67d1fb | 2013-08-05 14:59:54 +0530 | [diff] [blame] | 2 | # License: GNU General Public License v3. See license.txt |
Nabin Hait | c3afb25 | 2013-03-19 12:01:24 +0530 | [diff] [blame] | 3 | |
| 4 | from __future__ import unicode_literals |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 5 | import frappe |
| 6 | from frappe.utils import cint, flt, cstr |
| 7 | from frappe import msgprint, _ |
| 8 | import frappe.defaults |
Valmik Jangla | d89dcf6 | 2016-03-04 14:33:49 +0530 | [diff] [blame] | 9 | from erpnext.accounts.utils import get_fiscal_year |
Nabin Hait | 1f94fa2 | 2015-08-24 14:32:38 +0530 | [diff] [blame] | 10 | from erpnext.accounts.general_ledger import make_gl_entries, delete_gl_entries, process_gl_map |
Rushabh Mehta | 1f84799 | 2013-12-12 19:12:19 +0530 | [diff] [blame] | 11 | from erpnext.controllers.accounts_controller import AccountsController |
Nabin Hait | c3afb25 | 2013-03-19 12:01:24 +0530 | [diff] [blame] | 12 | |
| 13 | class StockController(AccountsController): |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 14 | def make_gl_entries(self, repost_future_gle=True): |
Anand Doshi | f78d1ae | 2014-03-28 13:55:00 +0530 | [diff] [blame] | 15 | if self.docstatus == 2: |
| 16 | delete_gl_entries(voucher_type=self.doctype, voucher_no=self.name) |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 17 | |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 18 | if cint(frappe.defaults.get_global_default("auto_accounting_for_stock")): |
Nabin Hait | b9e0481 | 2014-09-26 14:22:18 +0530 | [diff] [blame] | 19 | warehouse_account = get_warehouse_account() |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 20 | |
Anand Doshi | f78d1ae | 2014-03-28 13:55:00 +0530 | [diff] [blame] | 21 | if self.docstatus==1: |
Nabin Hait | e83069c | 2013-11-14 18:40:08 +0530 | [diff] [blame] | 22 | gl_entries = self.get_gl_entries(warehouse_account) |
Nabin Hait | 145e5e2 | 2013-10-22 23:51:41 +0530 | [diff] [blame] | 23 | make_gl_entries(gl_entries) |
| 24 | |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 25 | if repost_future_gle: |
Nabin Hait | b9e0481 | 2014-09-26 14:22:18 +0530 | [diff] [blame] | 26 | items, warehouses = self.get_items_and_warehouses() |
Nabin Hait | adeb976 | 2014-10-06 11:53:52 +0530 | [diff] [blame] | 27 | update_gl_entries_after(self.posting_date, self.posting_time, warehouses, items, |
Nabin Hait | f1a07ff | 2014-10-15 12:23:35 +0530 | [diff] [blame] | 28 | warehouse_account) |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 29 | |
Nabin Hait | e83069c | 2013-11-14 18:40:08 +0530 | [diff] [blame] | 30 | def get_gl_entries(self, warehouse_account=None, default_expense_account=None, |
Nabin Hait | 142007a | 2013-09-17 15:15:16 +0530 | [diff] [blame] | 31 | default_cost_center=None): |
Nabin Hait | adeb976 | 2014-10-06 11:53:52 +0530 | [diff] [blame] | 32 | |
Nabin Hait | 142007a | 2013-09-17 15:15:16 +0530 | [diff] [blame] | 33 | if not warehouse_account: |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 34 | warehouse_account = get_warehouse_account() |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 35 | |
Anand Doshi | de1a97d | 2014-04-17 11:37:46 +0530 | [diff] [blame] | 36 | sle_map = self.get_stock_ledger_details() |
| 37 | voucher_details = self.get_voucher_details(default_expense_account, default_cost_center, sle_map) |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 38 | |
Nabin Hait | 2e296fa | 2013-08-28 18:53:11 +0530 | [diff] [blame] | 39 | gl_list = [] |
Nabin Hait | 7a75e10 | 2013-09-17 10:21:20 +0530 | [diff] [blame] | 40 | warehouse_with_no_account = [] |
Nabin Hait | 99d4ff4 | 2016-08-08 14:12:16 +0530 | [diff] [blame] | 41 | |
Nabin Hait | 2e296fa | 2013-08-28 18:53:11 +0530 | [diff] [blame] | 42 | for detail in voucher_details: |
Anand Doshi | de1a97d | 2014-04-17 11:37:46 +0530 | [diff] [blame] | 43 | sle_list = sle_map.get(detail.name) |
Nabin Hait | 2e296fa | 2013-08-28 18:53:11 +0530 | [diff] [blame] | 44 | if sle_list: |
| 45 | for sle in sle_list: |
| 46 | if warehouse_account.get(sle.warehouse): |
Nabin Hait | 2e296fa | 2013-08-28 18:53:11 +0530 | [diff] [blame] | 47 | # from warehouse account |
Rushabh Mehta | 052fe82 | 2014-04-16 19:20:11 +0530 | [diff] [blame] | 48 | |
Rushabh Mehta | c38fc71 | 2014-04-16 17:21:25 +0530 | [diff] [blame] | 49 | self.check_expense_account(detail) |
Rushabh Mehta | 14a908b | 2015-10-15 12:28:20 +0530 | [diff] [blame] | 50 | |
Nabin Hait | 2e296fa | 2013-08-28 18:53:11 +0530 | [diff] [blame] | 51 | gl_list.append(self.get_gl_dict({ |
Nabin Hait | 46bcbaf | 2015-08-19 13:49:10 +0530 | [diff] [blame] | 52 | "account": warehouse_account[sle.warehouse]["name"], |
Nabin Hait | 2e296fa | 2013-08-28 18:53:11 +0530 | [diff] [blame] | 53 | "against": detail.expense_account, |
| 54 | "cost_center": detail.cost_center, |
Nabin Hait | dc82d4f | 2014-04-07 12:02:57 +0530 | [diff] [blame] | 55 | "remarks": self.get("remarks") or "Accounting Entry for Stock", |
Nabin Hait | 46bcbaf | 2015-08-19 13:49:10 +0530 | [diff] [blame] | 56 | "debit": flt(sle.stock_value_difference, 2), |
Nabin Hait | 6e439a5 | 2015-08-28 19:24:22 +0530 | [diff] [blame] | 57 | }, warehouse_account[sle.warehouse]["account_currency"])) |
Nabin Hait | 27994c2 | 2013-08-26 16:53:30 +0530 | [diff] [blame] | 58 | |
Rushabh Mehta | 14a908b | 2015-10-15 12:28:20 +0530 | [diff] [blame] | 59 | # to target warehouse / expense account |
Nabin Hait | 2e296fa | 2013-08-28 18:53:11 +0530 | [diff] [blame] | 60 | gl_list.append(self.get_gl_dict({ |
| 61 | "account": detail.expense_account, |
Nabin Hait | 46bcbaf | 2015-08-19 13:49:10 +0530 | [diff] [blame] | 62 | "against": warehouse_account[sle.warehouse]["name"], |
Nabin Hait | 2e296fa | 2013-08-28 18:53:11 +0530 | [diff] [blame] | 63 | "cost_center": detail.cost_center, |
Nabin Hait | dc82d4f | 2014-04-07 12:02:57 +0530 | [diff] [blame] | 64 | "remarks": self.get("remarks") or "Accounting Entry for Stock", |
Nabin Hait | 46bcbaf | 2015-08-19 13:49:10 +0530 | [diff] [blame] | 65 | "credit": flt(sle.stock_value_difference, 2), |
Nabin Hait | 591a5ab | 2016-05-26 17:41:39 +0530 | [diff] [blame] | 66 | "project": detail.get("project") or self.get("project") |
Nabin Hait | 2e296fa | 2013-08-28 18:53:11 +0530 | [diff] [blame] | 67 | })) |
Nabin Hait | 7a75e10 | 2013-09-17 10:21:20 +0530 | [diff] [blame] | 68 | elif sle.warehouse not in warehouse_with_no_account: |
| 69 | warehouse_with_no_account.append(sle.warehouse) |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 70 | |
| 71 | if warehouse_with_no_account: |
Nabin Hait | d662502 | 2016-10-24 18:17:57 +0530 | [diff] [blame] | 72 | for wh in warehouse_with_no_account: |
| 73 | if frappe.db.get_value("Warehouse", wh, "company"): |
| 74 | frappe.throw(_("Warehouse {0} is not linked to any account, please create/link the corresponding (Asset) account for the warehouse.").format(wh)) |
| 75 | |
Rushabh Mehta | 9f0d625 | 2014-04-14 19:20:45 +0530 | [diff] [blame] | 76 | msgprint(_("No accounting entries for the following warehouses") + ": \n" + |
Nabin Hait | 7a75e10 | 2013-09-17 10:21:20 +0530 | [diff] [blame] | 77 | "\n".join(warehouse_with_no_account)) |
Rushabh Mehta | 14a908b | 2015-10-15 12:28:20 +0530 | [diff] [blame] | 78 | |
Nabin Hait | 2e296fa | 2013-08-28 18:53:11 +0530 | [diff] [blame] | 79 | return process_gl_map(gl_list) |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 80 | |
Anand Doshi | de1a97d | 2014-04-17 11:37:46 +0530 | [diff] [blame] | 81 | def get_voucher_details(self, default_expense_account, default_cost_center, sle_map): |
| 82 | if self.doctype == "Stock Reconciliation": |
| 83 | return [frappe._dict({ "name": voucher_detail_no, "expense_account": default_expense_account, |
| 84 | "cost_center": default_cost_center }) for voucher_detail_no, sle in sle_map.items()] |
| 85 | else: |
Nabin Hait | dd38a26 | 2014-12-26 13:15:21 +0530 | [diff] [blame] | 86 | details = self.get("items") |
Anand Doshi | 094610d | 2014-04-16 19:56:53 +0530 | [diff] [blame] | 87 | |
Anand Doshi | de1a97d | 2014-04-17 11:37:46 +0530 | [diff] [blame] | 88 | if default_expense_account or default_cost_center: |
| 89 | for d in details: |
| 90 | if default_expense_account and not d.get("expense_account"): |
| 91 | d.expense_account = default_expense_account |
| 92 | if default_cost_center and not d.get("cost_center"): |
| 93 | d.cost_center = default_cost_center |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 94 | |
Anand Doshi | de1a97d | 2014-04-17 11:37:46 +0530 | [diff] [blame] | 95 | return details |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 96 | |
Nabin Hait | b9e0481 | 2014-09-26 14:22:18 +0530 | [diff] [blame] | 97 | def get_items_and_warehouses(self): |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 98 | items, warehouses = [], [] |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 99 | |
Nabin Hait | dd38a26 | 2014-12-26 13:15:21 +0530 | [diff] [blame] | 100 | if hasattr(self, "items"): |
| 101 | item_doclist = self.get("items") |
Anand Doshi | f78d1ae | 2014-03-28 13:55:00 +0530 | [diff] [blame] | 102 | elif self.doctype == "Stock Reconciliation": |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 103 | import json |
| 104 | item_doclist = [] |
Anand Doshi | f78d1ae | 2014-03-28 13:55:00 +0530 | [diff] [blame] | 105 | data = json.loads(self.reconciliation_json) |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 106 | for row in data[data.index(self.head_row)+1:]: |
| 107 | d = frappe._dict(zip(["item_code", "warehouse", "qty", "valuation_rate"], row)) |
| 108 | item_doclist.append(d) |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 109 | |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 110 | if item_doclist: |
| 111 | for d in item_doclist: |
| 112 | if d.item_code and d.item_code not in items: |
| 113 | items.append(d.item_code) |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 114 | |
Nabin Hait | dc82d4f | 2014-04-07 12:02:57 +0530 | [diff] [blame] | 115 | if d.get("warehouse") and d.warehouse not in warehouses: |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 116 | warehouses.append(d.warehouse) |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 117 | |
Nabin Hait | dc82d4f | 2014-04-07 12:02:57 +0530 | [diff] [blame] | 118 | if self.doctype == "Stock Entry": |
| 119 | if d.get("s_warehouse") and d.s_warehouse not in warehouses: |
| 120 | warehouses.append(d.s_warehouse) |
| 121 | if d.get("t_warehouse") and d.t_warehouse not in warehouses: |
| 122 | warehouses.append(d.t_warehouse) |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 123 | |
Nabin Hait | b9e0481 | 2014-09-26 14:22:18 +0530 | [diff] [blame] | 124 | return items, warehouses |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 125 | |
Nabin Hait | 2e296fa | 2013-08-28 18:53:11 +0530 | [diff] [blame] | 126 | def get_stock_ledger_details(self): |
| 127 | stock_ledger = {} |
Nabin Hait | 6c48ef7 | 2014-10-08 11:00:38 +0530 | [diff] [blame] | 128 | for sle in frappe.db.sql("""select warehouse, stock_value_difference, |
| 129 | voucher_detail_no, item_code, posting_date, actual_qty |
Nabin Hait | 27994c2 | 2013-08-26 16:53:30 +0530 | [diff] [blame] | 130 | from `tabStock Ledger Entry` where voucher_type=%s and voucher_no=%s""", |
Anand Doshi | f78d1ae | 2014-03-28 13:55:00 +0530 | [diff] [blame] | 131 | (self.doctype, self.name), as_dict=True): |
Nabin Hait | 2e296fa | 2013-08-28 18:53:11 +0530 | [diff] [blame] | 132 | stock_ledger.setdefault(sle.voucher_detail_no, []).append(sle) |
| 133 | return stock_ledger |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 134 | |
Nabin Hait | 2e296fa | 2013-08-28 18:53:11 +0530 | [diff] [blame] | 135 | def make_adjustment_entry(self, expected_gle, voucher_obj): |
Rushabh Mehta | 1f84799 | 2013-12-12 19:12:19 +0530 | [diff] [blame] | 136 | from erpnext.accounts.utils import get_stock_and_account_difference |
Nabin Hait | 27994c2 | 2013-08-26 16:53:30 +0530 | [diff] [blame] | 137 | account_list = [d.account for d in expected_gle] |
| 138 | acc_diff = get_stock_and_account_difference(account_list, expected_gle[0].posting_date) |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 139 | |
Nabin Hait | 27994c2 | 2013-08-26 16:53:30 +0530 | [diff] [blame] | 140 | cost_center = self.get_company_default("cost_center") |
| 141 | stock_adjustment_account = self.get_company_default("stock_adjustment_account") |
| 142 | |
Nabin Hait | d474194 | 2013-08-06 15:57:25 +0530 | [diff] [blame] | 143 | gl_entries = [] |
| 144 | for account, diff in acc_diff.items(): |
| 145 | if diff: |
Nabin Hait | 27994c2 | 2013-08-26 16:53:30 +0530 | [diff] [blame] | 146 | gl_entries.append([ |
| 147 | # stock in hand account |
Nabin Hait | 2e296fa | 2013-08-28 18:53:11 +0530 | [diff] [blame] | 148 | voucher_obj.get_gl_dict({ |
Nabin Hait | 27994c2 | 2013-08-26 16:53:30 +0530 | [diff] [blame] | 149 | "account": account, |
| 150 | "against": stock_adjustment_account, |
| 151 | "debit": diff, |
| 152 | "remarks": "Adjustment Accounting Entry for Stock", |
| 153 | }), |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 154 | |
Nabin Hait | 27994c2 | 2013-08-26 16:53:30 +0530 | [diff] [blame] | 155 | # account against stock in hand |
Nabin Hait | 2e296fa | 2013-08-28 18:53:11 +0530 | [diff] [blame] | 156 | voucher_obj.get_gl_dict({ |
Nabin Hait | 27994c2 | 2013-08-26 16:53:30 +0530 | [diff] [blame] | 157 | "account": stock_adjustment_account, |
| 158 | "against": account, |
| 159 | "credit": diff, |
| 160 | "cost_center": cost_center or None, |
| 161 | "remarks": "Adjustment Accounting Entry for Stock", |
| 162 | }), |
| 163 | ]) |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 164 | |
Nabin Hait | d474194 | 2013-08-06 15:57:25 +0530 | [diff] [blame] | 165 | if gl_entries: |
Rushabh Mehta | 1f84799 | 2013-12-12 19:12:19 +0530 | [diff] [blame] | 166 | from erpnext.accounts.general_ledger import make_gl_entries |
Nabin Hait | d474194 | 2013-08-06 15:57:25 +0530 | [diff] [blame] | 167 | make_gl_entries(gl_entries) |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 168 | |
Nabin Hait | 27994c2 | 2013-08-26 16:53:30 +0530 | [diff] [blame] | 169 | def check_expense_account(self, item): |
Rushabh Mehta | 052fe82 | 2014-04-16 19:20:11 +0530 | [diff] [blame] | 170 | if not item.get("expense_account"): |
Nabin Hait | d341254 | 2014-05-01 17:42:21 +0530 | [diff] [blame] | 171 | frappe.throw(_("Expense or Difference account is mandatory for Item {0} as it impacts overall stock value").format(item.item_code)) |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 172 | |
Anand Doshi | 496123a | 2014-06-19 19:25:19 +0530 | [diff] [blame] | 173 | else: |
Nabin Hait | 00778c9 | 2014-06-25 19:12:24 +0530 | [diff] [blame] | 174 | is_expense_account = frappe.db.get_value("Account", |
| 175 | item.get("expense_account"), "report_type")=="Profit and Loss" |
jof2jc | 524ebbc | 2016-02-08 23:44:55 +0700 | [diff] [blame] | 176 | if self.doctype not in ("Purchase Receipt", "Purchase Invoice", "Stock Reconciliation", "Stock Entry") and not is_expense_account: |
Nabin Hait | 00778c9 | 2014-06-25 19:12:24 +0530 | [diff] [blame] | 177 | frappe.throw(_("Expense / Difference account ({0}) must be a 'Profit or Loss' account") |
| 178 | .format(item.get("expense_account"))) |
Anand Doshi | 496123a | 2014-06-19 19:25:19 +0530 | [diff] [blame] | 179 | if is_expense_account and not item.get("cost_center"): |
| 180 | frappe.throw(_("{0} {1}: Cost Center is mandatory for Item {2}").format( |
| 181 | _(self.doctype), self.name, item.get("item_code"))) |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 182 | |
| 183 | def get_sl_entries(self, d, args): |
Nabin Hait | 5288bde | 2014-11-03 15:08:21 +0530 | [diff] [blame] | 184 | sl_dict = frappe._dict({ |
Nabin Hait | 296d626 | 2014-05-02 17:36:13 +0530 | [diff] [blame] | 185 | "item_code": d.get("item_code", None), |
Nabin Hait | dc82d4f | 2014-04-07 12:02:57 +0530 | [diff] [blame] | 186 | "warehouse": d.get("warehouse", None), |
Anand Doshi | f78d1ae | 2014-03-28 13:55:00 +0530 | [diff] [blame] | 187 | "posting_date": self.posting_date, |
| 188 | "posting_time": self.posting_time, |
Valmik Jangla | d89dcf6 | 2016-03-04 14:33:49 +0530 | [diff] [blame] | 189 | 'fiscal_year': get_fiscal_year(self.posting_date, company=self.company)[0], |
Anand Doshi | f78d1ae | 2014-03-28 13:55:00 +0530 | [diff] [blame] | 190 | "voucher_type": self.doctype, |
| 191 | "voucher_no": self.name, |
Nabin Hait | 1e2f20a | 2013-08-02 11:42:11 +0530 | [diff] [blame] | 192 | "voucher_detail_no": d.name, |
Nabin Hait | dc82d4f | 2014-04-07 12:02:57 +0530 | [diff] [blame] | 193 | "actual_qty": (self.docstatus==1 and 1 or -1)*flt(d.get("stock_qty")), |
Nabin Hait | c865f22 | 2015-09-21 09:18:43 +0530 | [diff] [blame] | 194 | "stock_uom": frappe.db.get_value("Item", args.get("item_code") or d.get("item_code"), "stock_uom"), |
Nabin Hait | 1e2f20a | 2013-08-02 11:42:11 +0530 | [diff] [blame] | 195 | "incoming_rate": 0, |
Anand Doshi | f78d1ae | 2014-03-28 13:55:00 +0530 | [diff] [blame] | 196 | "company": self.company, |
Nabin Hait | 296d626 | 2014-05-02 17:36:13 +0530 | [diff] [blame] | 197 | "batch_no": cstr(d.get("batch_no")).strip(), |
| 198 | "serial_no": d.get("serial_no"), |
Neil Trini Lasrado | 6e343e2 | 2016-03-09 17:02:59 +0530 | [diff] [blame] | 199 | "project": d.get("project"), |
Anand Doshi | f78d1ae | 2014-03-28 13:55:00 +0530 | [diff] [blame] | 200 | "is_cancelled": self.docstatus==2 and "Yes" or "No" |
Nabin Hait | 5288bde | 2014-11-03 15:08:21 +0530 | [diff] [blame] | 201 | }) |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 202 | |
Nabin Hait | 1e2f20a | 2013-08-02 11:42:11 +0530 | [diff] [blame] | 203 | sl_dict.update(args) |
| 204 | return sl_dict |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 205 | |
Anand Doshi | c399709 | 2015-04-06 19:29:16 +0530 | [diff] [blame] | 206 | def make_sl_entries(self, sl_entries, is_amended=None, allow_negative_stock=False, |
Nabin Hait | 54c865e | 2015-03-27 15:38:31 +0530 | [diff] [blame] | 207 | via_landed_cost_voucher=False): |
Rushabh Mehta | 1f84799 | 2013-12-12 19:12:19 +0530 | [diff] [blame] | 208 | from erpnext.stock.stock_ledger import make_sl_entries |
Nabin Hait | 54c865e | 2015-03-27 15:38:31 +0530 | [diff] [blame] | 209 | make_sl_entries(sl_entries, is_amended, allow_negative_stock, via_landed_cost_voucher) |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 210 | |
Nabin Hait | 3b6dc14 | 2016-08-19 16:39:33 +0530 | [diff] [blame] | 211 | def make_gl_entries_on_cancel(self, repost_future_gle=True): |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 212 | if frappe.db.sql("""select name from `tabGL Entry` where voucher_type=%s |
Anand Doshi | f78d1ae | 2014-03-28 13:55:00 +0530 | [diff] [blame] | 213 | and voucher_no=%s""", (self.doctype, self.name)): |
Nabin Hait | 3b6dc14 | 2016-08-19 16:39:33 +0530 | [diff] [blame] | 214 | self.make_gl_entries(repost_future_gle) |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 215 | |
Anand Doshi | a740f75 | 2014-06-25 13:31:02 +0530 | [diff] [blame] | 216 | def get_serialized_items(self): |
| 217 | serialized_items = [] |
Nabin Hait | dd38a26 | 2014-12-26 13:15:21 +0530 | [diff] [blame] | 218 | item_codes = list(set([d.item_code for d in self.get("items")])) |
Anand Doshi | a740f75 | 2014-06-25 13:31:02 +0530 | [diff] [blame] | 219 | if item_codes: |
| 220 | serialized_items = frappe.db.sql_list("""select name from `tabItem` |
Rushabh Mehta | 1e8025b | 2015-07-24 15:16:25 +0530 | [diff] [blame] | 221 | where has_serial_no=1 and name in ({})""".format(", ".join(["%s"]*len(item_codes))), |
Anand Doshi | a740f75 | 2014-06-25 13:31:02 +0530 | [diff] [blame] | 222 | tuple(item_codes)) |
| 223 | |
| 224 | return serialized_items |
Rushabh Mehta | b16b9cd | 2015-08-03 16:13:33 +0530 | [diff] [blame] | 225 | |
Nabin Hait | 20105d8 | 2016-01-19 18:05:28 +0530 | [diff] [blame] | 226 | def get_incoming_rate_for_sales_return(self, item_code, against_document): |
Nabin Hait | 1d21842 | 2015-07-17 15:19:02 +0530 | [diff] [blame] | 227 | incoming_rate = 0.0 |
| 228 | if against_document and item_code: |
Anand Doshi | 602e825 | 2015-11-16 19:05:46 +0530 | [diff] [blame] | 229 | incoming_rate = frappe.db.sql("""select abs(stock_value_difference / actual_qty) |
Nabin Hait | 1d21842 | 2015-07-17 15:19:02 +0530 | [diff] [blame] | 230 | from `tabStock Ledger Entry` |
Rushabh Mehta | 14a908b | 2015-10-15 12:28:20 +0530 | [diff] [blame] | 231 | where voucher_type = %s and voucher_no = %s |
Nabin Hait | 20105d8 | 2016-01-19 18:05:28 +0530 | [diff] [blame] | 232 | and item_code = %s limit 1""", |
| 233 | (self.doctype, against_document, item_code)) |
Nabin Hait | 1d21842 | 2015-07-17 15:19:02 +0530 | [diff] [blame] | 234 | incoming_rate = incoming_rate[0][0] if incoming_rate else 0.0 |
| 235 | |
| 236 | return incoming_rate |
Saurabh | 2e29206 | 2015-11-18 17:03:33 +0530 | [diff] [blame] | 237 | |
| 238 | def validate_warehouse(self): |
| 239 | from erpnext.stock.utils import validate_warehouse_company |
| 240 | |
| 241 | warehouses = list(set([d.warehouse for d in |
| 242 | self.get("items") if getattr(d, "warehouse", None)])) |
| 243 | |
| 244 | for w in warehouses: |
| 245 | validate_warehouse_company(w, self.company) |
Nabin Hait | bdab0ee | 2015-12-30 19:08:11 +0530 | [diff] [blame] | 246 | |
Anand Doshi | 6b71ef5 | 2016-01-06 16:32:06 +0530 | [diff] [blame] | 247 | def update_billing_percentage(self, update_modified=True): |
Nabin Hait | bdab0ee | 2015-12-30 19:08:11 +0530 | [diff] [blame] | 248 | self._update_percent_field({ |
| 249 | "target_dt": self.doctype + " Item", |
| 250 | "target_parent_dt": self.doctype, |
| 251 | "target_parent_field": "per_billed", |
| 252 | "target_ref_field": "amount", |
| 253 | "target_field": "billed_amt", |
| 254 | "name": self.name, |
Anand Doshi | 6b71ef5 | 2016-01-06 16:32:06 +0530 | [diff] [blame] | 255 | }, update_modified) |
Anand Doshi | a740f75 | 2014-06-25 13:31:02 +0530 | [diff] [blame] | 256 | |
Manas Solanki | cc90241 | 2016-11-10 19:15:11 +0530 | [diff] [blame] | 257 | def validate_inspection(self, inspection_type): |
| 258 | '''Checks if quality inspection is set for Items that require inspection. |
| 259 | On submit, throw an exception''' |
| 260 | for d in self.get('items'): |
| 261 | if (frappe.db.get_value("Item", d.item_code, inspection_type) |
| 262 | and not d.quality_inspection): |
| 263 | frappe.msgprint(_("Quality Inspection required for Item {0}").format(d.item_code)) |
| 264 | if self.docstatus==1: |
| 265 | raise frappe.ValidationError |
| 266 | |
| 267 | |
| 268 | |
Nabin Hait | adeb976 | 2014-10-06 11:53:52 +0530 | [diff] [blame] | 269 | def update_gl_entries_after(posting_date, posting_time, for_warehouses=None, for_items=None, |
Nabin Hait | f1a07ff | 2014-10-15 12:23:35 +0530 | [diff] [blame] | 270 | warehouse_account=None): |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 271 | def _delete_gl_entries(voucher_type, voucher_no): |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 272 | frappe.db.sql("""delete from `tabGL Entry` |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 273 | where voucher_type=%s and voucher_no=%s""", (voucher_type, voucher_no)) |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 274 | |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 275 | if not warehouse_account: |
| 276 | warehouse_account = get_warehouse_account() |
Nabin Hait | b9e0481 | 2014-09-26 14:22:18 +0530 | [diff] [blame] | 277 | |
| 278 | future_stock_vouchers = get_future_stock_vouchers(posting_date, posting_time, for_warehouses, for_items) |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 279 | gle = get_voucherwise_gl_entries(future_stock_vouchers, posting_date) |
Nabin Hait | 3b6dc14 | 2016-08-19 16:39:33 +0530 | [diff] [blame] | 280 | |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 281 | for voucher_type, voucher_no in future_stock_vouchers: |
| 282 | existing_gle = gle.get((voucher_type, voucher_no), []) |
Rushabh Mehta | 0a0f249 | 2014-03-31 17:27:06 +0530 | [diff] [blame] | 283 | voucher_obj = frappe.get_doc(voucher_type, voucher_no) |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 284 | expected_gle = voucher_obj.get_gl_entries(warehouse_account) |
| 285 | if expected_gle: |
Nabin Hait | 99d4ff4 | 2016-08-08 14:12:16 +0530 | [diff] [blame] | 286 | if not existing_gle or not compare_existing_and_expected_gle(existing_gle, expected_gle): |
| 287 | _delete_gl_entries(voucher_type, voucher_no) |
| 288 | voucher_obj.make_gl_entries(repost_future_gle=False) |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 289 | else: |
| 290 | _delete_gl_entries(voucher_type, voucher_no) |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 291 | |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 292 | def compare_existing_and_expected_gle(existing_gle, expected_gle): |
| 293 | matched = True |
| 294 | for entry in expected_gle: |
robert schouten | 6465711 | 2016-09-12 11:17:14 +0800 | [diff] [blame] | 295 | account_existed = False |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 296 | for e in existing_gle: |
robert schouten | 6465711 | 2016-09-12 11:17:14 +0800 | [diff] [blame] | 297 | if entry.account == e.account: |
| 298 | account_existed = True |
| 299 | if entry.account == e.account and entry.against_account == e.against_account \ |
| 300 | and (not entry.cost_center or not e.cost_center or entry.cost_center == e.cost_center) \ |
| 301 | and (entry.debit != e.debit or entry.credit != e.credit): |
| 302 | matched = False |
| 303 | break |
| 304 | if not account_existed: |
| 305 | matched = False |
| 306 | break |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 307 | return matched |
| 308 | |
Nabin Hait | b9e0481 | 2014-09-26 14:22:18 +0530 | [diff] [blame] | 309 | def get_future_stock_vouchers(posting_date, posting_time, for_warehouses=None, for_items=None): |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 310 | future_stock_vouchers = [] |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 311 | |
Anand Doshi | 913c51b | 2014-08-27 22:09:03 +0530 | [diff] [blame] | 312 | values = [] |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 313 | condition = "" |
| 314 | if for_items: |
Anand Doshi | 913c51b | 2014-08-27 22:09:03 +0530 | [diff] [blame] | 315 | condition += " and item_code in ({})".format(", ".join(["%s"] * len(for_items))) |
| 316 | values += for_items |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 317 | |
Nabin Hait | b9e0481 | 2014-09-26 14:22:18 +0530 | [diff] [blame] | 318 | if for_warehouses: |
| 319 | condition += " and warehouse in ({})".format(", ".join(["%s"] * len(for_warehouses))) |
| 320 | values += for_warehouses |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 321 | |
| 322 | for d in frappe.db.sql("""select distinct sle.voucher_type, sle.voucher_no |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 323 | from `tabStock Ledger Entry` sle |
Anand Doshi | 913c51b | 2014-08-27 22:09:03 +0530 | [diff] [blame] | 324 | where timestamp(sle.posting_date, sle.posting_time) >= timestamp(%s, %s) {condition} |
| 325 | order by timestamp(sle.posting_date, sle.posting_time) asc, name asc""".format(condition=condition), |
| 326 | tuple([posting_date, posting_time] + values), as_dict=True): |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 327 | future_stock_vouchers.append([d.voucher_type, d.voucher_no]) |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 328 | |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 329 | return future_stock_vouchers |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 330 | |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 331 | def get_voucherwise_gl_entries(future_stock_vouchers, posting_date): |
| 332 | gl_entries = {} |
| 333 | if future_stock_vouchers: |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 334 | for d in frappe.db.sql("""select * from `tabGL Entry` |
| 335 | where posting_date >= %s and voucher_no in (%s)""" % |
| 336 | ('%s', ', '.join(['%s']*len(future_stock_vouchers))), |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 337 | tuple([posting_date] + [d[1] for d in future_stock_vouchers]), as_dict=1): |
| 338 | gl_entries.setdefault((d.voucher_type, d.voucher_no), []).append(d) |
Anand Doshi | 2ce39cf | 2014-04-07 18:51:58 +0530 | [diff] [blame] | 339 | |
Nabin Hait | becf75d | 2014-03-27 17:18:29 +0530 | [diff] [blame] | 340 | return gl_entries |
| 341 | |
| 342 | def get_warehouse_account(): |
Nabin Hait | 46bcbaf | 2015-08-19 13:49:10 +0530 | [diff] [blame] | 343 | warehouse_account = frappe._dict() |
Rushabh Mehta | 14a908b | 2015-10-15 12:28:20 +0530 | [diff] [blame] | 344 | |
Nabin Hait | 6e439a5 | 2015-08-28 19:24:22 +0530 | [diff] [blame] | 345 | for d in frappe.db.sql("""select warehouse, name, account_currency from tabAccount |
Saurabh | 7fecb50 | 2016-06-24 13:11:29 +0530 | [diff] [blame] | 346 | where account_type = 'Stock' and (warehouse is not null and warehouse != '' |
Saurabh | 78333c7 | 2016-06-25 14:18:28 +0530 | [diff] [blame] | 347 | and is_group != 1) and is_group=0 """, as_dict=1): |
Nabin Hait | 46bcbaf | 2015-08-19 13:49:10 +0530 | [diff] [blame] | 348 | warehouse_account.setdefault(d.warehouse, d) |
Anand Doshi | 67d6a4e | 2014-03-28 13:41:59 +0530 | [diff] [blame] | 349 | return warehouse_account |