Example #1
0
	public double getTotaalPrijs() {
		bedrag = 0;
		for (MenuItem item : bestelling.getItems()) {
			bedrag = bedrag + item.getPrijs();
		}
		return bedrag;
	}
Example #2
0
	public String getOutput() {
		output = "";
		for (MenuItem item : bestelling.getItems()) {
			output = output + "€" + f.format(item.getPrijs()) + "     " + item.getNaam()+ "\n";
		}
		return output;
	}
Example #3
0
 public void clearMenuLijst(){
     bestelling.clearMenuLijst();
 }
Example #4
0
 public void afrekenen(int tafelnummer, String updateQuery){
     bestelling.afrekenen(updateQuery);
 }
Example #5
0
 public void save(int tafelnummer){
     bestelling.save(tafelnummer);
 }
Example #6
0
        public void addMenuItem(String menucode) {
		bestelling.addMenuItem(Integer.parseInt(menucode));
	}