@hiennc24/constant 1.1.17 → 1.1.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -628,5 +628,13 @@ declare const COLLECTIONS: {
|
|
|
628
628
|
WAREHOUSE_STOCKTAKING_COLLECTION_NAME: string;
|
|
629
629
|
WAREHOUSE_STOCKTAKING_PRODUCT_REPOSITORY_NAME: string;
|
|
630
630
|
WAREHOUSE_STOCKTAKING_PRODUCT_COLLECTION_NAME: string;
|
|
631
|
+
BONUS_EMPLOYEE_COLLECTION_NAME: string;
|
|
632
|
+
BONUS_EMPLOYEE_REPOSITORY_NAME: string;
|
|
633
|
+
WORK_SHIFT_REGISTRATION_COLLECTION_NAME: string;
|
|
634
|
+
WORK_SHIFT_REGISTRATION_REPOSITORY_NAME: string;
|
|
635
|
+
WORK_SHIFT_REGISTRATION_DETAIL_COLLECTION_NAME: string;
|
|
636
|
+
WORK_SHIFT_REGISTRATION_DETAIL_REPOSITORY_NAME: string;
|
|
637
|
+
REQUEST_MANAGEMENT_COLLECTION_NAME: string;
|
|
638
|
+
REQUEST_MANAGEMENT_REPOSITORY_NAME: string;
|
|
631
639
|
};
|
|
632
640
|
export default COLLECTIONS;
|
|
@@ -208,8 +208,8 @@ const COLLECTIONS = {
|
|
|
208
208
|
SETTING_ECOMMERCE_PLATFORM_REPOSITORY_NAME: "settingEcommercePlatform",
|
|
209
209
|
SETTING_ECOMMERCE_PLATFORM_COLLECTION_NAME: "setting_ecommerce_platforms",
|
|
210
210
|
// setting invoices
|
|
211
|
-
SETTING_INVOICE_REPOSITORY_NAME:
|
|
212
|
-
SETTING_INVOICE_COLLECTION_NAME:
|
|
211
|
+
SETTING_INVOICE_REPOSITORY_NAME: "settingInvoice",
|
|
212
|
+
SETTING_INVOICE_COLLECTION_NAME: "setting_invoices",
|
|
213
213
|
// Province
|
|
214
214
|
PROVINCE_REPOSITORY_NAME: "province",
|
|
215
215
|
PROVINCE_COLLECTION_NAME: "provinces",
|
|
@@ -789,5 +789,13 @@ const COLLECTIONS = {
|
|
|
789
789
|
WAREHOUSE_STOCKTAKING_COLLECTION_NAME: "warehouse_stocktaking",
|
|
790
790
|
WAREHOUSE_STOCKTAKING_PRODUCT_REPOSITORY_NAME: "warehouseStocktakingProduct",
|
|
791
791
|
WAREHOUSE_STOCKTAKING_PRODUCT_COLLECTION_NAME: "warehouse_stocktaking_products",
|
|
792
|
+
BONUS_EMPLOYEE_COLLECTION_NAME: "bonus_employees",
|
|
793
|
+
BONUS_EMPLOYEE_REPOSITORY_NAME: "bonusEmployee",
|
|
794
|
+
WORK_SHIFT_REGISTRATION_COLLECTION_NAME: "work_shift_registrations",
|
|
795
|
+
WORK_SHIFT_REGISTRATION_REPOSITORY_NAME: "workShiftRegistration",
|
|
796
|
+
WORK_SHIFT_REGISTRATION_DETAIL_COLLECTION_NAME: "work_shift_registration_details",
|
|
797
|
+
WORK_SHIFT_REGISTRATION_DETAIL_REPOSITORY_NAME: "workShiftRegistrationDetail",
|
|
798
|
+
REQUEST_MANAGEMENT_COLLECTION_NAME: "request_managements",
|
|
799
|
+
REQUEST_MANAGEMENT_REPOSITORY_NAME: "requestManagement",
|
|
792
800
|
};
|
|
793
801
|
exports.default = COLLECTIONS;
|