amisa-paths
Version:
nothing special
22 lines (21 loc) • 2.39 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PathManager = void 0;
const Accounting_1 = require("./Accounting");
class PathManager {
constructor() {
this.auth = { controller: 'auth', login: 'login', tokenValidation: 'tokenValidation', selectActiveYear: 'selectActiveYear' };
this.Hesab = { controller: 'Hesab', save: 'Save', tree: 'SearchTreeView', treeChild: 'GetTreeViewChildren', get: 'GetByCode', new: 'GetNewCode', list: 'SearchListView', excel: 'exportToExcel', pdf: 'exportToPdf', history: 'history' };
this.Markaz1 = { controller: 'Markaz1', save: 'Save', tree: 'SearchTreeView', treeChild: 'GetTreeViewChildren', get: 'GetByCode', new: 'GetNewCode', list: 'SearchListView', excel: 'exportToExcel', pdf: 'exportToPdf', history: 'history' };
this.Markaz2 = { controller: 'Markaz2', save: 'Save', tree: 'SearchTreeView', treeChild: 'GetTreeViewChildren', get: 'GetByCode', new: 'GetNewCode', list: 'SearchListView', excel: 'exportToExcel', pdf: 'exportToPdf', history: 'history' };
this.Markaz3 = { controller: 'Markaz3', save: 'Save', tree: 'SearchTreeView', treeChild: 'GetTreeViewChildren', get: 'GetByCode', new: 'GetNewCode', list: 'SearchListView', excel: 'exportToExcel', pdf: 'exportToPdf', history: 'history' };
this.Kala = { controller: 'Kala', save: 'Save', tree: 'SearchTreeView', treeChild: 'GetTreeViewChildren', get: 'GetByCode', new: 'GetNewCode', list: 'AdvanceList', excel: 'exportToExcel', pdf: 'exportToPdf', history: 'history' };
this.Bank = { controller: 'Bank', save: 'Save', get: 'GetByCode', new: 'GetNewCode', list: 'SearchL', excel: 'exportToExcel', pdf: 'exportToPdf', history: 'history' };
this.Branch = { controller: 'Branch', save: 'Save', get: 'GetByCode', new: 'GetNewCode', list: 'SearchL', excel: 'exportToExcel', pdf: 'exportToPdf', history: 'history' };
this.Currency = { controller: 'Currency', save: 'Save', get: 'GetByCode', new: 'GetNewCode', list: 'SearchL', excel: 'exportToExcel', pdf: 'exportToPdf', history: 'history' };
this.Anbar = { controller: 'Anbar', save: 'Save', get: 'GetByCode', new: 'GetNewCode', list: 'SearchL', excel: 'exportToExcel', pdf: 'exportToPdf', history: 'history' };
}
get accounting() { return Accounting_1.Accounting; }
;
}
exports.PathManager = PathManager;