UNPKG

@dotbase/hl7-v2-message

Version:

Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.

323 lines (322 loc) 8.43 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields")); class IVT_Fields extends Hl7Fields_1.default { constructor() { super(...arguments); /** * Set Id – IVT */ this.IVT_1 = { index: 0, identifier: "IVT_1", description: "Set Id – IVT", length: 4, isOptional: false, isRepeatable: false, value: "", }; /** * Inventory Location Identifier */ this.IVT_2 = { index: 1, identifier: "IVT_2", description: "Inventory Location Identifier", length: 250, isOptional: false, isRepeatable: false, value: "", }; /** * Inventory Location Name */ this.IVT_3 = { index: 2, identifier: "IVT_3", description: "Inventory Location Name", length: 999, isOptional: true, isRepeatable: false, value: "", }; /** * Source Location Identifier */ this.IVT_4 = { index: 3, identifier: "IVT_4", description: "Source Location Identifier", length: 250, isOptional: true, isRepeatable: false, value: "", }; /** * Source Location Name */ this.IVT_5 = { index: 4, identifier: "IVT_5", description: "Source Location Name", length: 999, isOptional: true, isRepeatable: false, value: "", }; /** * Item Status */ this.IVT_6 = { index: 5, identifier: "IVT_6", description: "Item Status", length: 250, isOptional: true, isRepeatable: false, value: "", }; /** * Bin Location Identifier */ this.IVT_7 = { index: 6, identifier: "IVT_7", description: "Bin Location Identifier", length: 250, isOptional: true, isRepeatable: true, value: "", }; /** * Order Packaging */ this.IVT_8 = { index: 7, identifier: "IVT_8", description: "Order Packaging", length: 250, isOptional: true, isRepeatable: false, value: "", }; /** * Issue Packaging */ this.IVT_9 = { index: 8, identifier: "IVT_9", description: "Issue Packaging", length: 250, isOptional: true, isRepeatable: false, value: "", }; /** * Default Inventory Asset Account */ this.IVT_10 = { index: 9, identifier: "IVT_10", description: "Default Inventory Asset Account", length: 16, isOptional: true, isRepeatable: false, value: "", }; /** * Patient Chargeable Indicator */ this.IVT_11 = { index: 10, identifier: "IVT_11", description: "Patient Chargeable Indicator", length: 4, isOptional: true, isRepeatable: false, value: "", }; /** * Transaction Code */ this.IVT_12 = { index: 11, identifier: "IVT_12", description: "Transaction Code", length: 250, isOptional: true, isRepeatable: false, value: "", }; /** * Transaction amount - unit */ this.IVT_13 = { index: 12, identifier: "IVT_13", description: "Transaction amount - unit", length: 12, isOptional: true, isRepeatable: false, value: "", }; /** * Item Importance Code */ this.IVT_14 = { index: 13, identifier: "IVT_14", description: "Item Importance Code", length: 250, isOptional: true, isRepeatable: false, value: "", }; /** * Stocked Item Indicator */ this.IVT_15 = { index: 14, identifier: "IVT_15", description: "Stocked Item Indicator", length: 4, isOptional: true, isRepeatable: false, value: "", }; /** * Consignment Item Indicator */ this.IVT_16 = { index: 15, identifier: "IVT_16", description: "Consignment Item Indicator", length: 4, isOptional: true, isRepeatable: false, value: "", }; /** * Reusable Item Indicator */ this.IVT_17 = { index: 16, identifier: "IVT_17", description: "Reusable Item Indicator", length: 4, isOptional: true, isRepeatable: false, value: "", }; /** * Reusable Cost */ this.IVT_18 = { index: 17, identifier: "IVT_18", description: "Reusable Cost", length: 12, isOptional: true, isRepeatable: false, value: "", }; /** * Substitute Item Identifier */ this.IVT_19 = { index: 18, identifier: "IVT_19", description: "Substitute Item Identifier", length: 250, isOptional: true, isRepeatable: true, value: "", }; /** * Latex-Free Substitute Item Identifier */ this.IVT_20 = { index: 19, identifier: "IVT_20", description: "Latex-Free Substitute Item Identifier", length: 250, isOptional: true, isRepeatable: false, value: "", }; /** * Recommended Reorder Theory */ this.IVT_21 = { index: 20, identifier: "IVT_21", description: "Recommended Reorder Theory", length: 250, isOptional: true, isRepeatable: false, value: "", }; /** * Recommended Safety Stock Days */ this.IVT_22 = { index: 21, identifier: "IVT_22", description: "Recommended Safety Stock Days", length: 4, isOptional: true, isRepeatable: false, value: "", }; /** * Recommended Maximum Days Inventory */ this.IVT_23 = { index: 22, identifier: "IVT_23", description: "Recommended Maximum Days Inventory", length: 4, isOptional: true, isRepeatable: false, value: "", }; /** * Recommended Order Point */ this.IVT_24 = { index: 23, identifier: "IVT_24", description: "Recommended Order Point", length: 8, isOptional: true, isRepeatable: false, value: "", }; /** * Recommended Order Amount */ this.IVT_25 = { index: 24, identifier: "IVT_25", description: "Recommended Order Amount", length: 8, isOptional: true, isRepeatable: false, value: "", }; /** * Operating Room Par Level Indicator */ this.IVT_26 = { index: 25, identifier: "IVT_26", description: "Operating Room Par Level Indicator", length: 4, isOptional: true, isRepeatable: false, value: "", }; } } exports.default = IVT_Fields;