Merge branch 'responsive' of github.com:webnotes/erpnext into responsive

This commit is contained in:
Rushabh Mehta 2013-06-18 15:47:24 +05:30
commit 68b9b1f11d
11 changed files with 176 additions and 131 deletions

View File

@ -167,21 +167,22 @@ class DocType(BuyingController):
if d.fields.has_key(x): if d.fields.has_key(x):
d.fields[x] = f_lst[x] d.fields[x] = f_lst[x]
item = sql("select is_stock_item, is_purchase_item, is_sub_contracted_item from tabItem where name=%s and (ifnull(end_of_life,'')='' or end_of_life = '0000-00-00' or end_of_life > now())", d.item_code) item = sql("select is_stock_item, is_purchase_item, is_sub_contracted_item, end_of_life from tabItem where name=%s",
d.item_code)
if not item: if not item:
msgprint("Item %s does not exist in Item Master." % cstr(d.item_code)) msgprint("Item %s does not exist in Item Master." % cstr(d.item_code), raise_exception=True)
raise Exception
from stock.utils import validate_end_of_life
validate_end_of_life(d.item_code, item[0][3])
# validate stock item # validate stock item
if item[0][0]=='Yes' and d.qty and not d.warehouse: if item[0][0]=='Yes' and d.qty and not d.warehouse:
msgprint("Warehouse is mandatory for %s, since it is a stock item" % msgprint("Warehouse is mandatory for %s, since it is a stock item" %
d.item_code, raise_exception=1) d.item_code, raise_exception=1)
# validate purchase item # validate purchase item
if item[0][1] != 'Yes' and item[0][2] != 'Yes': if item[0][1] != 'Yes' and item[0][2] != 'Yes':
msgprint("Item %s is not a purchase item or sub-contracted item. Please check" % (d.item_code)) msgprint("Item %s is not a purchase item or sub-contracted item. Please check" % (d.item_code), raise_exception=True)
raise Exception
if d.fields.has_key('prevdoc_docname') and d.prevdoc_docname: if d.fields.has_key('prevdoc_docname') and d.prevdoc_docname:
# check warehouse, uom in previous doc and in current doc are same. # check warehouse, uom in previous doc and in current doc are same.
@ -203,8 +204,8 @@ class DocType(BuyingController):
# Check if UOM has been modified. # Check if UOM has been modified.
if not cstr(data[0]['uom']) == cstr(d.uom) and not cstr(d.prevdoc_doctype) == 'Material Request': if not cstr(data[0]['uom']) == cstr(d.uom) and not cstr(d.prevdoc_doctype) == 'Material Request':
msgprint("Please check UOM %s of Item %s which is not present in %s %s ." % (d.uom, d.item_code, d.prevdoc_doctype, d.prevdoc_docname)) msgprint("Please check UOM %s of Item %s which is not present in %s %s ." % \
raise Exception (d.uom, d.item_code, d.prevdoc_doctype, d.prevdoc_docname), raise_exception=True)
# list criteria that should not repeat if item is stock item # list criteria that should not repeat if item is stock item
e = [d.schedule_date, d.item_code, d.description, d.warehouse, d.uom, d.fields.has_key('prevdoc_docname') and d.prevdoc_docname or '', d.fields.has_key('prevdoc_detail_docname') and d.prevdoc_detail_docname or '', d.fields.has_key('batch_no') and d.batch_no or ''] e = [d.schedule_date, d.item_code, d.description, d.warehouse, d.uom, d.fields.has_key('prevdoc_docname') and d.prevdoc_docname or '', d.fields.has_key('prevdoc_detail_docname') and d.prevdoc_detail_docname or '', d.fields.has_key('batch_no') and d.batch_no or '']

View File

