@hiennc24/constant 1.5.17 → 1.5.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.
|
@@ -784,5 +784,21 @@ declare const COLLECTIONS: {
|
|
|
784
784
|
AFTER_SALES_COMPLAINT_COLLECTION_NAME: string;
|
|
785
785
|
CONTRACT_PRODUCTS_REPOSITORY_NAME: string;
|
|
786
786
|
CONTRACT_PRODUCTS_COLLECTION_NAME: string;
|
|
787
|
+
INVOICE_LEDGER_REPOSITORY_NAME: string;
|
|
788
|
+
INVOICE_LEDGER_COLLECTION_NAME: string;
|
|
789
|
+
PAYMENT_TRANSACTION_REPOSITORY_NAME: string;
|
|
790
|
+
PAYMENT_TRANSACTION_COLLECTION_NAME: string;
|
|
791
|
+
DEBT_EVENT_REPOSITORY_NAME: string;
|
|
792
|
+
DEBT_EVENT_COLLECTION_NAME: string;
|
|
793
|
+
NETTING_RECORD_REPOSITORY_NAME: string;
|
|
794
|
+
NETTING_RECORD_COLLECTION_NAME: string;
|
|
795
|
+
FX_RATE_REPOSITORY_NAME: string;
|
|
796
|
+
FX_RATE_COLLECTION_NAME: string;
|
|
797
|
+
JOURNAL_ENTRY_REPOSITORY_NAME: string;
|
|
798
|
+
JOURNAL_ENTRY_COLLECTION_NAME: string;
|
|
799
|
+
CHART_OF_ACCOUNTS_REPOSITORY_NAME: string;
|
|
800
|
+
CHART_OF_ACCOUNTS_COLLECTION_NAME: string;
|
|
801
|
+
BATCH_METADATA_REPOSITORY_NAME: string;
|
|
802
|
+
BATCH_METADATA_COLLECTION_NAME: string;
|
|
787
803
|
};
|
|
788
804
|
export default COLLECTIONS;
|
|
@@ -983,5 +983,26 @@ const COLLECTIONS = {
|
|
|
983
983
|
// Contract Products
|
|
984
984
|
CONTRACT_PRODUCTS_REPOSITORY_NAME: "ContractProducts",
|
|
985
985
|
CONTRACT_PRODUCTS_COLLECTION_NAME: "contract_products",
|
|
986
|
+
// Debt Management
|
|
987
|
+
INVOICE_LEDGER_REPOSITORY_NAME: "InvoiceLedger",
|
|
988
|
+
INVOICE_LEDGER_COLLECTION_NAME: "invoice_ledgers",
|
|
989
|
+
PAYMENT_TRANSACTION_REPOSITORY_NAME: "PaymentTransaction",
|
|
990
|
+
PAYMENT_TRANSACTION_COLLECTION_NAME: "payment_transactions",
|
|
991
|
+
DEBT_EVENT_REPOSITORY_NAME: "DebtEvent",
|
|
992
|
+
DEBT_EVENT_COLLECTION_NAME: "debt_events",
|
|
993
|
+
// Debt Netting
|
|
994
|
+
NETTING_RECORD_REPOSITORY_NAME: "NettingRecord",
|
|
995
|
+
NETTING_RECORD_COLLECTION_NAME: "netting_records",
|
|
996
|
+
// Debt Multi-Currency
|
|
997
|
+
FX_RATE_REPOSITORY_NAME: "FxRate",
|
|
998
|
+
FX_RATE_COLLECTION_NAME: "fx_rates",
|
|
999
|
+
// Debt GL Integration
|
|
1000
|
+
JOURNAL_ENTRY_REPOSITORY_NAME: "JournalEntry",
|
|
1001
|
+
JOURNAL_ENTRY_COLLECTION_NAME: "journal_entries",
|
|
1002
|
+
CHART_OF_ACCOUNTS_REPOSITORY_NAME: "ChartOfAccounts",
|
|
1003
|
+
CHART_OF_ACCOUNTS_COLLECTION_NAME: "chart_of_accounts",
|
|
1004
|
+
// Debt Reconciliation & Batch
|
|
1005
|
+
BATCH_METADATA_REPOSITORY_NAME: "BatchMetadata",
|
|
1006
|
+
BATCH_METADATA_COLLECTION_NAME: "batch_metadata",
|
|
986
1007
|
};
|
|
987
1008
|
exports.default = COLLECTIONS;
|
|
@@ -221,18 +221,20 @@
|
|
|
221
221
|
"SVC_WAREHOUSE_VOUCHERS": {
|
|
222
222
|
"NAME": "svc-warehouse.vouchers",
|
|
223
223
|
"ACTION_GET_LIST": "getList",
|
|
224
|
+
"ACTION_REJECT_VOUCHER": "reject",
|
|
224
225
|
"ACTION_CREATE_VOUCHER": "create",
|
|
225
|
-
"
|
|
226
|
+
"ACTION_CREATE_VOUCHER_FROM_ORDER": "createVoucherFromOrder",
|
|
226
227
|
"ACTION_UPDATE_VOUCHER": "update",
|
|
227
|
-
"ACTION_CHANGE_STATUS_VOUCHER": "changeStatus",
|
|
228
228
|
"ACTION_DELETE_VOUCHER": "delete",
|
|
229
229
|
"ACTION_CANCEL_VOUCHER": "cancel",
|
|
230
|
+
"ACTION_BULK_DELETE": "bulkDelete",
|
|
230
231
|
"ACTION_APPROVE_VOUCHER": "approve",
|
|
231
232
|
"ACTION_COMPLETE_VOUCHER": "complete",
|
|
232
|
-
"ACTION_REJECT_VOUCHER": "reject",
|
|
233
233
|
"ACTION_UPDATE_STATUS": "updateStatus",
|
|
234
|
+
"ACTION_GET_DETAIL_VOUCHER": "getDetail",
|
|
234
235
|
"ACTION_CONFIRM_VOUCHER": "confirmVoucher",
|
|
235
|
-
"
|
|
236
|
+
"ACTION_CHANGE_STATUS_VOUCHER": "changeStatus",
|
|
237
|
+
"ACTION_GET_ORDER_AVAILABLE_LIST": "getOrderAvailableList"
|
|
236
238
|
},
|
|
237
239
|
"SVC_WAREHOUSE_VOUCHER_PRODUCTS": {
|
|
238
240
|
"NAME": "svc-warehouse.voucher-products",
|
package/package.json
CHANGED