Request parameters
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | def create_customer(xero_cust): | |
| try: | |
| customer = frappe.get_doc({ | |
| "doctype": "Customer", | |
| "customer_type": "Company", | |
| "customer_name" : xero_cust.customer_name, | |
| "customer_group": xero_cust.customer_group, | |
| "gst_category": xero_cust.gst_category, | |
| "gstin": xero_cust.gstin or "" | |
| }) | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | Executing erpnext.patches.v8_4.make_scorecard_records in demo.erpnext.dev (3b0ef62019) | |
| Traceback (most recent call last): | |
| File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/runpy.py", line 162, in _run_module_as_main | |
| "__main__", fname, loader, pkg_name) | |
| File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/runpy.py", line 72, in _run_code | |
| exec code in run_globals | |
| File "/Users/kanchanchauhan/frappe-bench/apps/frappe/frappe/utils/bench_helper.py", line 91, in <module> | |
| main() | |
| File "/Users/kanchanchauhan/frappe-bench/apps/frappe/frappe/utils/bench_helper.py", line 17, in main | |
| click.Group(commands=commands)(prog_name='bench') |