35 lines
1 KiB
JavaScript
35 lines
1 KiB
JavaScript
import DS from 'ember-data';
|
|
import Ember from 'ember';
|
|
|
|
export default DS.Model.extend({
|
|
strain: DS.belongsTo('strain'),
|
|
characteristic: DS.attr('string'),
|
|
textMeasurementType: DS.attr('string'),
|
|
txtValue: DS.attr('string'),
|
|
numValue: DS.attr('number'),
|
|
confidenceInterval: DS.attr('number'),
|
|
unitType: DS.attr('string'),
|
|
notes: DS.attr('string'),
|
|
testMethod: DS.attr('string'),
|
|
createdAt: DS.attr('date'),
|
|
updatedAt: DS.attr('date'),
|
|
computedValue: Ember.computed('textMeasurementType', 'txtValue', 'numValue', function() {
|
|
var val;
|
|
if (this.get('textMeasurementType')) {
|
|
val = this.get('textMeasurementType');
|
|
} else if (this.get('txtValue')) {
|
|
val = this.get('txtValue');
|
|
} else if (this.get('numValue')) {
|
|
val = this.get('numValue');
|
|
if (this.get('confidenceInterval')) {
|
|
val = val + ' ± ' + this.get('confidenceInterval');
|
|
}
|
|
} else {
|
|
val = "error";
|
|
}
|
|
if (this.get('unitType')) {
|
|
val = val + ' ' + this.get('unitType');
|
|
}
|
|
return val;
|
|
})
|
|
});
|