master
e 2019-07-19 17:47:52 +08:00
parent b86248564d
commit 698d890cd0
19 changed files with 822 additions and 809 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@ -39635,13 +39635,13 @@ end</a:Text>
</o:Column>
<o:Column Id="o2543">
<a:ObjectID>2C90CE4E-E1B2-4E40-8CCC-13A5C36CFEC6</a:ObjectID>
<a:Name>收货登记数量</a:Name>
<a:Name>批量收货数量</a:Name>
<a:Code>goods_qm_count</a:Code>
<a:CreationDate>1534327358</a:CreationDate>
<a:Creator>Administrator</a:Creator>
<a:ModificationDate>1534477570</a:ModificationDate>
<a:Modifier>Administrator</a:Modifier>
<a:Comment>收货登记数量</a:Comment>
<a:Comment>批量收货数量</a:Comment>
<a:DataType>varchar(32)</a:DataType>
<a:Length>32</a:Length>
<a:ExtendedAttributesText>{F4F16ECD-F2F1-4006-AF6F-638D5C65F35E},MYSQL50,56={9C949EAB-FF87-446D-938C-8F03A4ABDC8E},National,4=true

View File

@ -64,7 +64,7 @@ import com.zzjee.wmutil.wmUtil;
/**
* @Title: Controller
* @Description:
* @Description:
* @author erzhongxmu
* @date 2017-08-20 19:48:00
* @version V1.0
@ -89,7 +89,7 @@ public class WmInQmIController extends BaseController {
/**
*
*
*
* @return
*/
@ -193,7 +193,7 @@ public class WmInQmIController extends BaseController {
TagUtil.datagrid(response, dataGrid);
}
/**
*
*
*
* @return
*/
@ -203,14 +203,14 @@ public class WmInQmIController extends BaseController {
String message = null;
AjaxJson j = new AjaxJson();
wmInQmI = systemService.getEntity(WmInQmIEntity.class, wmInQmI.getId());
message = "收货登记删除成功";
message = "批量收货删除成功";
try {
wmInQmIService.delete(wmInQmI);
systemService.addLog(message, Globals.Log_Type_DEL,
Globals.Log_Leavel_INFO);
} catch (Exception e) {
e.printStackTrace();
message = "收货登记删除失败";
message = "批量收货删除失败";
throw new BusinessException(e.getMessage());
}
j.setMsg(message);
@ -313,7 +313,7 @@ public class WmInQmIController extends BaseController {
}
/**
*
*
*
* @return
*/
@ -322,7 +322,7 @@ public class WmInQmIController extends BaseController {
public AjaxJson doBatchDel(String ids, HttpServletRequest request) {
String message = null;
AjaxJson j = new AjaxJson();
message = "收货登记删除成功";
message = "批量收货删除成功";
try {
for (String id : ids.split(",")) {
WmInQmIEntity wmInQmI = systemService.getEntity(
@ -333,7 +333,7 @@ public class WmInQmIController extends BaseController {
}
} catch (Exception e) {
e.printStackTrace();
message = "收货登记删除失败";
message = "批量收货删除失败";
throw new BusinessException(e.getMessage());
}
j.setMsg(message);
@ -401,7 +401,7 @@ public class WmInQmIController extends BaseController {
}
if (goodsno <= 0) {
j.setSuccess(false);
j.setMsg("已经收货登记完毕");
j.setMsg("已经批量收货完毕");
}
}
mdgoods.setShpMingCheng(mvgoods.getGoodsName());
@ -410,7 +410,7 @@ public class WmInQmIController extends BaseController {
}
/**
*
*
*
* @return
*/
@ -420,7 +420,7 @@ public class WmInQmIController extends BaseController {
String message = null;
AjaxJson j = new AjaxJson();
String flag = "N";
message = "收货登记添加成功";
message = "批量收货添加成功";
try {
if (Double.parseDouble(wmInQmI.getQmOkQuat()) <= 0) {
j.setSuccess(false);
@ -545,7 +545,7 @@ public class WmInQmIController extends BaseController {
}
} catch (Exception e) {
e.printStackTrace();
message = "收货登记添加失败";
message = "批量收货添加失败";
throw new BusinessException(e.getMessage());
}
j.setMsg(message);
@ -557,7 +557,7 @@ public class WmInQmIController extends BaseController {
/**
*
*
*
* @return
@ -567,7 +567,7 @@ public class WmInQmIController extends BaseController {
public AjaxJson dobatchUpdatedate(WmInQmIEntity wmInQmI, HttpServletRequest request) {
String message = null;
AjaxJson j = new AjaxJson();
message = "收货登记更新成功";
message = "批量收货更新成功";
WmInQmIEntity t = wmInQmIService.get(WmInQmIEntity.class,
request.getParameter("id"));
@ -593,7 +593,7 @@ public class WmInQmIController extends BaseController {
/**
*
*
*
* @return
@ -603,7 +603,7 @@ public class WmInQmIController extends BaseController {
public AjaxJson dobatchUpdate(WmInQmIEntity wmInQmI, HttpServletRequest request) {
String message = null;
AjaxJson j = new AjaxJson();
message = "收货登记更新成功";
message = "批量收货更新成功";
WmInQmIEntity t = wmInQmIService.get(WmInQmIEntity.class,
request.getParameter("id"));
@ -637,7 +637,7 @@ public class WmInQmIController extends BaseController {
/**
*
*
*
* @return
*/
@ -646,7 +646,7 @@ public class WmInQmIController extends BaseController {
public AjaxJson doUpdate(WmInQmIEntity wmInQmI, HttpServletRequest request) {
String message = null;
AjaxJson j = new AjaxJson();
message = "收货登记更新成功";
message = "批量收货更新成功";
WmInQmIEntity t = wmInQmIService.get(WmInQmIEntity.class,
wmInQmI.getId());
try {
@ -668,7 +668,7 @@ public class WmInQmIController extends BaseController {
} catch (Exception e) {
e.printStackTrace();
message = "收货登记更新失败";
message = "批量收货更新失败";
throw new BusinessException(e.getMessage());
}
j.setMsg(message);
@ -676,7 +676,7 @@ public class WmInQmIController extends BaseController {
}
/**
*
*
*
* @return
*/
@ -733,7 +733,7 @@ public class WmInQmIController extends BaseController {
}
/**
*
*
*
* @return
*/
@ -790,9 +790,9 @@ for (WmInQmIEntity wmInQmIEntity : wmInQmIso) {
}
wmInQmIs.add(wmInQmIEntity);
}
modelMap.put(NormalExcelConstants.FILE_NAME, "收货登记");
modelMap.put(NormalExcelConstants.FILE_NAME, "批量收货");
modelMap.put(NormalExcelConstants.CLASS, WmInQmIEntity.class);
modelMap.put(NormalExcelConstants.PARAMS, new ExportParams("收货登记列表",
modelMap.put(NormalExcelConstants.PARAMS, new ExportParams("批量收货列表",
"导出人:" + ResourceUtil.getSessionUserName().getRealName(),
"导出信息"));
modelMap.put(NormalExcelConstants.DATA_LIST, wmInQmIs);
@ -809,9 +809,9 @@ for (WmInQmIEntity wmInQmIEntity : wmInQmIso) {
public String exportXlsByT(WmInQmIEntity wmInQmI,
HttpServletRequest request, HttpServletResponse response,
DataGrid dataGrid, ModelMap modelMap) {
modelMap.put(NormalExcelConstants.FILE_NAME, "收货登记");
modelMap.put(NormalExcelConstants.FILE_NAME, "批量收货");
modelMap.put(NormalExcelConstants.CLASS, WmInQmIEntity.class);
modelMap.put(NormalExcelConstants.PARAMS, new ExportParams("收货登记列表",
modelMap.put(NormalExcelConstants.PARAMS, new ExportParams("批量收货列表",
"导出人:" + ResourceUtil.getSessionUserName().getRealName(),
"导出信息"));
modelMap.put(NormalExcelConstants.DATA_LIST, new ArrayList());

View File

@ -12,6 +12,7 @@ import javax.servlet.http.HttpServletResponse;
import javax.validation.ConstraintViolation;
import javax.validation.Validator;
import com.zzjee.md.entity.MvCusEntity;
import org.apache.commons.collections.CollectionUtils;
import org.apache.log4j.Logger;
import org.jeecgframework.core.beanvalidator.BeanValidators;
@ -21,11 +22,7 @@ import org.jeecgframework.core.common.hibernate.qbc.CriteriaQuery;
import org.jeecgframework.core.common.model.json.AjaxJson;
import org.jeecgframework.core.common.model.json.DataGrid;
import org.jeecgframework.core.constant.Globals;
import org.jeecgframework.core.util.ExceptionUtil;
import org.jeecgframework.core.util.JSONHelper;
import org.jeecgframework.core.util.MyBeanUtils;
import org.jeecgframework.core.util.ResourceUtil;
import org.jeecgframework.core.util.StringUtil;
import org.jeecgframework.core.util.*;
import org.jeecgframework.poi.excel.ExcelImportUtil;
import org.jeecgframework.poi.excel.entity.ExportParams;
import org.jeecgframework.poi.excel.entity.ImportParams;
@ -256,6 +253,13 @@ public class WmToMoveGoodsController extends BaseController {
WmToMoveGoodsEntity t = wmToMoveGoodsService.get(WmToMoveGoodsEntity.class, wmToMoveGoods.getId());
try {
MyBeanUtils.copyBeanNotNull2Bean(wmToMoveGoods, t);
try{
MvCusEntity mvcus = systemService.findUniqueByProperty(MvCusEntity.class, "cusCode",wmToMoveGoods.getToCusCode() ) ;
t.setToCusName(mvcus.getCusName());
}catch (Exception e){
}
wmToMoveGoodsService.saveOrUpdate(t);
systemService.addLog(message, Globals.Log_Type_UPDATE, Globals.Log_Leavel_INFO);
} catch (Exception e) {

View File

@ -100,7 +100,7 @@ public class WmImNoticeIEntity implements java.io.Serializable {
/**未清数量*/
private java.lang.String goodsWqmCount;
/**收货登记数量*/
/**批量收货数量*/
private java.lang.String goodsQmCount;
/**行项目状态*/
@ -529,7 +529,7 @@ public class WmImNoticeIEntity implements java.io.Serializable {
/**
*: java.lang.String
*@return: java.lang.String
*@return: java.lang.String
*/
@Column(name ="GOODS_QM_COUNT",nullable=true,length=32)
@ -539,7 +539,7 @@ public class WmImNoticeIEntity implements java.io.Serializable {
/**
*: java.lang.String
*@param: java.lang.String
*@param: java.lang.String
*/
public void setGoodsQmCount(java.lang.String goodsQmCount){
this.goodsQmCount = goodsQmCount;

View File

@ -20,7 +20,7 @@ import org.jeecgframework.poi.excel.annotation.Excel;
/**
* @Title: Entity
* @Description:
* @Description:
* @author erzhongxmu
* @date 2017-09-11 15:08:53
* @version V1.0

View File

@ -69,7 +69,7 @@ public class SmsSendTask {
// TODO: handle exception
}
try {//查找储位 设置收货登记基本数量
try {//查找储位 设置批量收货基本数量
List<WmInQmIEntity> WmInQmlist = new ArrayList<WmInQmIEntity>();
hql = null;
hql = "from WmInQmIEntity t where t.binSta=? and (t.binId is null or t.binId = '' ) ";

View File

@ -5,7 +5,7 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>收货登记</title>
<title>批量收货</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="online/template/ledefault/css/vendor.css">
@ -73,8 +73,8 @@ window.onload = function() {
</head>
<body>
<t:formvalid formid="formobj" dialog="true" usePlugin="password" layout="div" >
<t:formvalid formid="formobj" dialog="true" usePlugin="password" layout="table" action="wmInQmIController.do?doAdd" tiptype="1" >
<%--<t:formvalid formid="formobj" dialog="true" usePlugin="password" layout="div" >--%>
<input type="hidden" id="btn_sub" class="btn_sub"/>
<input type="hidden" id="id" name="id"/>
<input type="hidden" id="binSta" name="binSta" value="N"/>
@ -82,7 +82,7 @@ window.onload = function() {
<div class="tab-wrapper">
<!-- tab -->
<ul class="nav nav-tabs">
<li role="presentation" class="active"><a href="javascript:void(0);">收货登记</a></li>
<li role="presentation" class="active"><a href="javascript:void(0);">批量收货</a></li>
</ul>
<!-- tab内容 -->
<div class="con-wrapper" id="con-wrapper1" style="display: block;">
@ -212,18 +212,18 @@ window.onload = function() {
</div>
</div>
<%--<div class="row" id = "sub_tr" style="display: none;">--%>
<%--<div class="col-xs-12 layout-header">--%>
<%--<div class="col-xs-6"></div>--%>
<%--<div class="col-xs-6"><button type="button" onclick="neibuClick();" class="btn btn-default">提交</button></div>--%>
<%--</div>--%>
<%--</div>--%>
<div class="row" id = "sub_tr" style="display: none;">
<div class="col-xs-12 layout-header">
<div class="col-xs-6"></div>
<div class="col-xs-6"><button type="button" onclick="neibuClick();" class="btn btn-default">提交</button></div>
</div>
</div>
</div>
</div>
<div class="con-wrapper" id="con-wrapper2" style="display: block;"></div>
</div>
<div style="margin:3px auto"><button onclick="sub('formobj');">验收</button></div>
<%--<div style="margin:3px auto"><button onclick="sub('formobj');">验收</button></div>--%>
</t:formvalid>

View File

@ -5,7 +5,7 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>收货登记</title>
<title>批量收货</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="online/template/ledefault/css/vendor.css">
@ -53,7 +53,7 @@
<div class="tab-wrapper">
<!-- tab -->
<ul class="nav nav-tabs">
<li role="presentation" class="active"><a href="javascript:void(0);">收货登记</a></li>
<li role="presentation" class="active"><a href="javascript:void(0);">批量收货</a></li>
</ul>
<!-- tab内容 -->
<div class="con-wrapper" id="con-wrapper1" style="display: block;">

View File

@ -6,7 +6,7 @@
<script type="text/javascript" src="plug-in/jquery/jquery-autocomplete/jquery.autocomplete.min.js"></script>
<div class="easyui-layout" fit="true">
<div region="center" style="padding:0px;border:0px">
<t:datagrid name="wmInQmIList" checkbox="true" pagination="true" fitColumns="false" title="收货登记" actionUrl="wmInQmIController.do?datagrid" idField="id" fit="false" queryMode="group">
<t:datagrid name="wmInQmIList" checkbox="true" pagination="true" fitColumns="false" title="批量收货" actionUrl="wmInQmIController.do?datagrid" idField="id" fit="false" queryMode="group">
<t:dgCol title="操作" field="opt" width="120"></t:dgCol>
<t:dgCol title="主键" field="id" hidden="true" queryMode="single" width="120"></t:dgCol>
<t:dgCol title="验收人" field="createName" queryMode="single" width="80"></t:dgCol>

View File

@ -484,26 +484,26 @@
typeGroupCode="sf_yn" hasLabel="false" title="下架任务是否已生成"></t:dictSelect>
<label class="Validform_label" style="display: none;">下架任务是否已生成</label>
</td>
<td align="left">
<input name="wmOmNoticeIList[#index#].binOm" maxlength="32"
ignore="ignore"
type="text" class="form-control" style="width:120px;" >
<label class="Validform_label" style="display: none;">出货储位</label>
</td>
<%--<td align="left">--%>
<%--<input name="wmOmNoticeIList[#index#].binOm" maxlength="32"--%>
<%--ignore="ignore"--%>
<%--type="text" class="form-control" style="width:120px;" >--%>
<%--<label class="Validform_label" style="display: none;">出货储位</label>--%>
<%--</td>--%>
<td align="left">
<input name="wmOmNoticeIList[#index#].binId" maxlength="32"
ignore="ignore"
type="text" class="form-control" style="width:120px;" >
<label class="Validform_label" style="display: none;">出货托盘</label>
</td>
<td align="left">
<input name="wmOmNoticeIList[#index#].goodsProData" maxlength="32"
type="text" class="form-control" onClick="WdatePicker()" style="background: url('plug-in/ace/images/datetime.png') no-repeat scroll right center transparent;width:160px;"
ignore="ignore"
>
<label class="Validform_label" style="display: none;">生产日期</label>
</td>
<%--<td align="left">--%>
<%--<input name="wmOmNoticeIList[#index#].binId" maxlength="32"--%>
<%--ignore="ignore"--%>
<%--type="text" class="form-control" style="width:120px;" >--%>
<%--<label class="Validform_label" style="display: none;">出货托盘</label>--%>
<%--</td>--%>
<%--<td align="left">--%>
<%--<input name="wmOmNoticeIList[#index#].goodsProData" maxlength="32"--%>
<%--type="text" class="form-control" onClick="WdatePicker()" style="background: url('plug-in/ace/images/datetime.png') no-repeat scroll right center transparent;width:160px;"--%>
<%--ignore="ignore"--%>
<%-->--%>
<%--<label class="Validform_label" style="display: none;">生产日期</label>--%>
<%--</td>--%>
</tr>
</tbody>
</table>

View File

@ -308,6 +308,7 @@
<div class="col-xs-1 text-center">
<b>附件</b>
</div>
</div>
<div class="col-xs-2">
<t:webUploader auto="true" pathValues="${wmOmNoticeHPage.fuJian}" name="fuJian" duplicate="true" fileNumLimit="3"></t:webUploader>
@ -478,26 +479,26 @@
typeGroupCode="sf_yn" hasLabel="false" title="下架任务是否已生成"></t:dictSelect>
<label class="Validform_label" style="display: none;">下架任务是否已生成</label>
</td>
<td align="left">
<input name="wmOmNoticeIList[#index#].binOm" maxlength="32"
ignore="ignore"
type="text" class="form-control" style="width:120px;" >
<label class="Validform_label" style="display: none;">出货储位</label>
</td>
<%--<td align="left">--%>
<%--<input name="wmOmNoticeIList[#index#].binOm" maxlength="32"--%>
<%--ignore="ignore"--%>
<%--type="text" class="form-control" style="width:120px;" >--%>
<%--<label class="Validform_label" style="display: none;">出货储位</label>--%>
<%--</td>--%>
<td align="left">
<input name="wmOmNoticeIList[#index#].binId" maxlength="32"
ignore="ignore"
type="text" class="form-control" style="width:120px;" >
<label class="Validform_label" style="display: none;">出货托盘</label>
</td>
<td align="left">
<input name="wmOmNoticeIList[#index#].goodsProData" maxlength="32"
type="text" class="form-control" onClick="WdatePicker()" style="background: url('plug-in/ace/images/datetime.png') no-repeat scroll right center transparent;width:160px;"
ignore="ignore"
>
<label class="Validform_label" style="display: none;">生产日期</label>
</td>
<%--<td align="left">--%>
<%--<input name="wmOmNoticeIList[#index#].binId" maxlength="32"--%>
<%--ignore="ignore"--%>
<%--type="text" class="form-control" style="width:120px;" >--%>
<%--<label class="Validform_label" style="display: none;">出货托盘</label>--%>
<%--</td>--%>
<%--<td align="left">--%>
<%--<input name="wmOmNoticeIList[#index#].goodsProData" maxlength="32"--%>
<%--type="text" class="form-control" onClick="WdatePicker()" style="background: url('plug-in/ace/images/datetime.png') no-repeat scroll right center transparent;width:160px;"--%>
<%--ignore="ignore"--%>
<%-->--%>
<%--<label class="Validform_label" style="display: none;">生产日期</label>--%>
<%--</td>--%>
</tr>
</tbody>
</table>

View File

@ -96,15 +96,15 @@
<th>
下架任务是否已生成
</th>
<th>
出货储位
</th>
<th>
出货托盘
</th>
<th>
生产日期
</th>
<%--<th>--%>
<%--出货储位--%>
<%--</th>--%>
<%--<th>--%>
<%--出货托盘--%>
<%--</th>--%>
<%--<th>--%>
<%--生产日期--%>
<%--</th>--%>
</tr>
</thead>
@ -133,22 +133,22 @@
<label class="Validform_label" style="display: none;">下架任务是否已生成</label>
</td>
<td>
<input name="wmOmNoticeIList[0].binOm" maxlength="32"
type="text" class="form-control" style="width:120px;" >
<label class="Validform_label" style="display: none;">出货储位</label>
</td>
<%--<td>--%>
<%--<input name="wmOmNoticeIList[0].binOm" maxlength="32"--%>
<%--type="text" class="form-control" style="width:120px;" >--%>
<%--<label class="Validform_label" style="display: none;">出货储位</label>--%>
<%--</td>--%>
<td>
<input name="wmOmNoticeIList[0].binId" maxlength="32"
type="text" class="form-control" style="width:120px;" >
<label class="Validform_label" style="display: none;">出货托盘</label>
</td>
<td align="left">
<input name="wmOmNoticeIList[0].goodsProData" maxlength="32"
type="text" class="form-control" onClick="WdatePicker()" style="background: url('plug-in/ace/images/datetime.png') no-repeat scroll right center transparent;width:160px;" >
<label class="Validform_label" style="display: none;">生产日期</label>
</td>
<%--<td>--%>
<%--<input name="wmOmNoticeIList[0].binId" maxlength="32"--%>
<%--type="text" class="form-control" style="width:120px;" >--%>
<%--<label class="Validform_label" style="display: none;">出货托盘</label>--%>
<%--</td>--%>
<%--<td align="left">--%>
<%--<input name="wmOmNoticeIList[0].goodsProData" maxlength="32"--%>
<%--type="text" class="form-control" onClick="WdatePicker()" style="background: url('plug-in/ace/images/datetime.png') no-repeat scroll right center transparent;width:160px;" >--%>
<%--<label class="Validform_label" style="display: none;">生产日期</label>--%>
<%--</td>--%>
</tr>
@ -208,26 +208,26 @@ wmOmNoticeIList[${stuts.index }].goodsId<input name="wmOmNoticeIList[${stuts.ind
typeGroupCode="sf_yn" defaultVal="${poVal.planSta}" hasLabel="false" title="下架任务是否已生成"></t:dictSelect>
<label class="Validform_label" style="display: none;">下架任务是否已生成</label>
</td>
<td align="left">
<input name="wmOmNoticeIList[${stuts.index }].binOm" maxlength="32"
type="text" class="form-control" style="width:120px;" value="${poVal.binOm }">
<label class="Validform_label" style="display: none;">出货储位</label>
</td>
<td align="left">
<input name="wmOmNoticeIList[${stuts.index }].binId" maxlength="32"
type="text" class="form-control" style="width:120px;" value="${poVal.binId }">
<label class="Validform_label" style="display: none;">出货托盘</label>
</td>
<%--<td align="left">--%>
<%--<input name="wmOmNoticeIList[${stuts.index }].binOm" maxlength="32"--%>
<%--type="text" class="form-control" style="width:120px;" value="${poVal.binOm }">--%>
<%--<label class="Validform_label" style="display: none;">出货储位</label>--%>
<%--</td>--%>
<%--<td align="left">--%>
<%--<input name="wmOmNoticeIList[${stuts.index }].binId" maxlength="32"--%>
<%--type="text" class="form-control" style="width:120px;" value="${poVal.binId }">--%>
<%--<label class="Validform_label" style="display: none;">出货托盘</label>--%>
<%--</td>--%>
<!-- <td align="left"> -->
<%-- <input name="wmOmNoticeIList[${stuts.index }].goodsQuaok" maxlength="32" --%>
<%-- type="text" class="form-control" style="width:120px;" value="${poVal.goodsQuaok }"> --%>
<!-- <label class="Validform_label" style="display: none;">已经出货数量</label> -->
<!-- </td> -->
<td align="left">
<input name="wmOmNoticeIList[${stuts.index }].goodsProData" maxlength="32"
type="text" class="form-control" onClick="WdatePicker()" style="background: url('plug-in/ace/images/datetime.png') no-repeat scroll right center transparent;width:160px;" value="<fmt:formatDate value='${poVal.goodsProData}' type="date" pattern="yyyy-MM-dd"/>">
<label class="Validform_label" style="display: none;">生产日期</label>
</td>
<%--<td align="left">--%>
<%--<input name="wmOmNoticeIList[${stuts.index }].goodsProData" maxlength="32"--%>
<%--type="text" class="form-control" onClick="WdatePicker()" style="background: url('plug-in/ace/images/datetime.png') no-repeat scroll right center transparent;width:160px;" value="<fmt:formatDate value='${poVal.goodsProData}' type="date" pattern="yyyy-MM-dd"/>">--%>
<%--<label class="Validform_label" style="display: none;">生产日期</label>--%>
<%--</td>--%>
<!-- <td align="left"> -->
<%-- <input name="wmOmNoticeIList[${stuts.index }].binOm" maxlength="32" --%>
<%-- type="text" class="form-control" style="width:120px;" value="${poVal.binOm }"> --%>

View File

@ -250,6 +250,9 @@
<b>转移客户:</b>
</div>
<div class="col-xs-3">
<t:dictSelect field="toCusCode" type="list" extendJson=" {class:'form-control',datatype:'*',style:'width:230px'}"
defaultVal="${wmToMoveGoodsPage.toCusCode}" dictTable="mv_cus" dictField="cus_code" dictText="cus_name" hasLabel="false" title="客户编码"></t:dictSelect>
<
<input id="toCusCode" name="toCusCode" type="text" class="form-control"
ignore="ignore"
value='${wmToMoveGoodsPage.toCusCode}' />
@ -259,17 +262,17 @@
</div>
<div class="row show-grid">
<div class="col-xs-3 text-center">
<b>转移客户名称:</b>
</div>
<div class="col-xs-3">
<input id="toCusName" name="toCusName" style="width:300px" type="text" class="form-control"
ignore="ignore"
value='${wmToMoveGoodsPage.toCusName}' />
<span class="Validform_checktip" style="float:left;height:0px;"></span>
<label class="Validform_label" style="display: none">转移客户名称</label>
</div>
<%--<div class="row show-grid">--%>
<%--<div class="col-xs-3 text-center">--%>
<%--<b>转移客户名称:</b>--%>
<%--</div>--%>
<%--<div class="col-xs-3">--%>
<%--<input id="toCusName" name="toCusName" style="width:300px" type="text" class="form-control"--%>
<%--ignore="ignore"--%>
<%--value='${wmToMoveGoodsPage.toCusName}' />--%>
<%--<span class="Validform_checktip" style="float:left;height:0px;"></span>--%>
<%--<label class="Validform_label" style="display: none">转移客户名称</label>--%>
<%--</div>--%>
</div>

View File

@ -3,7 +3,7 @@
<t:base type="jquery,easyui,tools,DatePicker"></t:base>
<div class="easyui-layout" fit="true">
<div region="center" style="padding:0px;border:0px">
<t:datagrid name="wmInQmIbatchList" checkbox="true" pagination="false" fitColumns="false" title="收货登记" actionUrl="wmImNoticeHController.do?datagridbatch" idField="id" fit="true" queryMode="group">
<t:datagrid name="wmInQmIbatchList" checkbox="true" pagination="false" fitColumns="false" title="批量收货" actionUrl="wmImNoticeHController.do?datagridbatch" idField="id" fit="true" queryMode="group">
<t:dgCol title="操作" field="opt" width="50"></t:dgCol>
<t:dgCol title="主键" field="id" hidden="true" queryMode="single" width="120"></t:dgCol>
<t:dgCol title="创建人名称" field="createName" queryMode="single" width="80"></t:dgCol>
@ -42,9 +42,12 @@
// createdetailwindow()
// function addbytab(){
addOneTab("验收", url);
// addOneTab("验收", url);
createwindow("验收", url,"740px","420px");
// }
// add('收货登记', url, "wmInQmIbatchList","100%","100%");
// add('批量收货', url, "wmInQmIbatchList","100%","100%");
}
//导入
function ImportXls() {

View File

@ -41,7 +41,9 @@ function wmim(id) {
// createdetailwindow()
// function addbytab(){
addOneTab("退货验收", url);
createwindow("退货验收", url,"740px","420px");
// addOneTab("退货验收", url);
// var url = "wmInQmIController.do?goAddBatch&id=" + id;
// add('退货登记', url, "wmInQmIbatchList","680","450");
}