Exemplo n.º 1
0
 public String execute() {
   // 档口LIST
   shoteldept = usageMessage.getVegetableType();
   // 店名LIST
   shopNameListItems = usageMessage.getStore();
   return "success";
 }
Exemplo n.º 2
0
  public String execute() {
    UserInfoProcess u = new UserInfoProcess();
    String store = usageMessage.getUsrStoreid(u.getUserDetails().getUsername()); // 登录用户所在的店铺id
    hoteldaycostbtn = usageMessage.userAble(store, "");

    storelist = usageMessage.getStore();
    departlist = usageMessage.getDepart();
    emplist = usageMessage.getEmp();

    return "success";
  }
Exemplo n.º 3
0
 public String cookdressing() {
   Fixing fix = new Fixing();
   storelist = usageMessage.getStore();
   fixlist = cookdressingCtrl.qryAllFixing(fix);
   List<String> fl = new ArrayList();
   for (int i = 0; i < fixlist.size(); i++) {
     String name = "NONE";
     name = fixlist.get(i).getFixingname();
     fl.add(name);
   }
   fix.setFixlist(fl);
   fix.setYear(year);
   fix.setSeason(season);
   fix.setStoreid(storeid);
   resultList = cookdressingCtrl.qryFixUse(fix);
   return "success";
 }
Exemplo n.º 4
0
 public String execute() {
   Fixing fix = new Fixing();
   storelist = usageMessage.getStore();
   fixlist = cookdressingCtrl.qryAllFixing(fix);
   return "success";
 }