test: added warehouse for TCS Item as it is a Stock Item (#24942)

This commit is contained in:
Sagar Vora 2021-03-18 18:07:21 +05:30 committed by GitHub
parent 8ee1146f72
commit 6ac11a04b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -177,7 +177,7 @@ def cancel_invoices():
for d in purchase_invoices:
frappe.get_doc('Purchase Invoice', d).cancel()
for d in sales_invoices:
frappe.get_doc('Sales Invoice', d).cancel()
@ -229,7 +229,8 @@ def create_sales_invoice(**args):
'qty': args.qty or 1,
'rate': args.rate or 10000,
'cost_center': 'Main - _TC',
'expense_account': 'Cost of Goods Sold - _TC'
'expense_account': 'Cost of Goods Sold - _TC',
'warehouse': args.warehouse or '_Test Warehouse - _TC'
}]
})
@ -353,4 +354,4 @@ def create_tax_with_holding_category():
'company': '_Test Company',
'account': 'TDS - _TC'
}]
}).insert()
}).insert()