From 2f7ab065fb11c6f2a00e31901439997796c96914 Mon Sep 17 00:00:00 2001 From: joezsweet Date: Mon, 5 Feb 2018 11:54:32 +0100 Subject: [PATCH] - removed barcodes from force_item_fields --- erpnext/controllers/accounts_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/controllers/accounts_controller.py b/erpnext/controllers/accounts_controller.py index 1401d37143..f2259d56a3 100644 --- a/erpnext/controllers/accounts_controller.py +++ b/erpnext/controllers/accounts_controller.py @@ -12,7 +12,7 @@ from erpnext.controllers.sales_and_purchase_return import validate_return from erpnext.accounts.party import get_party_account_currency, validate_party_frozen_disabled from erpnext.exceptions import InvalidCurrency -force_item_fields = ("item_group", "barcodes", "brand", "stock_uom") +force_item_fields = ("item_group", "brand", "stock_uom") class AccountsController(TransactionBase): def __init__(self, *args, **kwargs):