fix: UOM autocomplete broken
All new recent sites seem to have all UOMs as disabled by default. The desired behaviour is exact opposite of this.
This commit is contained in:
committed by
Ankush Menat
parent
d6ee678ec9
commit
33aad4b950
@@ -1,6 +1,8 @@
|
||||
import unittest
|
||||
from functools import partial
|
||||
|
||||
import frappe
|
||||
|
||||
from erpnext.controllers import queries
|
||||
|
||||
|
||||
@@ -85,3 +87,6 @@ class TestQueries(unittest.TestCase):
|
||||
|
||||
wh = query(filters=[["Bin", "item_code", "=", "_Test Item"]])
|
||||
self.assertGreaterEqual(len(wh), 1)
|
||||
|
||||
def test_default_uoms(self):
|
||||
self.assertGreaterEqual(frappe.db.count("UOM", {"enabled": 1}), 10)
|
||||
|
||||
Reference in New Issue
Block a user