style: Re-run pre-commit

This commit is contained in:
marination 2022-04-22 16:12:58 +05:30
parent b848e61954
commit 8d632e9b9c
2 changed files with 7 additions and 7 deletions

View File

@ -64,10 +64,10 @@ class Quotation(SellingController):
if not has_web_item:
frappe.throw(
_(
"Row #{0}: Item {1} must have a Website Item for Shopping Cart Quotations"
).format(item.idx, frappe.bold(item.item_code)),
title=_("Unpublished Item")
_("Row #{0}: Item {1} must have a Website Item for Shopping Cart Quotations").format(
item.idx, frappe.bold(item.item_code)
),
title=_("Unpublished Item"),
)
def has_sales_order(self):

View File

@ -131,11 +131,11 @@ class TestQuotation(FrappeTestCase):
self.assertRaises(frappe.ValidationError, make_sales_order, quotation.name)
def test_shopping_cart_without_website_item(self):
if frappe.db.exists('Website Item', {'item_code': '_Test Item Home Desktop 100'}):
frappe.get_last_doc('Website Item', {'item_code': '_Test Item Home Desktop 100'}).delete()
if frappe.db.exists("Website Item", {"item_code": "_Test Item Home Desktop 100"}):
frappe.get_last_doc("Website Item", {"item_code": "_Test Item Home Desktop 100"}).delete()
quotation = frappe.copy_doc(test_records[0])
quotation.order_type = 'Shopping Cart'
quotation.order_type = "Shopping Cart"
quotation.valid_till = getdate()
self.assertRaises(frappe.ValidationError, quotation.validate)