@ -1,6 +1,8 @@
import webnotes import webnotes
def execute(): def execute():
from utilities.transaction_base import delete_events
# delete orphaned Event User # delete orphaned Event User
webnotes.conn.sql("""delete from `tabEvent User` webnotes.conn.sql("""delete from `tabEvent User`
where not exists(select name from `tabEvent` where `tabEvent`.name = `tabEvent User`.parent)""") where not exists(select name from `tabEvent` where `tabEvent`.name = `tabEvent User`.parent)""")
@ -15,5 +17,4 @@ def execute():
webnotes.get_obj(dt, ref_name).add_calendar_event() webnotes.get_obj(dt, ref_name).add_calendar_event()
else: else:
# remove events where ref doc doesn't exist # remove events where ref doc doesn't exist
webnotes.delete_doc("Event", webnotes.conn.sql_list("""select name from `tabEvent` delete_events(dt, ref_name)
where ref_type=%s and ref_name=%s""", (dt, ref_name)))

View File

@ -19,6 +19,7 @@ import webnotes
from webnotes.utils import flt, getdate from webnotes.utils import flt, getdate
from webnotes import msgprint from webnotes import msgprint
from utilities.transaction_base import delete_events
class DocType: class DocType:
def __init__(self, doc, doclist=None): def __init__(self, doc, doclist=None):
@ -54,7 +55,7 @@ class DocType:
def add_calendar_event(self): def add_calendar_event(self):
# delete any earlier event for this project # delete any earlier event for this project
self.delete_events() delete_events(self.doc.doctype, self.doc.name)
# add events # add events
for milestone in self.doclist.get({"parentfield": "project_milestones"}): for milestone in self.doclist.get({"parentfield": "project_milestones"}):
@ -72,8 +73,4 @@ class DocType:
}).insert() }).insert()
def on_trash(self): def on_trash(self):
self.delete_events() delete_events(self.doc.doctype, self.doc.name)
def delete_events(self):
webnotes.delete_doc("Event", webnotes.conn.sql_list("""select name from `tabEvent`
where ref_type=%s and ref_name=%s""", (self.doc.doctype, self.doc.name)))

View File

