kcommons 14.3.0 → 14.3.2
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.
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { _ASNQrData } from "../asn.typings";
|
|
2
|
+
import { _VESQrData } from "../company/masters/ves.typings";
|
|
2
3
|
import { _POQrData } from "../po.typings";
|
|
3
4
|
export interface IQRBaseData {
|
|
4
5
|
qr_document_type: QR_DOCUMENT_TYPE;
|
|
@@ -8,4 +9,4 @@ export declare enum QR_DOCUMENT_TYPE {
|
|
|
8
9
|
VES = "VES",
|
|
9
10
|
PO = "PO"
|
|
10
11
|
}
|
|
11
|
-
export type IQRDataTypes = _ASNQrData | _POQrData;
|
|
12
|
+
export type IQRDataTypes = _ASNQrData | _POQrData | _VESQrData;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { IASN, INestedASN } from "../../asn.typings";
|
|
2
2
|
import { IPaginationFilters } from "../../common/paginationFilters.typings";
|
|
3
|
+
import { IQRBaseData, QR_DOCUMENT_TYPE } from "../../common/qr.typings";
|
|
3
4
|
import { INestedCompany } from "../../company.typings";
|
|
4
5
|
import { INestedEntityApprovalChainEntry } from "../../entityApprovalChainEntry.typings";
|
|
5
6
|
import { INestedPo, IPurchaseOrder } from "../../po.typings";
|
|
@@ -8,6 +9,15 @@ import { INestedUser } from "../../user.typings";
|
|
|
8
9
|
import { INestedVESCheckpointTracking } from "../_junctions/vesCheckpointTracking.typings";
|
|
9
10
|
import { INestedCheckpoint } from "./checkpoints.typings";
|
|
10
11
|
import { INestedVESItem } from "./vesItem.typings";
|
|
12
|
+
export interface IVESQrData {
|
|
13
|
+
ves_id: string;
|
|
14
|
+
ves_no: string;
|
|
15
|
+
}
|
|
16
|
+
export declare abstract class _VESQrData implements IVESQrData, IQRBaseData {
|
|
17
|
+
abstract qr_document_type: QR_DOCUMENT_TYPE.VES;
|
|
18
|
+
abstract ves_id: string;
|
|
19
|
+
abstract ves_no: string;
|
|
20
|
+
}
|
|
11
21
|
export declare enum VES_REQUESTING_ENTITY_TYPE {
|
|
12
22
|
STORE_LOCATION = "store_location",
|
|
13
23
|
CHECKPOINT = "checkpoint"
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.VES_INCLUDE = exports.VES_STATUS = exports.VES_VIEW_TABS = exports.VES_PARENT_DOCUMENT_TYPE = exports.VES_REQUESTING_ENTITY_TYPE = void 0;
|
|
3
|
+
exports.VES_INCLUDE = exports.VES_STATUS = exports.VES_VIEW_TABS = exports.VES_PARENT_DOCUMENT_TYPE = exports.VES_REQUESTING_ENTITY_TYPE = exports._VESQrData = void 0;
|
|
4
|
+
class _VESQrData {
|
|
5
|
+
}
|
|
6
|
+
exports._VESQrData = _VESQrData;
|
|
4
7
|
var VES_REQUESTING_ENTITY_TYPE;
|
|
5
8
|
(function (VES_REQUESTING_ENTITY_TYPE) {
|
|
6
9
|
VES_REQUESTING_ENTITY_TYPE["STORE_LOCATION"] = "store_location";
|