UNPKG

@dotbase/hl7-v2-message

Version:

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

359 lines (358 loc) 9.4 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields")); class ITM_Fields extends Hl7Fields_1.default { constructor() { super(...arguments); /** * Item Identifier */ this.ITM_1 = { index: 0, identifier: "ITM_1", description: "Item Identifier", length: undefined, isOptional: false, isRepeatable: false, value: "", }; /** * Item Description */ this.ITM_2 = { index: 1, identifier: "ITM_2", description: "Item Description", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Item Status */ this.ITM_3 = { index: 2, identifier: "ITM_3", description: "Item Status", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Item Type */ this.ITM_4 = { index: 3, identifier: "ITM_4", description: "Item Type ", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Item Category */ this.ITM_5 = { index: 4, identifier: "ITM_5", description: "Item Category", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Subject to Expiration Indicator */ this.ITM_6 = { index: 5, identifier: "ITM_6", description: "Subject to Expiration Indicator", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Manufacturer Identifier */ this.ITM_7 = { index: 6, identifier: "ITM_7", description: "Manufacturer Identifier", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Manufacturer Name */ this.ITM_8 = { index: 7, identifier: "ITM_8", description: "Manufacturer Name", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Manufacturer Catalog Number */ this.ITM_9 = { index: 8, identifier: "ITM_9", description: "Manufacturer Catalog Number", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Manufacturer Labeler Identification Code */ this.ITM_10 = { index: 9, identifier: "ITM_10", description: "Manufacturer Labeler Identification Code", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Patient Chargeable Indicator */ this.ITM_11 = { index: 10, identifier: "ITM_11", description: "Patient Chargeable Indicator ", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Transaction Code */ this.ITM_12 = { index: 11, identifier: "ITM_12", description: "Transaction Code ", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Transaction amount - unit */ this.ITM_13 = { index: 12, identifier: "ITM_13", description: "Transaction amount - unit", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Stocked Item Indicator */ this.ITM_14 = { index: 13, identifier: "ITM_14", description: "Stocked Item Indicator", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Supply Risk Codes */ this.ITM_15 = { index: 14, identifier: "ITM_15", description: "Supply Risk Codes ", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Approving Regulatory Agency */ this.ITM_16 = { index: 15, identifier: "ITM_16", description: "Approving Regulatory Agency ", length: undefined, isOptional: true, isRepeatable: true, value: "", }; /** * Latex Indicator */ this.ITM_17 = { index: 16, identifier: "ITM_17", description: "Latex Indicator", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Ruling Act */ this.ITM_18 = { index: 17, identifier: "ITM_18", description: "Ruling Act", length: undefined, isOptional: true, isRepeatable: true, value: "", }; /** * Item Natural Account Code */ this.ITM_19 = { index: 18, identifier: "ITM_19", description: "Item Natural Account Code", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Approved To Buy Quantity */ this.ITM_20 = { index: 19, identifier: "ITM_20", description: "Approved To Buy Quantity", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Approved To Buy Price */ this.ITM_21 = { index: 20, identifier: "ITM_21", description: "Approved To Buy Price ", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Taxable Item Indicator */ this.ITM_22 = { index: 21, identifier: "ITM_22", description: "Taxable Item Indicator", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Freight Charge Indicator */ this.ITM_23 = { index: 22, identifier: "ITM_23", description: "Freight Charge Indicator", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Item Set Indicator */ this.ITM_24 = { index: 23, identifier: "ITM_24", description: "Item Set Indicator", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Item Set Identifier */ this.ITM_25 = { index: 24, identifier: "ITM_25", description: "Item Set Identifier", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Track Department Usage Indicator */ this.ITM_26 = { index: 25, identifier: "ITM_26", description: "Track Department Usage Indicator", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Procedure Code */ this.ITM_27 = { index: 26, identifier: "ITM_27", description: "Procedure Code ", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Procedure Code Modifier */ this.ITM_28 = { index: 27, identifier: "ITM_28", description: "Procedure Code Modifier", length: undefined, isOptional: true, isRepeatable: true, value: "", }; /** * Special Handling Code */ this.ITM_29 = { index: 28, identifier: "ITM_29", description: "Special Handling Code", length: undefined, isOptional: true, isRepeatable: false, value: "", }; } } exports.default = ITM_Fields;