define(['modules/templates/addtemplate'], function (AddTemplate) {
var q = function (ipt, inspect) {
this.inspect = inspect;
this.inspectmodule = ipt;
};
q.prototype.description = "Inspect";
q.prototype.version = "1.0.0.0";
q.prototype.createContent = function () {
var holder = $('
');
holder.append('
');
holder.append('
');
holder.append('
');
holder.append('
');
holder.append('
');
holder.append('
');
holder.append('
');
holder.append('
');
holder.append('
');
var funcs = $('');
holder.append(funcs);
var _this = this;
holder.find('.inspect-assetname span').click(function () {
window.open("report.aspx?rid=" + _this.inspect.Id, "_blank");
});
funcs.append($('').click(function () {
window.open("report.aspx?rid=" + _this.inspect.Id, "_blank");
}).attr('title', 'Detail'));
this.holder = holder;
if (this.inspect != null) {
this.updateContent(this.inspect);
}
return holder;
};
q.prototype.updateContent = function (inspect) {
if (this.inspect != inspect) {
this.inspect = inspect;
}
this.holder.find('.inspect-assetname span').text(inspect.AssetName);
this.holder.find('.inspect-vin span').text(inspect.VIN);
this.holder.find('.inspect-make span').text(inspect.MakeName);
this.holder.find('.inspect-model span').text(inspect.ModelName);
this.holder.find('.inspect-type span').text(inspect.TypeName);
this.holder.find('.inspect-templatename span').text(inspect.TemplateName);
var statustext = '';
if (inspect.Status == 0)
statustext = 'Draft';
else if (inspect.Status == 1)
statustext = 'Committed';
this.holder.find('.inspect-status span').text(statustext);
this.holder.find('.inspect-committime span').text(inspect.CommitTimeLocalStr);
this.holder.find('.inspect-commituser span').text(inspect.CommitedByUserName);
};
return q;
});