[fix] patch fixes to setup patch tester on travis

This commit is contained in:
Saurabh 2017-11-17 19:06:08 +05:30
parent a8823eadb6
commit 00e82cdab3
3 changed files with 9 additions and 3 deletions

View File

@ -334,6 +334,7 @@ execute:frappe.reload_doctype('Employee') #2016-10-18
execute:frappe.db.sql("update `tabEmployee` set prefered_contact_email = IFNULL(prefered_contact_email,'') ")
execute:frappe.reload_doctype("Salary Slip")
execute:frappe.db.sql("update `tabSalary Slip` set posting_date=creation")
execute:frappe.reload_doc("stock", "doctype", "stock_settings")
erpnext.patches.v8_0.create_domain_docs #16-05-2017
erpnext.patches.v7_1.update_portal_roles
erpnext.patches.v7_1.set_total_amount_currency_in_je

View File

@ -7,7 +7,9 @@ import frappe
def execute():
doctype = 'POS Profile'
frappe.reload_doc('accounts', 'doctype', doctype)
frappe.reload_doc('accounts', 'doctype', 'POS Profile User')
frappe.reload_doc('accounts', 'doctype', 'pos_profile_user')
frappe.reload_doc('accounts', 'doctype', 'pos_item_group')
frappe.reload_doc('accounts', 'doctype', 'pos_customer_group')
for doc in frappe.get_all(doctype):
_doc = frappe.get_doc(doctype, doc.name)
@ -19,4 +21,7 @@ def execute():
'user': user
})
_doc.pos_profile_name = user + ' - ' + _doc.company
_doc.flags.ignore_validate = True
_doc.flags.ignore_mandatory = True
_doc.save()

View File

@ -5,8 +5,8 @@ from __future__ import unicode_literals
import frappe
def execute():
frappe.reload_doc('schools', 'doctype', 'Student Admission Program')
frappe.reload_doctype('Student Admission')
frappe.reload_doc('schools', 'doctype', 'student_admission_program')
frappe.reload_doc('schools', 'doctype', 'student_admission')
if "program" not in frappe.db.get_table_columns("Student Admission"):
return