brotherton-erpnext/erpnext/patches/v4_0/new_address_template.py

10 lines
171 B
Python
Raw Normal View History

2014-06-05 09:14:16 +00:00
import frappe
def execute():
d = frappe.new_doc("Address Template")
d.update({"country":frappe.db.get_default("country")})
try:
d.insert()
except Exception:
pass