hravemzdy.procezor
Version:
payroll-procezor Salary, Health, Social, Taxing Properties for years 2010-2022
47 lines • 2.18 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
if (typeof b !== "function" && b !== null)
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.TermResult = void 0;
var TermSymbol_1 = require("./TermSymbol");
var MonthCode_1 = require("./MonthCode");
var ContractCode_1 = require("./ContractCode");
var PositionCode_1 = require("./PositionCode");
var VariantCode_1 = require("./VariantCode");
var ArticleCode_1 = require("./ArticleCode");
var TermResult = /** @class */ (function (_super) {
__extends(TermResult, _super);
function TermResult(_target, _spec) {
var _this = _super.call(this, MonthCode_1.MonthCode.new(), ContractCode_1.ContractCode.new(), PositionCode_1.PositionCode.new(), VariantCode_1.VariantCode.new(), ArticleCode_1.ArticleCode.new()) || this;
_this.target = _target;
_this.spec = _spec;
if (_this.target !== undefined) {
_this.monthCode = _this.target.monthCode;
_this.contract = _this.target.contract;
_this.position = _this.target.position;
_this.variant = _this.target.variant;
_this.article = _this.target.article;
_this.concept = _this.target.concept;
}
return _this;
}
TermResult.prototype.conceptDescr = function () {
return "ConceptCode for ".concat(this.concept.value);
};
return TermResult;
}(TermSymbol_1.TermSymbol));
exports.TermResult = TermResult;
//# sourceMappingURL=TermResult.js.map