@innotrade/enapso-config
Version:
ENAPSO Enterprise Configuration Management
32 lines (27 loc) • 956 B
JavaScript
// ENAPSO Enterprise Configuration Management
// (C) Copyright 2019-2020 Innotrade GmbH, Herzogenrath, NRW, Germany
// Author: Alexander Schulze
// this is the company/enterprise configuration file across all business units, subsidiaries and departments
// here only configurations across an entire company/enterprise (headquarter) should be maintained
const { RootConfig } = require('./root_config');
class CompanyConfig extends RootConfig {
constructor(data) {
super(data);
this.company = {
name: 'Innotrade GmbH',
address: 'An Vieslapp 29',
city: 'Herzogenrath',
zipcode: '52134',
country: 'Germany',
state: 'NRW',
taxNo: '202/5773/0088',
vatId: 'DE-226637398',
registerCourt: 'Amtsgericht Aachen',
registerNo: 'HRB 11790'
};
}
}
module.exports = {
CompanyConfig,
config: CompanyConfig
};