This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/models/measurement.js
2015-09-09 11:40:15 -07:00

30 lines
1,008 B
JavaScript

import DS from 'ember-data';
export default DS.Model.extend({
strain : DS.belongsTo('strain', { async: false }),
characteristic : DS.belongsTo('characteristic', { async: false }),
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'),
createdBy : DS.attr('number'),
updatedBy : DS.attr('number'),
value: function() {
if (this.get('textMeasurementType')) {
return this.get('textMeasurementType');
}
if (this.get('txtValue')) {
return this.get('txtValue');
}
if (this.get('numValue')) {
return this.get('numValue');
}
return "error";
}.property('textMeasurementType', 'txtValue', 'numValue'),
});