From 00d344b93459a48f119aac992f195981dbdc7c2b Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 5 Jul 2013 11:32:18 +0530 Subject: [PATCH] [fixes] default records while install --- startup/install.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/startup/install.py b/startup/install.py index 1553e1b72fc..204df87913f 100644 --- a/startup/install.py +++ b/startup/install.py @@ -139,8 +139,10 @@ def import_defaults(): {'doctype': 'Supplier Type', 'name': 'Default Supplier Type', 'supplier_type': 'Default Supplier Type'}, # Price List - {'doctype': 'Price List', 'name': 'Default Price List', 'price_list_name': 'Default Price List'}, - {'doctype': 'Price List', 'name': 'Standard', 'price_list_name': 'Standard'}, + {'doctype': 'Price List', 'name': 'Default Price List', + 'price_list_name': 'Default Price List', "valid_for_all_countries": 1}, + {'doctype': 'Price List', 'name': 'Standard', 'price_list_name': 'Standard', + "valid_for_all_countries": 1}, # warehouse type {'doctype': 'Warehouse Type', 'name': 'Default Warehouse Type', 'warehouse_type': 'Default Warehouse Type'},