@ -111,7 +111,7 @@ def _get_basic_details(args, item_bean):
out = webnotes._dict({ out = webnotes._dict({
"item_code": item.name, "item_code": item.name,
"description": item.description_html or item.description, "description": item.description_html or item.description,
"reserved_warehouse": item.default_warehouse, "reserved_warehouse": item.default_warehouse or args.warehouse or args.reserved_warehouse,
"warehouse": item.default_warehouse or args.warehouse, "warehouse": item.default_warehouse or args.warehouse,
"income_account": item.default_income_account or args.income_account, "income_account": item.default_income_account or args.income_account,
"expense_account": item.purchase_account or args.expense_account, "expense_account": item.purchase_account or args.expense_account,

View File

@ -53,7 +53,7 @@ def execute_daily():
# daily backup # daily backup
from setup.doctype.backup_manager.backup_manager import take_backups_daily from setup.doctype.backup_manager.backup_manager import take_backups_daily
take_backups_daily() run_fn(take_backups_daily)
# check reorder level # check reorder level
from stock.utils import reorder_item from stock.utils import reorder_item
@ -61,7 +61,7 @@ def execute_daily():
def execute_weekly(): def execute_weekly():
from setup.doctype.backup_manager.backup_manager import take_backups_weekly from setup.doctype.backup_manager.backup_manager import take_backups_weekly
take_backups_weekly() run_fn(take_backups_weekly)
def execute_monthly(): def execute_monthly():
pass pass

View File

@ -54,7 +54,8 @@ test_records = [
"inspection_required": "No", "inspection_required": "No",
"is_pro_applicable": "No", "is_pro_applicable": "No",
"is_sub_contracted_item": "No", "is_sub_contracted_item": "No",
"stock_uom": "_Test UOM" "stock_uom": "_Test UOM",
"default_warehouse": "_Test Warehouse"
}, { }, {
"doctype": "Item Reorder", "doctype": "Item Reorder",
"parentfield": "item_reorder", "parentfield": "item_reorder",

View File

@ -21,6 +21,9 @@ class TestStockEntry(unittest.TestCase):
st2.insert() st2.insert()
st2.submit() st2.submit()
from stock.utils import reorder_item
reorder_item()
mr_name = webnotes.conn.sql("""select parent from `tabMaterial Request Item` mr_name = webnotes.conn.sql("""select parent from `tabMaterial Request Item`
where item_code='_Test Item'""") where item_code='_Test Item'""")

View File

@ -19,13 +19,14 @@ from webnotes import msgprint, _
import json import json
from webnotes.utils import flt, cstr, nowdate, add_days, cint from webnotes.utils import flt, cstr, nowdate, add_days, cint
from webnotes.defaults import get_global_default from webnotes.defaults import get_global_default
from webnotes.utils.email_lib import sendmail
def validate_end_of_life(item_code, end_of_life=None, verbose=1): def validate_end_of_life(item_code, end_of_life=None, verbose=1):
if not end_of_life: if not end_of_life:
end_of_life = webnotes.conn.get_value("Item", item_code, "end_of_life") end_of_life = webnotes.conn.get_value("Item", item_code, "end_of_life")
from webnotes.utils import getdate, now_datetime, formatdate from webnotes.utils import getdate, now_datetime, formatdate
if end_of_life and getdate(end_of_life) > now_datetime().date(): if end_of_life and getdate(end_of_life) <= now_datetime().date():
msg = (_("Item") + " %(item_code)s: " + _("reached its end of life on") + \ msg = (_("Item") + " %(item_code)s: " + _("reached its end of life on") + \
" %(date)s. " + _("Please check") + ": %(end_of_life_label)s " + \ " %(date)s. " + _("Please check") + ": %(end_of_life_label)s " + \
"in Item master") % { "in Item master") % {
@ -205,7 +206,11 @@ def reorder_item():
if webnotes.auto_indent: if webnotes.auto_indent:
material_requests = {} material_requests = {}
bin_list = webnotes.conn.sql("""select item_code, warehouse, projected_qty bin_list = webnotes.conn.sql("""select item_code, warehouse, projected_qty
from tabBin where ifnull(item_code, '') != '' and ifnull(warehouse, '') != ''""", from tabBin where ifnull(item_code, '') != '' and ifnull(warehouse, '') != ''
and exists (select name from `tabItem`
where `tabItem`.name = `tabBin`.item_code and
is_stock_item='Yes' and (is_purchase_item='Yes' or is_sub_contracted_item='Yes') and
(ifnull(end_of_life, '')='') or end_of_life > now())""",
as_dict=True) as_dict=True)
for bin in bin_list: for bin in bin_list:
#check if re-order is required #check if re-order is required
@ -220,7 +225,7 @@ def reorder_item():
["re_order_level", "re_order_qty"]) ["re_order_level", "re_order_qty"])
material_request_type = "Purchase" material_request_type = "Purchase"
if reorder_level and flt(bin.projected_qty) < flt(reorder_level): if flt(reorder_level) and flt(bin.projected_qty) < flt(reorder_level):
if flt(reorder_level) - flt(bin.projected_qty) > flt(reorder_qty): if flt(reorder_level) - flt(bin.projected_qty) > flt(reorder_qty):
reorder_qty = flt(reorder_level) - flt(bin.projected_qty) reorder_qty = flt(reorder_level) - flt(bin.projected_qty)
@ -242,10 +247,14 @@ def create_material_request(material_requests):
""" Create indent on reaching reorder level """ """ Create indent on reaching reorder level """
mr_list = [] mr_list = []
defaults = webnotes.defaults.get_defaults() defaults = webnotes.defaults.get_defaults()
exceptions_list = []
for request_type in material_requests: for request_type in material_requests:
for company in material_requests[request_type]: for company in material_requests[request_type]:
items = material_requests[request_type][company] try:
if items: items = material_requests[request_type][company]
if not items:
continue
mr = [{ mr = [{
"doctype": "Material Request", "doctype": "Material Request",
"company": company, "company": company,
@ -257,27 +266,34 @@ def create_material_request(material_requests):
quantity reaches re-order level when the following record was created""") quantity reaches re-order level when the following record was created""")
}] }]
for d in items: for d in items:
item = webnotes.doc("Item", d.item_code) item = webnotes.doc("Item", d.item_code)
mr.append({ mr.append({
"doctype": "Material Request Item", "doctype": "Material Request Item",
"parenttype": "Material Request", "parenttype": "Material Request",
"parentfield": "indent_details", "parentfield": "indent_details",
"item_code": d.item_code, "item_code": d.item_code,
"schedule_date": add_days(nowdate(),cint(item.lead_time_days)), "schedule_date": add_days(nowdate(),cint(item.lead_time_days)),
"uom": item.stock_uom, "uom": item.stock_uom,
"warehouse": d.warehouse, "warehouse": d.warehouse,
"item_name": item.item_name, "item_name": item.item_name,
"description": item.description, "description": item.description,
"item_group": item.item_group, "item_group": item.item_group,
"qty": d.reorder_qty, "qty": d.reorder_qty,
"brand": item.brand, "brand": item.brand,
}) })
mr_bean = webnotes.bean(mr) mr_bean = webnotes.bean(mr)
mr_bean.insert() mr_bean.insert()
mr_bean.submit() mr_bean.submit()
mr_list.append(mr_bean) mr_list.append(mr_bean)
except:
if webnotes.message_log:
exceptions_list.append([] + webnotes.message_log)
webnotes.message_log = []
else:
exceptions_list.append(webnotes.getTraceback())
if mr_list: if mr_list:
if not hasattr(webnotes, "reorder_email_notify"): if not hasattr(webnotes, "reorder_email_notify"):
@ -286,11 +302,13 @@ def create_material_request(material_requests):
if(webnotes.reorder_email_notify): if(webnotes.reorder_email_notify):
send_email_notification(mr_list) send_email_notification(mr_list)
if exceptions_list:
notify_errors(exceptions_list)
def send_email_notification(mr_list): def send_email_notification(mr_list):
""" Notify user about auto creation of indent""" """ Notify user about auto creation of indent"""
from webnotes.utils.email_lib import sendmail
email_list = webnotes.conn.sql_list("""select distinct r.parent email_list = webnotes.conn.sql_list("""select distinct r.parent
from tabUserRole r, tabProfile p from tabUserRole r, tabProfile p
where p.name = r.parent and p.enabled = 1 and p.docstatus < 2 where p.name = r.parent and p.enabled = 1 and p.docstatus < 2
@ -307,4 +325,22 @@ def send_email_notification(mr_list):
cstr(item.qty) + "</td><td>" + cstr(item.uom) + "</td></tr>" cstr(item.qty) + "</td><td>" + cstr(item.uom) + "</td></tr>"
msg += "</table>" msg += "</table>"
sendmail(email_list, subject='Auto Material Request Generation Notification', msg = msg) sendmail(email_list, subject='Auto Material Request Generation Notification', msg = msg)
def notify_errors(exceptions_list):
subject = "[Important] [ERPNext] Error(s) while creating Material Requests based on Re-order Levels"
msg = """Dear System Manager,
An error occured for certain Items while creating Material Requests based on Re-order level.
Please rectify these issues:
---
%s
---
Regards,
Administrator""" % ("\n\n".join(["\n".join(msg) for msg in exceptions_list]),)
from webnotes.profile import get_system_managers
sendmail(get_system_managers(), subject=subject, msg=msg)

View File

@ -26,7 +26,7 @@ from webnotes import msgprint
sql = webnotes.conn.sql sql = webnotes.conn.sql
from utilities.transaction_base import TransactionBase from utilities.transaction_base import TransactionBase, delete_events
class DocType(TransactionBase): class DocType(TransactionBase):
def __init__(self, doc, doclist=[]): def __init__(self, doc, doclist=[]):
@ -327,13 +327,7 @@ class DocType(TransactionBase):
if d.serial_no: if d.serial_no:
self.update_amc_date(d.serial_no, '') self.update_amc_date(d.serial_no, '')
webnotes.conn.set(self.doc, 'status', 'Cancelled') webnotes.conn.set(self.doc, 'status', 'Cancelled')
self.delete_events() delete_events(self.doc.doctype, self.doc.name)
def on_trash(self): def on_trash(self):
self.delete_events() delete_events(self.doc.doctype, self.doc.name)
def delete_events(self):
webnotes.delete_doc("Event", webnotes.conn.sql_list("""select name from `tabEvent`
where ref_type=%s and ref_name=%s""", (self.doc.doctype, self.doc.name)))

View File

@ -357,3 +357,6 @@ def validate_currency(args, item, meta=None):
get_field_precision(meta.get_field("plc_conversion_rate"), get_field_precision(meta.get_field("plc_conversion_rate"),
webnotes._dict({"fields": args}))) webnotes._dict({"fields": args})))
def delete_events(ref_type, ref_name):
webnotes.delete_doc("Event", webnotes.conn.sql_list("""select name from `tabEvent`
where ref_type=%s and ref_name=%s""", (ref_type, ref_name)), for_reload=True)

View File

@ -6,76 +6,39 @@ import webnotes
from webnotes import _, msgprint from webnotes import _, msgprint
import webnotes.defaults import webnotes.defaults
from webnotes.utils import today, get_fullname from webnotes.utils import today, get_fullname
import json
@webnotes.whitelist()
def checkout(cart):
# webnotes.msgprint(cart);
if isinstance(cart, basestring):
cart = json.loads(cart) or {}
if webnotes.session.user == "Guest":
msgprint(_("Please login before you checkout!"), raise_exception=True)
elif webnotes.conn.get_value("Profile", webnotes.session.user, "user_type") != "Partner":
msgprint(_("Illegal User"), raise_exception=True)
# make_quotation(cart)
def make_quotation(cart):
from accounts.utils import get_fiscal_year
quotation_defaults = webnotes._dict({
"doctype": "Quotation",
"naming_series": "QTN-13-14-",
"quotation_to": "Customer",
"company": webnotes.defaults.get_user_default("company"),
"order_type": "Sales",
"status": "Draft",
})
quotation = webnotes.bean(quotation_defaults)
quotation.doc.fields.update({
"transaction_date": today(),
"fiscal_year": get_fiscal_year(today()),
# TODO
"price_list_name": "fetch",
"price_list_currency": "fetch",
"plc_conversion_rate": "something",
"currency": "same as price_list_currency",
"conversion_rate": "same as plc_converion_rate",
"territory": "fetch",
})
# TODO add items
for item_code, item in cart.items():
pass
# TODO apply taxes
# save and submit
@webnotes.whitelist() @webnotes.whitelist()
def add_to_cart(item_code): def add_to_cart(item_code):
update_qty(item_code, 1)
@webnotes.whitelist()
def remove_from_cart(item_code):
update_qty(item_code, 0)
@webnotes.whitelist()
def update_qty(item_code, qty_to_set):
party = get_lead_or_customer() party = get_lead_or_customer()
quotation = get_shopping_cart_quotation(party) quotation = get_shopping_cart_quotation(party)
quotation_items = quotation.doclist.get({"parentfield": "quotation_details", "item_code": item_code}) if qty_to_set == 0:
if not quotation_items: quotation.set_doclist(quotation.doclist.get({"item_code": ["!=", item_code]}))
quotation.doclist.append({ else:
"doctype": "Quotation Item", quotation_items = quotation.doclist.get({"item_code": item_code})
"parentfield": "quotation_details", if not quotation_items:
"item_code": item_code, quotation.doclist.append({
"qty": 1 "doctype": "Quotation Item",
}) "parentfield": "quotation_details",
"item_code": item_code,
"qty": qty_to_set
})
else:
quotation_items[0].qty = qty_to_set
quotation.ignore_permissions = True quotation.ignore_permissions = True
quotation.save() quotation.save()
return quotation.doc.name return quotation.doc.name
def get_lead_or_customer(): def get_lead_or_customer():
customer = webnotes.conn.get_value("Contact", {"email_id": webnotes.session.user}, "customer") customer = webnotes.conn.get_value("Contact", {"email_id": webnotes.session.user}, "customer")
if customer: if customer:
@ -116,14 +79,6 @@ def get_shopping_cart_quotation(party):
}) })
return qbean return qbean
@webnotes.whitelist()
def remove_from_cart(item_code):
pass
@webnotes.whitelist()
def update_qty(item_code, qty):
pass
def get_price_list(party): def get_price_list(party):
if not party.default_price_list: if not party.default_price_list:
@ -153,21 +108,75 @@ def get_price_list_using_geoip():
return price_list_name return price_list_name
import unittest
test_dependencies = ["Item", "Price List"] @webnotes.whitelist()
def checkout():
party = get_lead_or_customer()
quotation = get_shopping_cart_quotation(party)
quotation.ignore_permissions = True
quotation.submit()
sales_order = webnotes.bean(webnotes.map_doclist([["Quotation", "Sales Order"], ["Quotation Item", "Sales Order Item"],
["Sales Taxes and Charges", "Sales Taxes and Charges"]], quotation.doc.name))
sales_order.ignore_permissions = True
sales_order.insert()
sales_order.submit()
return sales_order
import unittest
test_dependencies = ["Item", "Price List", "Contact"]
class TestCart(unittest.TestCase): class TestCart(unittest.TestCase):
def test_get_lead_or_customer(self):
webnotes.session.user = "test@example.com"
party1 = get_lead_or_customer()
party2 = get_lead_or_customer()
self.assertEquals(party1.name, party2.name)
self.assertEquals(party1.doctype, "Lead")
webnotes.session.user = "test_contact_customer@example.com"
party = get_lead_or_customer()
self.assertEquals(party.name, "_Test Customer")
def test_add_to_cart(self): def test_add_to_cart(self):
webnotes.session.user = "test@example.com" webnotes.session.user = "test@example.com"
add_to_cart("_Test Item") add_to_cart("_Test Item")
def test_change_qty(self): quotation = get_shopping_cart_quotation(get_lead_or_customer())
pass quotation_items = quotation.doclist.get({"parentfield": "quotation_details", "item_code": "_Test Item"})
self.assertTrue(quotation_items)
self.assertEquals(quotation_items[0].qty, 1)
return quotation
def test_update_qty(self):
self.test_add_to_cart()
update_qty("_Test Item", 5)
quotation = get_shopping_cart_quotation(get_lead_or_customer())
quotation_items = quotation.doclist.get({"parentfield": "quotation_details", "item_code": "_Test Item"})
self.assertTrue(quotation_items)
self.assertEquals(quotation_items[0].qty, 5)
return quotation
def test_remove_from_cart(self): def test_remove_from_cart(self):
pass quotation0 = self.test_add_to_cart()
remove_from_cart("_Test Item")
quotation = get_shopping_cart_quotation(get_lead_or_customer())
self.assertEquals(quotation0.doc.name, quotation.doc.name)
quotation_items = quotation.doclist.get({"parentfield": "quotation_details", "item_code": "_Test Item"})
self.assertEquals(quotation_items, [])
def test_checkout(self): def test_checkout(self):
pass quotation = self.test_update_qty()
sales_order = checkout()
self.assertEquals(sales_order.doclist.getone({"item_code": "_Test Item"}).prevdoc_docname, quotation.doc.name)