amisa-paths
Version:
nothing special
32 lines (27 loc) • 896 B
text/typescript
import * as PATHS from "./IPath";
export class Accounting {
public readonly Turnovor: PATHS.REPORT;
public readonly Review: PATHS.REPORT;
public readonly SaveVoucher: PATHS.SAVE;
public readonly SearchVouchers: PATHS.SEARCH;
constructor() {
this.Turnovor = { controller: 'Turnover', report: 'Report' };
this.Review = { controller: 'Review', report: 'Report' };
this.SaveVoucher = {
controller: 'voucher',
search: 'Search',
save: 'save',
getByHeadId: 'GetById',
getByLindId: 'GetByLineId',
editById: 'EditById',
delete: 'Delete'
};
this.SearchVouchers = {
controller: '',
search: 'search',
delete: 'delete',
lock: 'lock',
unLock: 'unLock',
}
}
}