@hiennc24/constant 1.1.20 → 1.1.22
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.
|
@@ -638,5 +638,9 @@ declare const COLLECTIONS: {
|
|
|
638
638
|
REQUEST_MANAGEMENT_REPOSITORY_NAME: string;
|
|
639
639
|
SETTING_APPROVE_COLLECTION_NAME: string;
|
|
640
640
|
SETTING_APPROVE_REPOSITORY_NAME: string;
|
|
641
|
+
VOUCHER_PURCHASE_ORDER_REPOSITORY_NAME: string;
|
|
642
|
+
VOUCHER_PURCHASE_ORDER_COLLECTION_NAME: string;
|
|
643
|
+
VOUCHER_PURCHASE_ORDER_PRODUCT_REPOSITORY_NAME: string;
|
|
644
|
+
VOUCHER_PURCHASE_ORDER_PRODUCT_COLLECTION_NAME: string;
|
|
641
645
|
};
|
|
642
646
|
export default COLLECTIONS;
|
|
@@ -799,5 +799,9 @@ const COLLECTIONS = {
|
|
|
799
799
|
REQUEST_MANAGEMENT_REPOSITORY_NAME: "requestManagement",
|
|
800
800
|
SETTING_APPROVE_COLLECTION_NAME: "setting_approves",
|
|
801
801
|
SETTING_APPROVE_REPOSITORY_NAME: "settingApprove",
|
|
802
|
+
VOUCHER_PURCHASE_ORDER_REPOSITORY_NAME: "voucherPurchaseOrder",
|
|
803
|
+
VOUCHER_PURCHASE_ORDER_COLLECTION_NAME: "voucher_purchase_orders",
|
|
804
|
+
VOUCHER_PURCHASE_ORDER_PRODUCT_REPOSITORY_NAME: "voucherPurchaseOrderProduct",
|
|
805
|
+
VOUCHER_PURCHASE_ORDER_PRODUCT_COLLECTION_NAME: "voucher_purchase_order_products",
|
|
802
806
|
};
|
|
803
807
|
exports.default = COLLECTIONS;
|
|
@@ -268,16 +268,27 @@
|
|
|
268
268
|
"NAME": "api-sales.lead-detail"
|
|
269
269
|
},
|
|
270
270
|
"API_SALES_LEAD_STATUS": {
|
|
271
|
-
"NAME": "api-sales.lead-status"
|
|
271
|
+
"NAME": "api-sales.lead-status",
|
|
272
|
+
"ACTION_GET_LIST": "getListLeadStatus",
|
|
273
|
+
"ACTION_UPDATE_MANY": "updateManyLeadStatus"
|
|
272
274
|
},
|
|
273
275
|
"API_SALES_LEAD_HISTORY": {
|
|
274
|
-
"NAME": "api-sales.lead-history"
|
|
276
|
+
"NAME": "api-sales.lead-history",
|
|
277
|
+
"ACTION_GET_LIST": "getListLeadHistory"
|
|
275
278
|
},
|
|
276
279
|
"API_SALES_LEAD_SCHEDULE": {
|
|
277
|
-
"NAME": "api-sales.lead-schedule"
|
|
280
|
+
"NAME": "api-sales.lead-schedule",
|
|
281
|
+
"ACTION_GET_LIST": "getListLeadSchedule",
|
|
282
|
+
"ACTION_CREATE": "createLeadSchedule",
|
|
283
|
+
"ACTION_UPDATE": "updateLeadSchedule",
|
|
284
|
+
"ACTION_DELETE": "deleteLeadSchedule"
|
|
278
285
|
},
|
|
279
286
|
"API_SALES_LEAD_COMMENT": {
|
|
280
|
-
"NAME": "api-sales.lead-comment"
|
|
287
|
+
"NAME": "api-sales.lead-comment",
|
|
288
|
+
"ACTION_GET_LIST": "getListLeadComment",
|
|
289
|
+
"ACTION_CREATE": "createLeadComment",
|
|
290
|
+
"ACTION_UPDATE": "updateLeadComment",
|
|
291
|
+
"ACTION_DELETE": "deleteLeadComment"
|
|
281
292
|
},
|
|
282
293
|
"API_SALES_SETTING": {
|
|
283
294
|
"NAME": "api-sales.settings",
|