35 lines
892 B
JavaScript
35 lines
892 B
JavaScript
"use strict";
|
|
/**
|
|
* Value object for ticket item.
|
|
*
|
|
* @constructor
|
|
*/
|
|
function TicketSummaryVO() {
|
|
// simple fields
|
|
this.summary = '';
|
|
this.type = '';
|
|
this.status = '';
|
|
this.submitDate = '';
|
|
this.assignee = '';
|
|
this.modifiedDate = '';
|
|
this.isAutomatic = false;
|
|
this.subType = '';
|
|
}
|
|
/**
|
|
* Setup inheritance chain.
|
|
*/
|
|
TicketSummaryVO.prototype = Object.create(BaseVO.prototype);
|
|
TicketSummaryVO.prototype.constructor = TicketSummaryVO;
|
|
/**
|
|
* @override
|
|
* @returns {Array}
|
|
*/
|
|
TicketSummaryVO.prototype.getProps = function () {
|
|
return BaseVO.prototype.getProps().concat('displayId', 'summary', 'type', 'status', 'submitDate', 'modifiedDate', 'assignee', 'isAutomatic');
|
|
};
|
|
TicketSummaryVO.prototype.postBuild = function () {
|
|
if (this.type === "change" || this.type === "task") {
|
|
this.subType = this.isAutomatic ? "-auto" : "";
|
|
}
|
|
};
|