2017-08-23 06:45:10 +00:00
|
|
|
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
import frappe, json
|
2017-09-28 05:26:27 +00:00
|
|
|
from frappe.utils.nestedset import get_root_of
|
2018-01-23 12:58:05 +00:00
|
|
|
from frappe.utils import cint
|
2017-11-29 08:25:13 +00:00
|
|
|
from erpnext.accounts.doctype.pos_profile.pos_profile import get_item_groups
|
2020-07-23 13:21:26 +00:00
|
|
|
from erpnext.accounts.doctype.pos_invoice.pos_invoice import get_stock_availability
|
2017-08-23 06:45:10 +00:00
|
|
|
|
2018-02-15 06:09:45 +00:00
|
|
|
from six import string_types
|
|
|
|
|
2017-08-23 06:45:10 +00:00
|
|
|
@frappe.whitelist()
|
2020-10-26 05:47:04 +00:00
|
|
|
def get_items(start, page_length, price_list, item_group, pos_profile, search_value=""):
|
2018-11-13 05:41:32 +00:00
|
|
|
data = dict()
|
2020-10-26 05:47:04 +00:00
|
|
|
result = []
|
2018-08-07 09:08:50 +00:00
|
|
|
|
2020-10-26 05:47:04 +00:00
|
|
|
allow_negative_stock = frappe.db.get_single_value('Stock Settings', 'allow_negative_stock')
|
2020-11-03 04:46:58 +00:00
|
|
|
warehouse, hide_unavailable_items = frappe.db.get_value('POS Profile', pos_profile, ['warehouse', 'hide_unavailable_items'])
|
2018-08-07 09:08:50 +00:00
|
|
|
|
2017-09-28 05:26:27 +00:00
|
|
|
if not frappe.db.exists('Item Group', item_group):
|
|
|
|
item_group = get_root_of('Item Group')
|
2017-08-23 06:45:10 +00:00
|
|
|
|
2017-08-23 10:55:16 +00:00
|
|
|
if search_value:
|
2018-11-13 05:41:32 +00:00
|
|
|
data = search_serial_or_batch_or_barcode_number(search_value)
|
2021-04-26 17:18:13 +00:00
|
|
|
|
2018-11-13 05:41:32 +00:00
|
|
|
item_code = data.get("item_code") if data.get("item_code") else search_value
|
|
|
|
serial_no = data.get("serial_no") if data.get("serial_no") else ""
|
|
|
|
batch_no = data.get("batch_no") if data.get("batch_no") else ""
|
|
|
|
barcode = data.get("barcode") if data.get("barcode") else ""
|
2017-10-10 20:37:09 +00:00
|
|
|
|
2020-10-26 05:47:04 +00:00
|
|
|
if data:
|
|
|
|
item_info = frappe.db.get_value(
|
2021-04-26 17:18:13 +00:00
|
|
|
"Item", data.get("item_code"),
|
2020-10-26 05:47:04 +00:00
|
|
|
["name as item_code", "item_name", "description", "stock_uom", "image as item_image", "is_stock_item"]
|
|
|
|
, as_dict=1)
|
|
|
|
item_info.setdefault('serial_no', serial_no)
|
|
|
|
item_info.setdefault('batch_no', batch_no)
|
|
|
|
item_info.setdefault('barcode', barcode)
|
2017-10-04 09:03:12 +00:00
|
|
|
|
2020-10-26 05:47:04 +00:00
|
|
|
return { 'items': [item_info] }
|
|
|
|
|
|
|
|
condition = get_conditions(item_code, serial_no, batch_no, barcode)
|
|
|
|
condition += get_item_group_condition(pos_profile)
|
2017-11-29 08:25:13 +00:00
|
|
|
|
2017-08-28 11:49:28 +00:00
|
|
|
lft, rgt = frappe.db.get_value('Item Group', item_group, ['lft', 'rgt'])
|
2018-08-07 09:08:50 +00:00
|
|
|
|
2020-10-26 05:47:04 +00:00
|
|
|
bin_join_selection, bin_join_condition = "", ""
|
2020-10-29 07:53:50 +00:00
|
|
|
if hide_unavailable_items:
|
2020-10-26 05:47:04 +00:00
|
|
|
bin_join_selection = ", `tabBin` bin"
|
|
|
|
bin_join_condition = "AND bin.warehouse = %(warehouse)s AND bin.item_code = item.name AND bin.actual_qty > 0"
|
2019-04-11 14:22:00 +00:00
|
|
|
|
2020-04-14 08:35:14 +00:00
|
|
|
items_data = frappe.db.sql("""
|
|
|
|
SELECT
|
2020-10-26 05:47:04 +00:00
|
|
|
item.name AS item_code,
|
|
|
|
item.item_name,
|
|
|
|
item.description,
|
|
|
|
item.stock_uom,
|
|
|
|
item.image AS item_image,
|
|
|
|
item.is_stock_item
|
2019-04-11 14:22:00 +00:00
|
|
|
FROM
|
2020-10-26 05:47:04 +00:00
|
|
|
`tabItem` item {bin_join_selection}
|
2019-04-11 14:22:00 +00:00
|
|
|
WHERE
|
2020-10-26 05:47:04 +00:00
|
|
|
item.disabled = 0
|
2020-11-18 06:26:49 +00:00
|
|
|
AND item.is_stock_item = 1
|
2020-10-26 05:47:04 +00:00
|
|
|
AND item.has_variants = 0
|
|
|
|
AND item.is_sales_item = 1
|
|
|
|
AND item.is_fixed_asset = 0
|
|
|
|
AND item.item_group in (SELECT name FROM `tabItem Group` WHERE lft >= {lft} AND rgt <= {rgt})
|
|
|
|
AND {condition}
|
|
|
|
{bin_join_condition}
|
2020-04-14 08:35:14 +00:00
|
|
|
ORDER BY
|
2020-10-26 05:47:04 +00:00
|
|
|
item.name asc
|
2020-04-14 08:35:14 +00:00
|
|
|
LIMIT
|
|
|
|
{start}, {page_length}"""
|
2019-04-11 14:22:00 +00:00
|
|
|
.format(
|
2020-04-14 08:35:14 +00:00
|
|
|
start=start,
|
|
|
|
page_length=page_length,
|
|
|
|
lft=lft,
|
|
|
|
rgt=rgt,
|
2020-10-26 05:47:04 +00:00
|
|
|
condition=condition,
|
|
|
|
bin_join_selection=bin_join_selection,
|
|
|
|
bin_join_condition=bin_join_condition
|
|
|
|
), {'warehouse': warehouse}, as_dict=1)
|
2019-04-11 14:22:00 +00:00
|
|
|
|
|
|
|
if items_data:
|
|
|
|
items = [d.item_code for d in items_data]
|
|
|
|
item_prices_data = frappe.get_all("Item Price",
|
|
|
|
fields = ["item_code", "price_list_rate", "currency"],
|
|
|
|
filters = {'price_list': price_list, 'item_code': ['in', items]})
|
|
|
|
|
2020-07-23 13:21:26 +00:00
|
|
|
item_prices = {}
|
2019-04-11 14:22:00 +00:00
|
|
|
for d in item_prices_data:
|
|
|
|
item_prices[d.item_code] = d
|
|
|
|
|
|
|
|
for item in items_data:
|
2020-03-26 13:46:36 +00:00
|
|
|
item_code = item.item_code
|
|
|
|
item_price = item_prices.get(item_code) or {}
|
2020-11-03 04:46:58 +00:00
|
|
|
if allow_negative_stock:
|
2020-10-26 05:47:04 +00:00
|
|
|
item_stock_qty = frappe.db.sql("""select ifnull(sum(actual_qty), 0) from `tabBin` where item_code = %s""", item_code)[0][0]
|
2020-03-26 13:46:36 +00:00
|
|
|
else:
|
2020-10-26 05:47:04 +00:00
|
|
|
item_stock_qty = get_stock_availability(item_code, warehouse)
|
|
|
|
|
|
|
|
row = {}
|
|
|
|
row.update(item)
|
|
|
|
row.update({
|
|
|
|
'price_list_rate': item_price.get('price_list_rate'),
|
|
|
|
'currency': item_price.get('currency'),
|
|
|
|
'actual_qty': item_stock_qty,
|
|
|
|
})
|
|
|
|
result.append(row)
|
2019-04-11 14:22:00 +00:00
|
|
|
|
|
|
|
res = {
|
|
|
|
'items': result
|
|
|
|
}
|
2017-08-23 10:55:16 +00:00
|
|
|
|
2017-08-24 09:57:55 +00:00
|
|
|
return res
|
|
|
|
|
2018-11-13 05:41:32 +00:00
|
|
|
@frappe.whitelist()
|
|
|
|
def search_serial_or_batch_or_barcode_number(search_value):
|
|
|
|
# search barcode no
|
|
|
|
barcode_data = frappe.db.get_value('Item Barcode', {'barcode': search_value}, ['barcode', 'parent as item_code'], as_dict=True)
|
|
|
|
if barcode_data:
|
|
|
|
return barcode_data
|
|
|
|
|
|
|
|
# search serial no
|
|
|
|
serial_no_data = frappe.db.get_value('Serial No', search_value, ['name as serial_no', 'item_code'], as_dict=True)
|
|
|
|
if serial_no_data:
|
|
|
|
return serial_no_data
|
|
|
|
|
|
|
|
# search batch no
|
|
|
|
batch_no_data = frappe.db.get_value('Batch', search_value, ['name as batch_no', 'item as item_code'], as_dict=True)
|
|
|
|
if batch_no_data:
|
|
|
|
return batch_no_data
|
|
|
|
|
2018-12-10 11:46:39 +00:00
|
|
|
return {}
|
|
|
|
|
2017-10-10 20:37:09 +00:00
|
|
|
def get_conditions(item_code, serial_no, batch_no, barcode):
|
|
|
|
if serial_no or batch_no or barcode:
|
2020-10-26 05:47:04 +00:00
|
|
|
return "item.name = {0}".format(frappe.db.escape(item_code))
|
2017-10-04 09:03:12 +00:00
|
|
|
|
2021-04-26 17:18:13 +00:00
|
|
|
return make_condition(item_code)
|
|
|
|
|
|
|
|
def make_condition(item_code):
|
|
|
|
condition = "("
|
|
|
|
condition += """item.name like {item_code}
|
|
|
|
or item.item_name like {item_code}""".format(item_code = frappe.db.escape('%' + item_code + '%'))
|
|
|
|
condition += add_search_fields_condition(item_code)
|
|
|
|
condition += ")"
|
|
|
|
|
|
|
|
return condition
|
|
|
|
|
|
|
|
def add_search_fields_condition(item_code):
|
|
|
|
condition = ''
|
|
|
|
search_fields = frappe.get_all('POS Search Fields', fields = ['fieldname'])
|
|
|
|
if search_fields:
|
|
|
|
for field in search_fields:
|
|
|
|
condition += " or item.{0} like {1}".format(field['fieldname'], frappe.db.escape('%' + item_code + '%'))
|
|
|
|
return condition
|
2017-10-04 09:03:12 +00:00
|
|
|
|
2017-11-29 08:25:13 +00:00
|
|
|
def get_item_group_condition(pos_profile):
|
|
|
|
cond = "and 1=1"
|
|
|
|
item_groups = get_item_groups(pos_profile)
|
|
|
|
if item_groups:
|
2020-10-26 05:47:04 +00:00
|
|
|
cond = "and item.item_group in (%s)"%(', '.join(['%s']*len(item_groups)))
|
2017-11-29 08:25:13 +00:00
|
|
|
|
|
|
|
return cond % tuple(item_groups)
|
|
|
|
|
2020-07-02 07:05:41 +00:00
|
|
|
@frappe.whitelist()
|
2020-08-05 14:12:25 +00:00
|
|
|
@frappe.validate_and_sanitize_search_inputs
|
2017-11-29 08:25:13 +00:00
|
|
|
def item_group_query(doctype, txt, searchfield, start, page_len, filters):
|
|
|
|
item_groups = []
|
|
|
|
cond = "1=1"
|
|
|
|
pos_profile= filters.get('pos_profile')
|
|
|
|
|
|
|
|
if pos_profile:
|
|
|
|
item_groups = get_item_groups(pos_profile)
|
|
|
|
|
|
|
|
if item_groups:
|
|
|
|
cond = "name in (%s)"%(', '.join(['%s']*len(item_groups)))
|
|
|
|
cond = cond % tuple(item_groups)
|
|
|
|
|
|
|
|
return frappe.db.sql(""" select distinct name from `tabItem Group`
|
|
|
|
where {condition} and (name like %(txt)s) limit {start}, {page_len}"""
|
|
|
|
.format(condition = cond, start=start, page_len= page_len),
|
2018-08-07 09:08:50 +00:00
|
|
|
{'txt': '%%%s%%' % txt})
|
2019-12-09 12:21:32 +00:00
|
|
|
|
|
|
|
@frappe.whitelist()
|
2020-07-23 13:21:26 +00:00
|
|
|
def check_opening_entry(user):
|
2020-08-05 14:12:25 +00:00
|
|
|
open_vouchers = frappe.db.get_all("POS Opening Entry",
|
|
|
|
filters = {
|
|
|
|
"user": user,
|
2020-07-23 13:21:26 +00:00
|
|
|
"pos_closing_entry": ["in", ["", None]],
|
|
|
|
"docstatus": 1
|
2020-08-05 14:12:25 +00:00
|
|
|
},
|
2020-07-23 13:21:26 +00:00
|
|
|
fields = ["name", "company", "pos_profile", "period_start_date"],
|
|
|
|
order_by = "period_start_date desc"
|
|
|
|
)
|
|
|
|
|
|
|
|
return open_vouchers
|
|
|
|
|
|
|
|
@frappe.whitelist()
|
|
|
|
def create_opening_voucher(pos_profile, company, balance_details):
|
|
|
|
import json
|
|
|
|
balance_details = json.loads(balance_details)
|
|
|
|
|
|
|
|
new_pos_opening = frappe.get_doc({
|
|
|
|
'doctype': 'POS Opening Entry',
|
|
|
|
"period_start_date": frappe.utils.get_datetime(),
|
|
|
|
"posting_date": frappe.utils.getdate(),
|
|
|
|
"user": frappe.session.user,
|
|
|
|
"pos_profile": pos_profile,
|
|
|
|
"company": company,
|
|
|
|
})
|
|
|
|
new_pos_opening.set("balance_details", balance_details)
|
|
|
|
new_pos_opening.submit()
|
|
|
|
|
|
|
|
return new_pos_opening.as_dict()
|
|
|
|
|
|
|
|
@frappe.whitelist()
|
|
|
|
def get_past_order_list(search_term, status, limit=20):
|
|
|
|
fields = ['name', 'grand_total', 'currency', 'customer', 'posting_time', 'posting_date']
|
|
|
|
invoice_list = []
|
|
|
|
|
|
|
|
if search_term and status:
|
|
|
|
invoices_by_customer = frappe.db.get_all('POS Invoice', filters={
|
|
|
|
'customer': ['like', '%{}%'.format(search_term)],
|
|
|
|
'status': status
|
|
|
|
}, fields=fields)
|
|
|
|
invoices_by_name = frappe.db.get_all('POS Invoice', filters={
|
|
|
|
'name': ['like', '%{}%'.format(search_term)],
|
|
|
|
'status': status
|
|
|
|
}, fields=fields)
|
|
|
|
|
|
|
|
invoice_list = invoices_by_customer + invoices_by_name
|
|
|
|
elif status:
|
|
|
|
invoice_list = frappe.db.get_all('POS Invoice', filters={
|
|
|
|
'status': status
|
|
|
|
}, fields=fields)
|
2020-08-05 14:12:25 +00:00
|
|
|
|
2020-07-23 13:21:26 +00:00
|
|
|
return invoice_list
|
|
|
|
|
|
|
|
@frappe.whitelist()
|
|
|
|
def set_customer_info(fieldname, customer, value=""):
|
|
|
|
if fieldname == 'loyalty_program':
|
|
|
|
frappe.db.set_value('Customer', customer, 'loyalty_program', value)
|
|
|
|
|
|
|
|
contact = frappe.get_cached_value('Customer', customer, 'customer_primary_contact')
|
2020-11-03 05:21:09 +00:00
|
|
|
if not contact:
|
|
|
|
contact = frappe.db.sql("""
|
|
|
|
SELECT parent FROM `tabDynamic Link`
|
|
|
|
WHERE
|
|
|
|
parenttype = 'Contact' AND
|
|
|
|
parentfield = 'links' AND
|
|
|
|
link_doctype = 'Customer' AND
|
|
|
|
link_name = %s
|
|
|
|
""", (customer), as_dict=1)
|
|
|
|
contact = contact[0].get('parent') if contact else None
|
|
|
|
|
|
|
|
if not contact:
|
|
|
|
new_contact = frappe.new_doc('Contact')
|
|
|
|
new_contact.is_primary_contact = 1
|
|
|
|
new_contact.first_name = customer
|
|
|
|
new_contact.set('links', [{'link_doctype': 'Customer', 'link_name': customer}])
|
|
|
|
new_contact.save()
|
|
|
|
contact = new_contact.name
|
|
|
|
frappe.db.set_value('Customer', customer, 'customer_primary_contact', contact)
|
|
|
|
|
|
|
|
contact_doc = frappe.get_doc('Contact', contact)
|
|
|
|
if fieldname == 'email_id':
|
|
|
|
contact_doc.set('email_ids', [{ 'email_id': value, 'is_primary': 1}])
|
|
|
|
frappe.db.set_value('Customer', customer, 'email_id', value)
|
|
|
|
elif fieldname == 'mobile_no':
|
|
|
|
contact_doc.set('phone_nos', [{ 'phone': value, 'is_primary_mobile_no': 1}])
|
|
|
|
frappe.db.set_value('Customer', customer, 'mobile_no', value)
|
2021-04-26 17:18:13 +00:00
|
|
|
contact_doc.save()
|