isoxml
Version:
JavaScript library to parse and generate ISOXML (ISO11783-10) files
112 lines (111 loc) • 2.65 kB
JavaScript
import { TAGS } from './constants';
import { registerEntityClass } from '../classRegistry';
import { fromXML, toXML } from '../utils';
const ATTRIBUTES = {
A: {
name: 'WorkerId',
type: 'xs:ID',
isPrimaryId: true,
isOptional: false,
isOnlyV4: false,
},
B: {
name: 'WorkerLastName',
type: 'xs:string',
isPrimaryId: false,
isOptional: false,
isOnlyV4: false,
},
C: {
name: 'WorkerFirstName',
type: 'xs:string',
isPrimaryId: false,
isOptional: true,
isOnlyV4: false,
},
D: {
name: 'WorkerStreet',
type: 'xs:string',
isPrimaryId: false,
isOptional: true,
isOnlyV4: false,
},
E: {
name: 'WorkerPOBox',
type: 'xs:string',
isPrimaryId: false,
isOptional: true,
isOnlyV4: false,
},
F: {
name: 'WorkerPostalCode',
type: 'xs:string',
isPrimaryId: false,
isOptional: true,
isOnlyV4: false,
},
G: {
name: 'WorkerCity',
type: 'xs:string',
isPrimaryId: false,
isOptional: true,
isOnlyV4: false,
},
H: {
name: 'WorkerState',
type: 'xs:string',
isPrimaryId: false,
isOptional: true,
isOnlyV4: false,
},
I: {
name: 'WorkerCountry',
type: 'xs:string',
isPrimaryId: false,
isOptional: true,
isOnlyV4: false,
},
J: {
name: 'WorkerPhone',
type: 'xs:string',
isPrimaryId: false,
isOptional: true,
isOnlyV4: false,
},
K: {
name: 'WorkerMobile',
type: 'xs:string',
isPrimaryId: false,
isOptional: true,
isOnlyV4: false,
},
L: {
name: 'WorkerLicenseNumber',
type: 'xs:string',
isPrimaryId: false,
isOptional: true,
isOnlyV4: false,
},
M: {
name: 'WorkerEMail',
type: 'xs:string',
isPrimaryId: false,
isOptional: true,
isOnlyV4: false,
},
};
const CHILD_TAGS = {};
export class Worker {
constructor(attributes, isoxmlManager) {
this.attributes = attributes;
this.isoxmlManager = isoxmlManager;
this.tag = TAGS.Worker;
}
static fromXML(xml, isoxmlManager, internalId, targetClass = Worker) {
return fromXML(xml, isoxmlManager, targetClass, ATTRIBUTES, CHILD_TAGS, internalId);
}
toXML() {
return toXML(this, ATTRIBUTES, CHILD_TAGS);
}
}
registerEntityClass('main', TAGS.Worker, Worker);