fix: travis

This commit is contained in:
Saqib Ansari 2020-04-14 14:03:02 +05:30
parent 4a85b42da0
commit aa196c0a66
8 changed files with 12 additions and 9 deletions

View File

@ -761,7 +761,7 @@
"depends_on": "is_fixed_asset", "depends_on": "is_fixed_asset",
"fetch_from": "item_code.asset_category", "fetch_from": "item_code.asset_category",
"fieldname": "asset_category", "fieldname": "asset_category",
"fieldtype": "Data", "fieldtype": "Link",
"label": "Asset Category", "label": "Asset Category",
"options": "Asset Category", "options": "Asset Category",
"read_only": 1 "read_only": 1
@ -777,7 +777,7 @@
"idx": 1, "idx": 1,
"istable": 1, "istable": 1,
"links": [], "links": [],
"modified": "2020-03-11 14:20:17.297284", "modified": "2020-04-14 03:33:32.981331",
"modified_by": "Administrator", "modified_by": "Administrator",
"module": "Accounts", "module": "Accounts",
"name": "Purchase Invoice Item", "name": "Purchase Invoice Item",

View File

@ -58,8 +58,7 @@ def make_depreciation_entry(asset_name, date=None):
"account": accumulated_depreciation_account, "account": accumulated_depreciation_account,
"credit_in_account_currency": d.depreciation_amount, "credit_in_account_currency": d.depreciation_amount,
"reference_type": "Asset", "reference_type": "Asset",
"reference_name": asset.name, "reference_name": asset.name
"cost_center": ""
} }
debit_entry = { debit_entry = {

View File

@ -2,6 +2,7 @@
{ {
"doctype": "Opportunity", "doctype": "Opportunity",
"name": "_Test Opportunity 1", "name": "_Test Opportunity 1",
"company": "Wind Power LLC",
"opportunity_from": "Lead", "opportunity_from": "Lead",
"enquiry_type": "Sales", "enquiry_type": "Sales",
"party_name": "_T-Lead-00001", "party_name": "_T-Lead-00001",

View File

@ -198,7 +198,8 @@ def add_healthcare_service_unit_tree_root():
{ {
"doctype": "Healthcare Service Unit", "doctype": "Healthcare Service Unit",
"healthcare_service_unit_name": "All Healthcare Service Units", "healthcare_service_unit_name": "All Healthcare Service Units",
"is_group": 1 "is_group": 1,
"company": "Wind Power LLC"
} }
] ]
insert_record(record) insert_record(record)

View File

@ -32,7 +32,8 @@
"is_active": 1, "is_active": 1,
"is_default": 1, "is_default": 1,
"item": "_Test Item Home Desktop Manufactured", "item": "_Test Item Home Desktop Manufactured",
"quantity": 1.0 "quantity": 1.0,
"company": "_Test Company"
}, },
{ {
"scrap_items":[ "scrap_items":[
@ -78,7 +79,8 @@
"is_default": 1, "is_default": 1,
"currency": "USD", "currency": "USD",
"item": "_Test FG Item", "item": "_Test FG Item",
"quantity": 1.0 "quantity": 1.0,
"company":"_Test Company"
}, },
{ {
"operations": [ "operations": [
@ -160,6 +162,7 @@
"currency": "USD", "currency": "USD",
"item": "_Test Variant Item", "item": "_Test Variant Item",
"quantity": 1.0, "quantity": 1.0,
"with_operations": 1 "with_operations": 1,
"company": "_Test Company"
} }
] ]

View File

@ -435,7 +435,6 @@ def install_defaults(args=None):
global_defaults.update({ global_defaults.update({
'current_fiscal_year': current_fiscal_year.name, 'current_fiscal_year': current_fiscal_year.name,
'default_currency': args.get('currency'), 'default_currency': args.get('currency'),
'default_company':args.get('company_name') ,
"country": args.get("country"), "country": args.get("country"),
}) })

View File