mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-04 12:49:10 +00:00
[fix] pos settings - replace customer account with customer
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
{
|
{
|
||||||
"creation": "2013-05-24 12:15:51",
|
"creation": "2013-05-24 12:15:51",
|
||||||
"docstatus": 0,
|
"docstatus": 0,
|
||||||
"modified": "2013-08-08 14:21:57",
|
"modified": "2013-08-09 12:35:03",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"owner": "Administrator"
|
"owner": "Administrator"
|
||||||
},
|
},
|
||||||
@@ -131,12 +131,12 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"doctype": "DocField",
|
"doctype": "DocField",
|
||||||
"fieldname": "customer_account",
|
"fieldname": "customer",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"label": "Customer Account",
|
"label": "Customer",
|
||||||
"oldfieldname": "customer_account",
|
"oldfieldname": "customer_account",
|
||||||
"oldfieldtype": "Link",
|
"oldfieldtype": "Link",
|
||||||
"options": "Account",
|
"options": "Customer",
|
||||||
"read_only": 0,
|
"read_only": 0,
|
||||||
"reqd": 0
|
"reqd": 0
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -0,0 +1,21 @@
|
|||||||
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
|
||||||
|
# License: GNU General Public License v3. See license.txt
|
||||||
|
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
import webnotes
|
||||||
|
|
||||||
|
def execute():
|
||||||
|
webnotes.reload_doc("accounts", "doctype", "pos_setting")
|
||||||
|
customer_account = webnotes.conn.sql("""select customer_account, name from `tabPOS Setting`
|
||||||
|
where ifnull(customer_account, '')!=''""")
|
||||||
|
|
||||||
|
for cust_acc, pos_name in customer_account:
|
||||||
|
customer = webnotes.conn.sql("""select master_name, account_name from `tabAccount`
|
||||||
|
where name=%s""", (cust_acc), as_dict=1)
|
||||||
|
|
||||||
|
if not customer[0].master_name:
|
||||||
|
customer_name = webnotes.conn.get_value('Customer', customer[0].account_name, 'name')
|
||||||
|
else:
|
||||||
|
customer_name = customer[0].master_name
|
||||||
|
|
||||||
|
webnotes.conn.set_value('POS Setting', pos_name, 'customer', customer_name)
|
||||||
@@ -252,4 +252,5 @@ patch_list = [
|
|||||||
"patches.july_2013.p11_update_price_list_currency",
|
"patches.july_2013.p11_update_price_list_currency",
|
||||||
"execute:webnotes.bean('Selling Settings').save() #2013-07-29",
|
"execute:webnotes.bean('Selling Settings').save() #2013-07-29",
|
||||||
"patches.august_2013.p01_hr_settings",
|
"patches.august_2013.p01_hr_settings",
|
||||||
|
"patches.august_2013.p02_pos_setting_replace_customer account_with_customer",
|
||||||
]
|
]
|
||||||
Reference in New Issue
Block a user