Spaces:
Runtime error
Runtime error
Commit ·
87bb00a
1
Parent(s): 2103664
fix: correct MongoDB collection names for warehouse and uom
Browse filesscm_warehouses -> scm_warehouse
scm_uom_master -> scm_uom_group
- app/constants.py +2 -2
app/constants.py
CHANGED
|
@@ -6,5 +6,5 @@ Constants for sync worker microservice.
|
|
| 6 |
SCM_CATALOGUE_COLLECTION = "scm_catalogues"
|
| 7 |
SCM_EMPLOYEES_COLLECTION = "scm_employees"
|
| 8 |
SCM_MERCHANTS_COLLECTION = "scm_merchants"
|
| 9 |
-
SCM_WAREHOUSES_COLLECTION = "
|
| 10 |
-
SCM_UOM_COLLECTION = "
|
|
|
|
| 6 |
SCM_CATALOGUE_COLLECTION = "scm_catalogues"
|
| 7 |
SCM_EMPLOYEES_COLLECTION = "scm_employees"
|
| 8 |
SCM_MERCHANTS_COLLECTION = "scm_merchants"
|
| 9 |
+
SCM_WAREHOUSES_COLLECTION = "scm_warehouse"
|
| 10 |
+
SCM_UOM_COLLECTION = "scm_uom_group"
|