@hiennc24/constant 1.2.17 → 1.2.19
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.
|
@@ -380,6 +380,8 @@ declare const COLLECTIONS: {
|
|
|
380
380
|
VENDOR_CONFIRM_COLLECTION_NAME: string;
|
|
381
381
|
INVOICES_REPOSITORY_NAME: string;
|
|
382
382
|
INVOICES_COLLECTION_NAME: string;
|
|
383
|
+
INVOICE_PRODUCT_ITEMS_REPOSITORY_NAME: string;
|
|
384
|
+
INVOICE_PRODUCT_ITEMS_COLLECTION_NAME: string;
|
|
383
385
|
SALE_TYPES_REPOSITORY_NAME: string;
|
|
384
386
|
SALE_TYPES_COLLECTION_NAME: string;
|
|
385
387
|
SALE_ORDERS_REPOSITORY_NAME: string;
|
|
@@ -480,6 +480,8 @@ const COLLECTIONS = {
|
|
|
480
480
|
VENDOR_CONFIRM_COLLECTION_NAME: "vendor_confirm",
|
|
481
481
|
INVOICES_REPOSITORY_NAME: "invoice",
|
|
482
482
|
INVOICES_COLLECTION_NAME: "invoices",
|
|
483
|
+
INVOICE_PRODUCT_ITEMS_REPOSITORY_NAME: "invoiceProductItems",
|
|
484
|
+
INVOICE_PRODUCT_ITEMS_COLLECTION_NAME: "invoice_product_items",
|
|
483
485
|
SALE_TYPES_REPOSITORY_NAME: "saleType",
|
|
484
486
|
SALE_TYPES_COLLECTION_NAME: "sale_types",
|
|
485
487
|
SALE_ORDERS_REPOSITORY_NAME: "salesOrder",
|
|
@@ -6,14 +6,16 @@
|
|
|
6
6
|
"ACTION_DELETE": "delete",
|
|
7
7
|
"ACTION_GET": "get"
|
|
8
8
|
},
|
|
9
|
-
"
|
|
10
|
-
"NAME": "svc-shared.
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
|
|
9
|
+
"SVC_INVOICE": {
|
|
10
|
+
"NAME": "svc-shared.invoices",
|
|
11
|
+
"ACTION_CREATE": "create",
|
|
12
|
+
"ACTION_GET_LISTS": "getList",
|
|
13
|
+
"ACTION_GET_DETAIL": "getDetail",
|
|
14
|
+
"ACTION_UPDATE": "update",
|
|
15
|
+
"ACTION_DELETE": "delete"
|
|
16
|
+
},
|
|
17
|
+
"SVC_INVOICE_PRODUCT_ITEMS": {
|
|
18
|
+
"NAME": "svc-shared.invoice-product-items"
|
|
17
19
|
},
|
|
18
20
|
"SCHEDULE": {
|
|
19
21
|
"NAME": "schedule",
|