ordersprinter/webapp/elements/rating.js

32 lines
1.1 KiB
JavaScript
Raw Normal View History

2020-11-19 22:47:44 +01:00
/**
*
*/
function Rating (day,serviceArr,kitchenArr,total) {
this.day = day;
this.service = serviceArr;
this.kitchen = kitchenArr;
this.total = total;
}
Rating.prototype.getServiceInfo = function() {
var good = "<img src=img/green.png style='height:20px;width:" + this.service[0] + "%;' />";
var ok = "<img src=img/yellow.png style='height:20px;width:" + this.service[1] + "%;' />";
var bad = "<img src=img/red.png style='height:20px;width:" + this.service[2] + "%;' />";
var nothing = "<img src=img/gray.png style='height:20px;width:" + this.service[3] + "%;' />";
return good + ok + bad + nothing;
};
Rating.prototype.getKitchenInfo = function() {
var good = "<img src=img/green.png style='height:20px;width:" + this.kitchen[0] + "%;' />";
var ok = "<img src=img/yellow.png style='height:20px;width:" + this.kitchen[1] + "%;' />";
var bad = "<img src=img/red.png style='height:20px;width:" + this.kitchen[2] + "%;' />";
var nothing = "<img src=img/gray.png style='height:20px;width:" + this.kitchen[3] + "%;' />";
return good + ok + bad + nothing;
};
Rating.prototype.getTotal = function() {
return this.total;
};