Merge branch 'master' of github.com:webnotes/erpnext into navupdate
This commit is contained in:
commit
c023cdd0c0
@ -5,6 +5,7 @@ import patches.jan_mar_2012.website.cleanups
|
|||||||
import patches.jan_mar_2012.website.domain_list
|
import patches.jan_mar_2012.website.domain_list
|
||||||
import patches.jan_mar_2012.website.file_data_rename
|
import patches.jan_mar_2012.website.file_data_rename
|
||||||
import patches.jan_mar_2012.website.analytics
|
import patches.jan_mar_2012.website.analytics
|
||||||
|
import patches.jan_mar_2012.website.allow_product_delete
|
||||||
|
|
||||||
|
|
||||||
def execute():
|
def execute():
|
||||||
@ -15,3 +16,4 @@ def execute():
|
|||||||
patches.jan_mar_2012.website.domain_list.execute()
|
patches.jan_mar_2012.website.domain_list.execute()
|
||||||
patches.jan_mar_2012.website.file_data_rename.execute()
|
patches.jan_mar_2012.website.file_data_rename.execute()
|
||||||
patches.jan_mar_2012.website.analytics.execute()
|
patches.jan_mar_2012.website.analytics.execute()
|
||||||
|
patches.jan_mar_2012.website.allow_product_delete.execute()
|
||||||
|
@ -0,0 +1,8 @@
|
|||||||
|
def execute():
|
||||||
|
"""
|
||||||
|
Allow deletion of products
|
||||||
|
"""
|
||||||
|
import webnotes
|
||||||
|
webnotes.conn.sql("""UPDATE `tabDocPerm` SET cancel=1
|
||||||
|
WHERE parent='Product' AND role='Website Manager'
|
||||||
|
AND permlevel=0""")
|
@ -268,7 +268,7 @@ class DocType:
|
|||||||
|
|
||||||
def check_if_item_repeated(self, item, op, check_list):
|
def check_if_item_repeated(self, item, op, check_list):
|
||||||
if [cstr(item), cstr(op)] in check_list:
|
if [cstr(item), cstr(op)] in check_list:
|
||||||
msgprint("Item %s has been entered twice against same operation" % d.item_code, raise_exception = 1)
|
msgprint("Item %s has been entered twice against same operation" % item, raise_exception = 1)
|
||||||
else:
|
else:
|
||||||
check_list.append([cstr(item), cstr(op)])
|
check_list.append([cstr(item), cstr(op)])
|
||||||
|
|
||||||
|
@ -3,9 +3,9 @@
|
|||||||
|
|
||||||
# These values are common in all dictionaries
|
# These values are common in all dictionaries
|
||||||
{
|
{
|
||||||
'creation': '2012-01-30 16:21:29',
|
'creation': '2012-02-17 15:53:22',
|
||||||
'docstatus': 0,
|
'docstatus': 0,
|
||||||
'modified': '2012-02-06 16:15:29',
|
'modified': '2012-02-22 18:32:46',
|
||||||
'modified_by': u'Administrator',
|
'modified_by': u'Administrator',
|
||||||
'owner': u'Administrator'
|
'owner': u'Administrator'
|
||||||
},
|
},
|
||||||
@ -18,12 +18,13 @@
|
|||||||
'colour': u'White:FFF',
|
'colour': u'White:FFF',
|
||||||
'description': u'A Product is shown on the website and is linked to an item.',
|
'description': u'A Product is shown on the website and is linked to an item.',
|
||||||
'doctype': 'DocType',
|
'doctype': 'DocType',
|
||||||
|
'document_type': u'Master',
|
||||||
'max_attachments': 5,
|
'max_attachments': 5,
|
||||||
'module': u'Website',
|
'module': u'Website',
|
||||||
'name': '__common__',
|
'name': '__common__',
|
||||||
'section_style': u'Simple',
|
'section_style': u'Simple',
|
||||||
'show_in_menu': 0,
|
'show_in_menu': 0,
|
||||||
'version': 11
|
'version': 12
|
||||||
},
|
},
|
||||||
|
|
||||||
# These values are common for all DocField
|
# These values are common for all DocField
|
||||||
|
Loading…
x
Reference in New Issue
Block a user