2015-03-03 09:25:30 +00:00
|
|
|
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
2013-11-29 13:45:26 +00:00
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
2014-02-14 10:17:51 +00:00
|
|
|
import frappe
|
2014-09-11 08:15:27 +00:00
|
|
|
from frappe import _
|
2013-11-29 13:45:26 +00:00
|
|
|
|
|
|
|
def execute(filters=None):
|
2013-12-05 10:38:30 +00:00
|
|
|
columns = get_columns()
|
2018-04-02 18:07:33 +00:00
|
|
|
item_conditions = get_item_conditions(filters)
|
|
|
|
item_details = get_item_details(filters, item_conditions)
|
|
|
|
sl_entries = get_stock_ledger_entries(filters, item_conditions, item_details)
|
2015-07-22 13:14:47 +00:00
|
|
|
opening_row = get_opening_balance(filters, columns)
|
2017-04-20 09:51:01 +00:00
|
|
|
|
2013-12-05 10:38:30 +00:00
|
|
|
data = []
|
2017-04-20 09:51:01 +00:00
|
|
|
|
2015-07-22 13:14:47 +00:00
|
|
|
if opening_row:
|
|
|
|
data.append(opening_row)
|
|
|
|
|
2013-12-05 10:38:30 +00:00
|
|
|
for sle in sl_entries:
|
|
|
|
item_detail = item_details[sle.item_code]
|
2014-05-15 06:20:46 +00:00
|
|
|
|
|
|
|
data.append([sle.date, sle.item_code, item_detail.item_name, item_detail.item_group,
|
2014-05-29 10:12:23 +00:00
|
|
|
item_detail.brand, item_detail.description, sle.warehouse,
|
|
|
|
item_detail.stock_uom, sle.actual_qty, sle.qty_after_transaction,
|
|
|
|
(sle.incoming_rate if sle.actual_qty > 0 else 0.0),
|
|
|
|
sle.valuation_rate, sle.stock_value, sle.voucher_type, sle.voucher_no,
|
2018-03-21 12:22:41 +00:00
|
|
|
sle.batch_no, sle.serial_no, sle.project, sle.company])
|
2017-04-20 09:51:01 +00:00
|
|
|
|
2013-12-05 10:38:30 +00:00
|
|
|
return columns, data
|
2014-05-15 06:20:46 +00:00
|
|
|
|
2013-12-05 10:38:30 +00:00
|
|
|
def get_columns():
|
2017-08-04 10:45:09 +00:00
|
|
|
columns = [
|
|
|
|
_("Date") + ":Datetime:95", _("Item") + ":Link/Item:130",
|
|
|
|
_("Item Name") + "::100", _("Item Group") + ":Link/Item Group:100",
|
|
|
|
_("Brand") + ":Link/Brand:100", _("Description") + "::200",
|
|
|
|
_("Warehouse") + ":Link/Warehouse:100", _("Stock UOM") + ":Link/UOM:100",
|
|
|
|
_("Qty") + ":Float:50", _("Balance Qty") + ":Float:100",
|
|
|
|
{"label": _("Incoming Rate"), "fieldtype": "Currency", "width": 110,
|
|
|
|
"options": "Company:company:default_currency"},
|
|
|
|
{"label": _("Valuation Rate"), "fieldtype": "Currency", "width": 110,
|
|
|
|
"options": "Company:company:default_currency"},
|
|
|
|
{"label": _("Balance Value"), "fieldtype": "Currency", "width": 110,
|
|
|
|
"options": "Company:company:default_currency"},
|
|
|
|
_("Voucher Type") + "::110",
|
|
|
|
_("Voucher #") + ":Dynamic Link/" + _("Voucher Type") + ":100",
|
|
|
|
_("Batch") + ":Link/Batch:100",
|
|
|
|
_("Serial #") + ":Link/Serial No:100",
|
2018-03-21 12:22:41 +00:00
|
|
|
_("Project") + ":Link/Project:100",
|
2017-08-04 10:45:09 +00:00
|
|
|
{"label": _("Company"), "fieldtype": "Link", "width": 110,
|
|
|
|
"options": "company", "fieldname": "company"}
|
2014-09-12 06:41:38 +00:00
|
|
|
]
|
2014-05-15 06:20:46 +00:00
|
|
|
|
2017-08-04 10:45:09 +00:00
|
|
|
return columns
|
|
|
|
|
2018-04-02 18:07:33 +00:00
|
|
|
def get_stock_ledger_entries(filters, item_conditions, item_details):
|
|
|
|
item_conditions_sql = ''
|
|
|
|
if item_conditions:
|
|
|
|
items = ['"' + frappe.db.escape(i) + '"' for i in item_details.keys()]
|
|
|
|
if items:
|
|
|
|
item_conditions_sql = 'and sle.item_code in ({})'.format(', '.join(items))
|
2014-02-26 07:05:33 +00:00
|
|
|
return frappe.db.sql("""select concat_ws(" ", posting_date, posting_time) as date,
|
2014-05-29 10:12:23 +00:00
|
|
|
item_code, warehouse, actual_qty, qty_after_transaction, incoming_rate, valuation_rate,
|
2018-03-21 12:22:41 +00:00
|
|
|
stock_value, voucher_type, voucher_no, batch_no, serial_no, company, project
|
2016-06-23 07:14:06 +00:00
|
|
|
from `tabStock Ledger Entry` sle
|
2013-12-05 10:38:30 +00:00
|
|
|
where company = %(company)s and
|
2013-11-29 13:45:26 +00:00
|
|
|
posting_date between %(from_date)s and %(to_date)s
|
|
|
|
{sle_conditions}
|
2018-04-02 18:07:33 +00:00
|
|
|
{item_conditions_sql}
|
2015-07-22 13:14:47 +00:00
|
|
|
order by posting_date asc, posting_time asc, name asc"""\
|
2018-04-02 18:07:33 +00:00
|
|
|
.format(
|
|
|
|
sle_conditions=get_sle_conditions(filters),
|
|
|
|
item_conditions_sql = item_conditions_sql
|
2018-04-04 05:50:16 +00:00
|
|
|
), filters, as_dict=1)
|
2013-11-29 13:45:26 +00:00
|
|
|
|
2018-04-02 18:07:33 +00:00
|
|
|
def get_item_details(filters, item_conditions):
|
2013-12-05 10:38:30 +00:00
|
|
|
item_details = {}
|
2014-05-15 06:20:46 +00:00
|
|
|
for item in frappe.db.sql("""select name, item_name, description, item_group,
|
2017-08-16 06:05:04 +00:00
|
|
|
brand, stock_uom from `tabItem` item {item_conditions}"""\
|
2018-04-02 18:07:33 +00:00
|
|
|
.format(item_conditions=item_conditions), filters, as_dict=1):
|
2013-12-05 10:38:30 +00:00
|
|
|
item_details.setdefault(item.name, item)
|
2014-05-15 06:20:46 +00:00
|
|
|
|
2013-12-05 10:38:30 +00:00
|
|
|
return item_details
|
2014-05-15 06:20:46 +00:00
|
|
|
|
2013-11-29 13:45:26 +00:00
|
|
|
def get_item_conditions(filters):
|
|
|
|
conditions = []
|
|
|
|
if filters.get("item_code"):
|
2017-08-16 06:05:04 +00:00
|
|
|
conditions.append("item.name=%(item_code)s")
|
2013-11-29 13:45:26 +00:00
|
|
|
if filters.get("brand"):
|
2017-08-16 06:05:04 +00:00
|
|
|
conditions.append("item.brand=%(brand)s")
|
|
|
|
if filters.get("item_group"):
|
|
|
|
conditions.append(get_item_group_condition(filters.get("item_group")))
|
2014-05-15 06:20:46 +00:00
|
|
|
|
2013-11-29 13:45:26 +00:00
|
|
|
return "where {}".format(" and ".join(conditions)) if conditions else ""
|
2014-05-15 06:20:46 +00:00
|
|
|
|
2013-11-29 13:45:26 +00:00
|
|
|
def get_sle_conditions(filters):
|
|
|
|
conditions = []
|
|
|
|
if filters.get("warehouse"):
|
2017-08-21 02:05:16 +00:00
|
|
|
warehouse_condition = get_warehouse_condition(filters.get("warehouse"))
|
|
|
|
if warehouse_condition:
|
|
|
|
conditions.append(warehouse_condition)
|
2013-11-29 13:45:26 +00:00
|
|
|
if filters.get("voucher_no"):
|
|
|
|
conditions.append("voucher_no=%(voucher_no)s")
|
2017-04-20 09:51:01 +00:00
|
|
|
if filters.get("batch_no"):
|
|
|
|
conditions.append("batch_no=%(batch_no)s")
|
2018-03-21 12:22:41 +00:00
|
|
|
if filters.get("project"):
|
|
|
|
conditions.append("project=%(project)s")
|
2014-05-15 06:20:46 +00:00
|
|
|
|
|
|
|
return "and {}".format(" and ".join(conditions)) if conditions else ""
|
2015-07-22 13:14:47 +00:00
|
|
|
|
|
|
|
def get_opening_balance(filters, columns):
|
|
|
|
if not (filters.item_code and filters.warehouse and filters.from_date):
|
|
|
|
return
|
|
|
|
|
|
|
|
from erpnext.stock.stock_ledger import get_previous_sle
|
|
|
|
last_entry = get_previous_sle({
|
|
|
|
"item_code": filters.item_code,
|
2018-02-01 09:28:50 +00:00
|
|
|
"warehouse_condition": get_warehouse_condition(filters.warehouse),
|
2015-07-22 13:14:47 +00:00
|
|
|
"posting_date": filters.from_date,
|
|
|
|
"posting_time": "00:00:00"
|
|
|
|
})
|
|
|
|
row = [""]*len(columns)
|
|
|
|
row[1] = _("'Opening'")
|
|
|
|
for i, v in ((9, 'qty_after_transaction'), (11, 'valuation_rate'), (12, 'stock_value')):
|
|
|
|
row[i] = last_entry.get(v, 0)
|
2017-04-20 09:51:01 +00:00
|
|
|
|
2016-06-21 06:26:08 +00:00
|
|
|
return row
|
2017-04-20 09:51:01 +00:00
|
|
|
|
2016-06-21 06:26:08 +00:00
|
|
|
def get_warehouse_condition(warehouse):
|
2016-07-27 06:12:38 +00:00
|
|
|
warehouse_details = frappe.db.get_value("Warehouse", warehouse, ["lft", "rgt"], as_dict=1)
|
|
|
|
if warehouse_details:
|
|
|
|
return " exists (select name from `tabWarehouse` wh \
|
2018-02-01 09:28:50 +00:00
|
|
|
where wh.lft >= %s and wh.rgt <= %s and warehouse = wh.name)"%(warehouse_details.lft,
|
2016-07-27 06:12:38 +00:00
|
|
|
warehouse_details.rgt)
|
|
|
|
|
|
|
|
return ''
|
2017-08-16 06:05:04 +00:00
|
|
|
|
|
|
|
def get_item_group_condition(item_group):
|
|
|
|
item_group_details = frappe.db.get_value("Item Group", item_group, ["lft", "rgt"], as_dict=1)
|
|
|
|
if item_group_details:
|
|
|
|
return "item.item_group in (select ig.name from `tabItem Group` ig \
|
|
|
|
where ig.lft >= %s and ig.rgt <= %s and item.item_group = ig.name)"%(item_group_details.lft,
|
|
|
|
item_group_details.rgt)
|
|
|
|
|
|
|
|
return ''
|