2013-08-05 09:29:54 +00:00
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
2013-03-19 06:31:24 +00:00
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
import webnotes
|
2013-08-02 06:12:11 +00:00
|
|
|
from webnotes.utils import cint, flt, cstr
|
2013-08-06 10:27:25 +00:00
|
|
|
from webnotes import msgprint, _
|
2013-03-29 11:12:33 +00:00
|
|
|
import webnotes.defaults
|
2013-08-06 10:27:25 +00:00
|
|
|
|
2013-03-19 06:31:24 +00:00
|
|
|
from controllers.accounts_controller import AccountsController
|
|
|
|
|
|
|
|
class StockController(AccountsController):
|
2013-08-06 10:27:25 +00:00
|
|
|
def get_gl_entries_for_stock(self, against_stock_account, amount, warehouse=None,
|
|
|
|
stock_in_hand_account=None, cost_center=None):
|
|
|
|
if not stock_in_hand_account and warehouse:
|
|
|
|
stock_in_hand_account = webnotes.conn.get_value("Warehouse", warehouse, "account")
|
|
|
|
|
|
|
|
if amount:
|
|
|
|
gl_entries = [
|
2013-03-19 06:31:24 +00:00
|
|
|
# stock in hand account
|
|
|
|
self.get_gl_dict({
|
2013-08-06 10:27:25 +00:00
|
|
|
"account": stock_in_hand_account,
|
2013-03-19 06:31:24 +00:00
|
|
|
"against": against_stock_account,
|
|
|
|
"debit": amount,
|
|
|
|
"remarks": self.doc.remarks or "Accounting Entry for Stock",
|
|
|
|
}, self.doc.docstatus == 2),
|
|
|
|
|
|
|
|
# account against stock in hand
|
|
|
|
self.get_gl_dict({
|
|
|
|
"account": against_stock_account,
|
2013-08-06 10:27:25 +00:00
|
|
|
"against": stock_in_hand_account,
|
2013-03-19 06:31:24 +00:00
|
|
|
"credit": amount,
|
|
|
|
"cost_center": cost_center or None,
|
|
|
|
"remarks": self.doc.remarks or "Accounting Entry for Stock",
|
|
|
|
}, self.doc.docstatus == 2),
|
|
|
|
]
|
|
|
|
|
2013-08-06 10:27:25 +00:00
|
|
|
return gl_entries
|
2013-08-02 06:12:11 +00:00
|
|
|
|
2013-08-06 10:27:25 +00:00
|
|
|
def sync_stock_account_balance(self, warehouse_list, cost_center=None, posting_date=None):
|
|
|
|
from accounts.utils import get_stock_and_account_difference
|
|
|
|
acc_diff = get_stock_and_account_difference(warehouse_list)
|
|
|
|
if not cost_center:
|
|
|
|
cost_center = self.get_company_default("cost_center")
|
|
|
|
gl_entries = []
|
|
|
|
for account, diff in acc_diff.items():
|
|
|
|
if diff:
|
|
|
|
stock_adjustment_account = self.get_company_default("stock_adjustment_account")
|
|
|
|
gl_entries += self.get_gl_entries_for_stock(stock_adjustment_account, diff,
|
|
|
|
stock_in_hand_account=account, cost_center=cost_center)
|
|
|
|
|
|
|
|
if gl_entries:
|
|
|
|
from accounts.general_ledger import make_gl_entries
|
|
|
|
|
|
|
|
if posting_date:
|
|
|
|
for entries in gl_entries:
|
|
|
|
entries["posting_date"] = posting_date
|
2013-08-07 11:30:01 +00:00
|
|
|
|
2013-08-06 10:27:25 +00:00
|
|
|
make_gl_entries(gl_entries)
|
|
|
|
|
2013-08-02 06:12:11 +00:00
|
|
|
def get_sl_entries(self, d, args):
|
|
|
|
sl_dict = {
|
|
|
|
"item_code": d.item_code,
|
|
|
|
"warehouse": d.warehouse,
|
|
|
|
"posting_date": self.doc.posting_date,
|
|
|
|
"posting_time": self.doc.posting_time,
|
|
|
|
"voucher_type": self.doc.doctype,
|
|
|
|
"voucher_no": self.doc.name,
|
|
|
|
"voucher_detail_no": d.name,
|
|
|
|
"actual_qty": (self.doc.docstatus==1 and 1 or -1)*flt(d.stock_qty),
|
|
|
|
"stock_uom": d.stock_uom,
|
|
|
|
"incoming_rate": 0,
|
|
|
|
"company": self.doc.company,
|
|
|
|
"fiscal_year": self.doc.fiscal_year,
|
|
|
|
"batch_no": cstr(d.batch_no).strip(),
|
|
|
|
"serial_no": d.serial_no,
|
2013-08-19 10:47:18 +00:00
|
|
|
"project": d.project_name,
|
2013-08-02 06:12:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sl_dict.update(args)
|
|
|
|
return sl_dict
|
|
|
|
|
|
|
|
def make_sl_entries(self, sl_entries, is_amended=None):
|
2013-08-19 10:47:18 +00:00
|
|
|
from stock.stock_ledger import make_sl_entries
|
|
|
|
make_sl_entries(sl_entries, is_amended)
|
|
|
|
|
|
|
|
def delete_and_repost_sle(self):
|
|
|
|
""" Delete Stock Ledger Entries related to this voucher
|
|
|
|
and repost future Stock Ledger Entries"""
|
2013-08-20 06:58:44 +00:00
|
|
|
|
|
|
|
from stock.stock_ledger import update_entries_after
|
|
|
|
|
2013-08-19 10:47:18 +00:00
|
|
|
existing_entries = webnotes.conn.sql("""select distinct item_code, warehouse
|
|
|
|
from `tabStock Ledger Entry` where voucher_type=%s and voucher_no=%s""",
|
|
|
|
(self.doc.doctype, self.doc.name), as_dict=1)
|
|
|
|
|
|
|
|
# delete entries
|
|
|
|
webnotes.conn.sql("""delete from `tabStock Ledger Entry`
|
|
|
|
where voucher_type=%s and voucher_no=%s""", (self.doc.doctype, self.doc.name))
|
|
|
|
|
|
|
|
# repost future entries for selected item_code, warehouse
|
|
|
|
for entries in existing_entries:
|
|
|
|
update_entries_after({
|
|
|
|
"item_code": entries.item_code,
|
|
|
|
"warehouse": entries.warehouse,
|
|
|
|
"posting_date": self.doc.posting_date,
|
|
|
|
"posting_time": self.doc.posting_time
|
|
|
|
})
|
2013-03-19 06:31:24 +00:00
|
|
|
|
|
|
|
def get_stock_ledger_entries(self, item_list=None, warehouse_list=None):
|
2013-08-07 13:57:30 +00:00
|
|
|
out = {}
|
|
|
|
|
2013-03-19 06:31:24 +00:00
|
|
|
if not (item_list and warehouse_list):
|
|
|
|
item_list, warehouse_list = self.get_distinct_item_warehouse()
|
|
|
|
|
|
|
|
if item_list and warehouse_list:
|
2013-08-07 13:57:30 +00:00
|
|
|
res = webnotes.conn.sql("""select item_code, voucher_type, voucher_no,
|
2013-03-19 06:31:24 +00:00
|
|
|
voucher_detail_no, posting_date, posting_time, stock_value,
|
|
|
|
warehouse, actual_qty as qty from `tabStock Ledger Entry`
|
2013-08-20 06:34:46 +00:00
|
|
|
where company = %s and item_code in (%s) and warehouse in (%s)
|
2013-03-19 06:31:24 +00:00
|
|
|
order by item_code desc, warehouse desc, posting_date desc,
|
|
|
|
posting_time desc, name desc""" %
|
|
|
|
('%s', ', '.join(['%s']*len(item_list)), ', '.join(['%s']*len(warehouse_list))),
|
|
|
|
tuple([self.doc.company] + item_list + warehouse_list), as_dict=1)
|
2013-08-07 13:57:30 +00:00
|
|
|
|
|
|
|
for r in res:
|
|
|
|
if (r.item_code, r.warehouse) not in out:
|
|
|
|
out[(r.item_code, r.warehouse)] = []
|
|
|
|
|
|
|
|
out[(r.item_code, r.warehouse)].append(r)
|
|
|
|
|
|
|
|
return out
|
2013-03-19 06:31:24 +00:00
|
|
|
|
|
|
|
def get_distinct_item_warehouse(self):
|
|
|
|
item_list = []
|
|
|
|
warehouse_list = []
|
|
|
|
for item in self.doclist.get({"parentfield": self.fname}) \
|
|
|
|
+ self.doclist.get({"parentfield": "packing_details"}):
|
|
|
|
item_list.append(item.item_code)
|
|
|
|
warehouse_list.append(item.warehouse)
|
|
|
|
|
2013-03-29 11:12:33 +00:00
|
|
|
return list(set(item_list)), list(set(warehouse_list))
|
|
|
|
|
|
|
|
def make_cancel_gl_entries(self):
|
|
|
|
if webnotes.conn.sql("""select name from `tabGL Entry` where voucher_type=%s
|
2013-08-20 06:34:46 +00:00
|
|
|
and voucher_no=%s""", (self.doc.doctype, self.doc.name)):
|
2013-03-29 11:12:33 +00:00
|
|
|
self.make_gl_entries()
|