01 2018 档案

摘要:添加数据时候自动更新时间,注意添加数据时,要设置最大主键 时间的工具类:CommonUtil 人的工具类: ContextUtil ScmCompanyAccount scmCompanyAccount=new ScmCompanyAccount(); //设置最大主键 scmCompanyAccount.setAccountId(new L... 阅读全文
posted @ 2018-01-25 11:24 酷酷的飞 阅读(276) 评论(0) 推荐(0) 编辑
摘要:弹窗给选中数据赋值:t/** * 设置分派员 */ function onDispatchMan(){ var rec=ajaxgrid.getCheckedRecords(); if(rec.length==0){ $.alert("提示信息","至少要选择一条分派人员的记录"); return; } this.showPersonTree(); } /** *分派人选... 阅读全文
posted @ 2018-01-22 21:46 酷酷的飞 阅读(215) 评论(0) 推荐(0) 编辑
摘要:时间的比较: var rec = ajaxform.getRecord(); var sd = rec.get("startDate"); var ed = rec.get("endDate"); if(sd==null||sd=="null"||sd==""||ed==null||ed=="null"||ed==""){ return; }else{ if(ed<sd){ ... 阅读全文
posted @ 2018-01-18 13:10 酷酷的飞 阅读(141) 评论(0) 推荐(0) 编辑
摘要:按钮的判断 var record = ajaxgrid.getAllRecords(); if(record.length>0){ var isPack=record[0].get("dispatchDate"); if(isPack==null){ onsave_id.display("block"); dispatch_id.displ... 阅读全文
posted @ 2018-01-17 21:38 酷酷的飞 阅读(204) 评论(0) 推荐(0) 编辑
摘要:uep的保存操作分为ajaxgrid和ajaxform两种方式 1、ajaxgrid public void storeInfoSave(){ try { //两个dataWrap 一个dataWrap对应一个表 WzStoreInfo neWzStoreInfo = dataWrap.getData(); List updateList = this.coverWrap.ge... 阅读全文
posted @ 2018-01-15 21:39 酷酷的飞 阅读(161) 评论(0) 推荐(0) 编辑