fix(woocommerce integration): fix strange travis error
the patch was working locally. But, in was failing on travis. The strange thing was that the patch running in travis was looking for woocommerce_settings in the path 'frappe.core.doctype.woocommerce_settings.woocommerce_settings' (cherry picked from commit df3e8853aeedb4991e7f8b1c878adb7ba849a063)
This commit is contained in:
parent
63f8cda069
commit
13563dc495
@ -2,7 +2,9 @@ from __future__ import unicode_literals
|
|||||||
import frappe
|
import frappe
|
||||||
|
|
||||||
def execute():
|
def execute():
|
||||||
woocommerce_settings = frappe.get_single("Woocommerce Settings")
|
woocommerce_setting_enable_sync = frappe.db.sql("SELECT t.value FROM tabSingles t WHERE doctype = 'Woocommerce Settings' AND field = 'enable_sync'", as_dict=True)
|
||||||
if woocommerce_settings.enable_sync:
|
if len(woocommerce_setting_enable_sync) and woocommerce_setting_enable_sync[0].value == '1':
|
||||||
woocommerce_settings.creation_user = woocommerce_settings.modified_by
|
frappe.db.sql("""UPDATE tabSingles
|
||||||
woocommerce_settings.save()
|
SET value = (SELECT t.value FROM tabSingles t WHERE doctype = 'Woocommerce Settings' AND field = 'modified_by')
|
||||||
|
WHERE doctype = 'Woocommerce Settings'
|
||||||
|
AND field = 'creation_user';""")
|
Loading…
x
Reference in New Issue
Block a user