Exemplo n.º 1
0
 /**
  * 分中心确认入库
  *
  * @return
  */
 public String instock() {
   textbookBiz.setUpdateUser(getCurrentRyxx());
   try {
     textbookBiz.setToFzx(getCurrentFzxDto());
     textbookBizService.instock(textbookBiz);
     optSuccess();
   } catch (Exception e) {
     e.printStackTrace();
     optFailure();
   }
   return SUCCESS;
 }
Exemplo n.º 2
0
 public String edit() {
   initTbgts();
   textbookBiz = textbookBizService.get(textbookBiz);
   csds = courseSeriesService.getDtos();
   slds = studyLevelService.getDtosByCourseSeries(textbookBiz.getCourseSeries());
   return SUCCESS;
 }
Exemplo n.º 3
0
 public String save() {
   textbookBiz.setToFzx(getCurrentFzxDto());
   try {
     textbookBizService.save(textbookBiz);
     optSuccess();
   } catch (Exception e) {
     e.printStackTrace();
     optFailure();
   }
   return SUCCESS;
 }
Exemplo n.º 4
0
 public String listForInstock() {
   tbs = textbookBizService.getAllByTextbookOrder(textbookBiz.getTextbookOrder());
   return SUCCESS;
 }
Exemplo n.º 5
0
 public String query() {
   tbs = textbookBizService.getAllByTextbookOrder(textbookBiz.getTextbookOrder());
   return SUCCESS;
 }