入库通知,出库通知样式修改

master
cez 2021-12-11 23:07:03 +08:00
parent 8053a75df7
commit 4b2b490b6d
4 changed files with 518 additions and 511 deletions

View File

@ -1,5 +1,5 @@
<%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<%@include file="/context/mytags.jsp"%> <%@include file="/context/mytags.jsp" %>
<!DOCTYPE html> <!DOCTYPE html>
@ -39,31 +39,32 @@
</head> </head>
<script type="text/javascript"> <script type="text/javascript">
function sumin(){ function sumin() {
// console.log($("#wmImNoticeI_table").children("tr")); // console.log($("#wmImNoticeI_table").children("tr"));
trList = $("#add_wmImNoticeI_table").children("tr"); trList = $("#add_wmImNoticeI_table").children("tr");
alert(trList.length); alert(trList.length);
var heji = 0; var heji = 0;
var dh = 0; var dh = 0;
for (var i=0;i<trList.length;i++) { for (var i = 0; i < trList.length; i++) {
var tdArr = trList.eq(i).find("td"); var tdArr = trList.eq(i).find("td");
var history_income_remark = tdArr.eq(2).find('input').val();// 合计 var history_income_remark = tdArr.eq(2).find('input').val();// 合计
dh = history_income_remark; dh = history_income_remark;
heji = heji*1 + dh*1; heji = heji * 1 + dh * 1;
} }
alert(heji); alert(heji);
} }
function setcond(){ function setcond() {
var cuscode = $("#cusCodeid").find("option:selected").val(); var cuscode = $("#cusCodeid").find("option:selected").val();
$('#cuscodeh').val(cuscode); $('#cuscodeh').val(cuscode);
// var controls=document.getElementsByName("wmImNoticeIList[0].goodsCode"); // var controls=document.getElementsByName("wmImNoticeIList[0].goodsCode");
} }
$(document).ready(function(){
$(document).ready(function () {
init(); init();
$("#jform_tab .con-wrapper").hide(); //Hide all tab content $("#jform_tab .con-wrapper").hide(); //Hide all tab content
$("#jform_tab li:first").addClass("active").show(); //Activate first tab $("#jform_tab li:first").addClass("active").show(); //Activate first tab
@ -71,19 +72,19 @@
//On Click Event //On Click Event
$("#jform_tab li").click(function() { $("#jform_tab li").click(function () {
$("#jform_tab li").removeClass("active"); //Remove any "active" class $("#jform_tab li").removeClass("active"); //Remove any "active" class
$(this).addClass("active"); //Add "active" class to selected tab $(this).addClass("active"); //Add "active" class to selected tab
$("#jform_tab .con-wrapper").hide(); //Hide all tab content $("#jform_tab .con-wrapper").hide(); //Hide all tab content
var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
$(activeTab).fadeIn(); //Fade in the active content $(activeTab).fadeIn(); //Fade in the active content
//$(""+activeTab).show(); //$(""+activeTab).show();
if( $(activeTab).html()!="") { if ($(activeTab).html() != "") {
return false; return false;
}else{ } else {
$(activeTab).html('正在加载内容,请稍后...'); $(activeTab).html('正在加载内容,请稍后...');
var url = $(this).attr("tab-ajax-url"); var url = $(this).attr("tab-ajax-url");
$.post(url, {}, function(data) { $.post(url, {}, function (data) {
//$(this).attr("tab-ajax-cached", true); //$(this).attr("tab-ajax-cached", true);
$(activeTab).html(data); $(activeTab).html(data);
@ -92,63 +93,65 @@
return false; return false;
}); });
}); });
//初始化下标 //初始化下标
function resetTrNum(tableId) { function resetTrNum(tableId) {
$tbody = $("#"+tableId+""); $tbody = $("#" + tableId + "");
$tbody.find('>tr').each(function(i){ $tbody.find('>tr').each(function (i) {
$(':input, select', this).each(function(){ $(':input, select', this).each(function () {
var $this = $(this), name = $this.attr('name'), val = $this.val(); var $this = $(this), name = $this.attr('name'), val = $this.val();
if(name!=null){ if (name != null) {
if (name.indexOf("#index#") >= 0){ if (name.indexOf("#index#") >= 0) {
$this.attr("name",name.replace('#index#',i)); $this.attr("name", name.replace('#index#', i));
}else{ } else {
var s = name.indexOf("["); var s = name.indexOf("[");
var e = name.indexOf("]"); var e = name.indexOf("]");
var new_name = name.substring(s+1,e); var new_name = name.substring(s + 1, e);
$this.attr("name",name.replace(new_name,i)); $this.attr("name", name.replace(new_name, i));
} }
} }
}); });
$(this).find('div[name=\'xh\']').html(i+1); $(this).find('div[name=\'xh\']').html(i + 1);
}); });
} }
function init(){ function init() {
var tabHead =$("#jform_tab li:first"); var tabHead = $("#jform_tab li:first");
var tabBox = $("#jform_tab .con-wrapper:first"); var tabBox = $("#jform_tab .con-wrapper:first");
var url = tabHead.attr("tab-ajax-url"); var url = tabHead.attr("tab-ajax-url");
tabBox.html('正在加载内容,请稍后...'); tabBox.html('正在加载内容,请稍后...');
$.post(url, {}, function(data) { $.post(url, {}, function (data) {
tabBox.html(data); tabBox.html(data);
//tabHead.attr("tab-ajax-cached", true); //tabHead.attr("tab-ajax-cached", true);
}); });
} }
// function selectfun(){
// alert($("#cuscodeid").val); // function selectfun(){
// } // alert($("#cuscodeid").val);
// }
$(document).ready(function () {
$(document).ready(function(){
//绑定下拉框change事件当下来框改变时调用 SelectChange()方法 //绑定下拉框change事件当下来框改变时调用 SelectChange()方法
$("select[name='cusCode']").change(function() { SelectChange(); }); $("select[name='cusCode']").change(function () {
SelectChange();
});
SelectChange(); SelectChange();
}) })
function SelectChange() { function SelectChange() {
var selectcusValue = $("select[name='cusCode']").val(); var selectcusValue = $("select[name='cusCode']").val();
var url = "mvGoodsController.do?setvalue&cusCode="+selectcusValue; var url = "mvGoodsController.do?setvalue&cusCode=" + selectcusValue;
$.ajax({ $.ajax({
url:url, url: url,
type:"GET", type: "GET",
dataType:"JSON", dataType: "JSON",
async: false, async: false,
success:function(data){ success: function (data) {
if(data.success){ if (data.success) {
} }
@ -157,9 +160,11 @@
} }
</script> </script>
<body> <body>
<form id="formobj" action="wmImNoticeHController.do?doAdd" name="formobj" method="post"><input type="hidden" id="btn_sub" class="btn_sub"/> <form id="formobj" action="wmImNoticeHController.do?doAdd" name="formobj" method="post"><input type="hidden"
id="btn_sub"
class="btn_sub"/>
<input type="hidden" id="btn_sub" class="btn_sub"/> <input type="hidden" id="btn_sub" class="btn_sub"/>
<input type="hidden" id="cuscodeh" name="cuscodeh"/> <input type="hidden" id="cuscodeh" name="cuscodeh"/>
@ -178,24 +183,25 @@
<b>货主:</b> <b>货主:</b>
</div> </div>
<div class="col-xs-2"> <div class="col-xs-2">
<t:dictSelect readonly="${wmImNoticeHPage.readonly}" field="cusCode" type="list" extendJson=" {class:'form-control',datatype:'*',style:'width:230px'}" <t:dictSelect readonly="${wmImNoticeHPage.readonly}" field="cusCode" type="list"
defaultVal="${wmImNoticeHPage.cusCode}" dictTable="mv_cus" dictField="cus_code" dictText="cus_name" hasLabel="false" title="货主"></t:dictSelect> extendJson=" {class:'form-control',datatype:'*',style:'width:230px'}"
defaultVal="${wmImNoticeHPage.cusCode}" dictTable="mv_cus" dictField="cus_code"
dictText="cus_name" hasLabel="false" title="货主"></t:dictSelect>
<span class="Validform_checktip" style="float:left;height:0px;"></span> <span class="Validform_checktip" style="float:left;height:0px;"></span>
<label class="Validform_label" style="display: none">供应商编码</label> <label class="Validform_label" style="display: none">供应商编码</label>
<%-- <t:autocomplete searchField="cusName" name="cusCode" entityName="MvCusEntity" ></t:autocomplete> --%> <%-- <t:autocomplete searchField="cusName" name="cusCode" entityName="MvCusEntity" ></t:autocomplete> --%>
</div> </div>
<div class="col-xs-1 text-center"> <div class="col-xs-1 text-center">
<b>预计到货时间:</b> <b>预计到货时间:</b>
</div> </div>
<div class="col-xs-2"> <div class="col-xs-2">
<input id="imData" name="imData" type="text" <input id="imData" name="imData" type="text"
ignore="ignore" onchange="setcond()" ignore="ignore" onchange="setcond()"
style="background: url('plug-in/ace/images/datetime.png') no-repeat scroll right center transparent;" class="form-control" onClick="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss'})" type="date" pattern="yyyy-MM-dd hh:mm:ss" /> style="background: url('plug-in/ace/images/datetime.png') no-repeat scroll right center transparent;"
class="form-control" onClick="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss'})" type="date"
pattern="yyyy-MM-dd hh:mm:ss"/>
<span class="Validform_checktip" style="float:left;height:0px;"></span> <span class="Validform_checktip" style="float:left;height:0px;"></span>
<label class="Validform_label" style="display: none">预计到货时间</label> <label class="Validform_label" style="display: none">预计到货时间</label>
</div> </div>
@ -205,9 +211,10 @@
</div> </div>
<div class="col-xs-2"> <div class="col-xs-2">
<input id="imCusCode" name="imCusCode" type="text" class="form-control" <input id="imCusCode" name="imCusCode" type="text" class="form-control"
required="required" ignore="ignore" datatype="*" validType="wm_im_notice_h,im_cus_code,id" required="required" ignore="ignore" datatype="*"
validType="wm_im_notice_h,im_cus_code,id"
/> />
<span class="Validform_checktip"> 不能重复</span> <%-- <span class="Validform_checktip"> 不能重复</span>--%>
</div> </div>
@ -232,81 +239,79 @@
<input id="imCarDri" name="imCarDri" type="text" class="form-control" <input id="imCarDri" name="imCarDri" type="text" class="form-control"
ignore="ignore" ignore="ignore"
/> />
<span class="Validform_checktip" style="float:left;height:0px;"></span>
<label class="Validform_label" style="display: none">运输公司</label>
</div> </div>
<div class="col-xs-1 text-center"> <div class="col-xs-1 text-center">
<b>供应商:</b> <b>供应商:</b>
</div> </div>
<t:dictSelect field="supCode" type="list" extendJson=" {class:'form-control',style:'width:230px'}" <div class="col-xs-2">
dictTable="md_sup" dictField="GYS_BIAN_MA" dictText="ZHONG_WEN_QCH" hasLabel="false" title="供应商"></t:dictSelect>
<t:dictSelect field="supCode" type="list" extendJson=" {class:'form-control',style:'width:230px'}"
dictTable="md_sup" dictField="GYS_BIAN_MA" dictText="ZHONG_WEN_QCH" hasLabel="false"
title="供应商"></t:dictSelect>
</div>
<div class="col-xs-1 text-center"> <div class="col-xs-1 text-center">
<b>预约库区:</b> <b>预约库区:</b>
</div> </div>
<div class="col-xs-2"> <div class="col-xs-2">
<t:dictSelect field="areaCode" type="list" extendJson=" {class:'form-control',datatype:'*',style:'width:230px'}" <t:dictSelect field="areaCode" type="list"
defaultVal="存货区" typeGroupCode="area_type" hasLabel="false" title="预约库区"></t:dictSelect> extendJson=" {class:'form-control',datatype:'*',style:'width:230px'}"
defaultVal="存货区" typeGroupCode="area_type" hasLabel="false"
title="预约库区"></t:dictSelect>
<span class="Validform_checktip" style="float:left;height:0px;"></span> <span class="Validform_checktip" style="float:left;height:0px;"></span>
<label class="Validform_label" style="display: none">预约库区</label> <label class="Validform_label" style="display: none">预约库区</label>
<%-- <t:autocomplete searchField="cusName" name="cusCode" entityName="MvCusEntity" ></t:autocomplete> --%> <%-- <t:autocomplete searchField="cusName" name="cusCode" entityName="MvCusEntity" ></t:autocomplete> --%>
</div> </div>
<%-- <div class="col-xs-1 text-center">--%> <%-- <div class="col-xs-1 text-center">--%>
<%-- <b>供应商编码:</b>--%> <%-- <b>供应商编码:</b>--%>
<%-- </div>--%> <%-- </div>--%>
<%-- <div class="col-xs-2">--%> <%-- <div class="col-xs-2">--%>
<%-- <input id="supCode" name="supCode" type="text" class="form-control"--%> <%-- <input id="supCode" name="supCode" type="text" class="form-control"--%>
<%-- ignore="ignore"--%> <%-- ignore="ignore"--%>
<%-- />--%> <%-- />--%>
<%-- <span class="Validform_checktip" style="float:left;height:0px;"></span>--%> <%-- <span class="Validform_checktip" style="float:left;height:0px;"></span>--%>
<%-- <label class="Validform_label" style="display: none">供应商编码</label>--%> <%-- <label class="Validform_label" style="display: none">供应商编码</label>--%>
<%-- </div>--%> <%-- </div>--%>
<%-- <div class="col-xs-1 text-center">--%> <%-- <div class="col-xs-1 text-center">--%>
<%-- <b>供应商名称:</b>--%> <%-- <b>供应商名称:</b>--%>
<%-- </div>--%> <%-- </div>--%>
<%-- <div class="col-xs-2">--%> <%-- <div class="col-xs-2">--%>
<%-- <input id="supName" name="supName" type="text" class="form-control"--%> <%-- <input id="supName" name="supName" type="text" class="form-control"--%>
<%-- ignore="ignore"--%> <%-- ignore="ignore"--%>
<%-- />--%> <%-- />--%>
<%-- <span class="Validform_checktip" style="float:left;height:0px;"></span>--%> <%-- <span class="Validform_checktip" style="float:left;height:0px;"></span>--%>
<%-- <label class="Validform_label" style="display: none">司机电话</label>--%> <%-- <label class="Validform_label" style="display: none">司机电话</label>--%>
<%-- </div>--%> <%-- </div>--%>
<div class="col-xs-1 text-center">
<b>订单类型:</b>
</div>
<div class="col-xs-2">
<t:dictSelect field="orderTypeCode" type="list" extendJson="{class:'form-control',style:'width:150px'}"
dictTable="ba_order_type" dictField="order_type_code" dictText="order_type_name" defaultVal="${wmImNoticeHPage.orderTypeCode}" hasLabel="false" title="订单类型"></t:dictSelect>
<span class="Validform_checktip" style="float:left;height:0px;"></span>
<label class="Validform_label" style="display: none">订单类型</label>
</div>
<div class="col-xs-1 text-center"> <div class="col-xs-1 text-center">
<b>仓库:</b> <b>仓库:</b>
</div> </div>
<div class="col-xs-2"> <div class="col-xs-2">
<t:dictSelect field="storeCode" type="list" extendJson=" {class:'form-control',datatype:'*',style:'width:230px'}" <t:dictSelect field="storeCode" type="list"
extendJson=" {class:'form-control',datatype:'*',style:'width:230px'}"
dictTable="ba_store" dictField="store_code" dictText="store_name"></t:dictSelect> dictTable="ba_store" dictField="store_code" dictText="store_name"></t:dictSelect>
<span class="Validform_checktip" style="float:left;height:0px;"></span> <span class="Validform_checktip" style="float:left;height:0px;"></span>
<label class="Validform_label" style="display: none">仓库</label>
<%-- <t:autocomplete searchField="cusName" name="cusCode" entityName="MvCusEntity" ></t:autocomplete> --%>
</div> </div>
</div> </div>
<%--<div class="col-xs-1 text-center">--%>
<%--<b>月台:</b>--%>
<%--</div>--%>
<%--<div class="col-xs-2">--%>
<%--<t:dictSelect field="platformCode" type="list" extendJson="{class:'form-control',style:'width:150px'}" --%>
<%--dictTable="ba_platform" dictField="platform_code" dictText="platform_name" hasLabel="false" title="月台"></t:dictSelect> --%>
<%--<span class="Validform_checktip" style="float:left;height:0px;"></span>--%>
<%--<label class="Validform_label" style="display: none">月台</label>--%>
<%--</div>--%>
</div> </div>
<div class="row show-grid"> <div class="row show-grid">
<div class="col-xs-1 text-center">
<b>订单类型:</b>
</div>
<div class="col-xs-2">
<t:dictSelect field="orderTypeCode" type="list"
extendJson="{class:'form-control',style:'width:150px'}"
dictTable="ba_order_type" dictField="order_type_code" dictText="order_type_name"
defaultVal="${wmImNoticeHPage.orderTypeCode}" hasLabel="false"
title="订单类型"></t:dictSelect>
<span class="Validform_checktip" style="float:left;height:0px;"></span>
<label class="Validform_label" style="display: none">订单类型</label>
</div>
<div class="col-xs-1 text-center"> <div class="col-xs-1 text-center">
<b>备注:</b> <b>备注:</b>
</div> </div>
@ -321,7 +326,7 @@
<div class="col-xs-1 text-center"> <div class="col-xs-1 text-center">
<b>附件:</b> <b>附件:</b>
</div> </div>
<div class="col-xs-5"> <div class="col-xs-2">
<t:webUploader auto="true" name="fuJian" duplicate="true" fileNumLimit="3"></t:webUploader> <t:webUploader auto="true" name="fuJian" duplicate="true" fileNumLimit="3"></t:webUploader>
<span class="Validform_checktip" style="float:left;height:0px;"></span> <span class="Validform_checktip" style="float:left;height:0px;"></span>
@ -336,48 +341,50 @@
</div> </div>
<script type="text/javascript">
<script type="text/javascript"> $(function () {
$(function(){
//查看模式情况下,删除和上传附件功能禁止使用 //查看模式情况下,删除和上传附件功能禁止使用
if(location.href.indexOf("load=detail")!=-1){ if (location.href.indexOf("load=detail") != -1) {
$(".jeecgDetail").hide(); $(".jeecgDetail").hide();
} }
if(location.href.indexOf("mode=read")!=-1){ if (location.href.indexOf("mode=read") != -1) {
//查看模式控件禁用 //查看模式控件禁用
$("#formobj").find(":input").attr("disabled","disabled"); $("#formobj").find(":input").attr("disabled", "disabled");
} }
if(location.href.indexOf("mode=onbutton")!=-1){ if (location.href.indexOf("mode=onbutton") != -1) {
//其他模式显示提交按钮 //其他模式显示提交按钮
$("#sub_tr").show(); $("#sub_tr").show();
} }
}); });
var neibuClickFlag = false; var neibuClickFlag = false;
function neibuClick() { function neibuClick() {
neibuClickFlag = true; neibuClickFlag = true;
$('#btn_sub').trigger('click'); $('#btn_sub').trigger('click');
} }
</script> </script>
<div id="jform_tab" class="tab-wrapper"> <div id="jform_tab" class="tab-wrapper">
<!-- tab --> <!-- tab -->
<ul class="nav nav-tabs"> <ul class="nav nav-tabs">
<li role="presentation" tab-ajax-url="wmImNoticeHController.do?wmImNoticeIList&noticeId=${wmImNoticeHPage.noticeId}"><a href="#con-wrapper0">进货通知明细</a></li> <li role="presentation"
tab-ajax-url="wmImNoticeHController.do?wmImNoticeIList&noticeId=${wmImNoticeHPage.noticeId}"><a
href="#con-wrapper0">进货通知明细</a></li>
</ul> </ul>
<div class="con-wrapper" id="con-wrapper0" style="display: none;"></div> <div class="con-wrapper" id="con-wrapper0" style="display: none;"></div>
</div> </div>
<div align="center" id="sub_tr" style="display: none;"><input type="button" value="提交" onclick="neibuClick();"
<div align="center" id = "sub_tr" style="display: none;" > <input type="button" value="提交" onclick="neibuClick();" class="ui_state_highlight"></div> class="ui_state_highlight"></div>
<script src="plug-in/layer/layer.js"></script> <script src="plug-in/layer/layer.js"></script>
<script type="text/javascript"> <script type="text/javascript">
$(function() { $(function () {
$("#formobj").Validform({ $("#formobj").Validform({
tiptype: function(msg, o, cssctl) { tiptype: function (msg, o, cssctl) {
if (o.type == 3) { if (o.type == 3) {
layer.open({ layer.open({
title: '提示信息', title: '提示信息',
@ -385,12 +392,12 @@
icon: 5, icon: 5,
shift: 6, shift: 6,
btn: false, btn: false,
shade:false,time:5000, shade: false, time: 5000,
cancel: function(index) { cancel: function (index) {
o.obj.focus(); o.obj.focus();
layer.close(index); layer.close(index);
}, },
yes: function(index) { yes: function (index) {
o.obj.focus(); o.obj.focus();
layer.close(index); layer.close(index);
}, },
@ -400,7 +407,7 @@
btnSubmit: "#btn_sub", btnSubmit: "#btn_sub",
btnReset: "#btn_reset", btnReset: "#btn_reset",
ajaxPost: true, ajaxPost: true,
beforeSubmit: function(curform) { beforeSubmit: function (curform) {
var tag = true; var tag = true;
//提交前处理 //提交前处理
return tag; return tag;
@ -409,7 +416,7 @@
passwordstrength: { passwordstrength: {
minLen: 6, minLen: 6,
maxLen: 18, maxLen: 18,
trigger: function(obj, error) { trigger: function (obj, error) {
if (error) { if (error) {
obj.parent().next().find(".Validform_checktip").show(); obj.parent().next().find(".Validform_checktip").show();
obj.find(".passwordStrength").hide(); obj.find(".passwordStrength").hide();
@ -420,7 +427,7 @@
} }
} }
}, },
callback: function(data) { callback: function (data) {
if (data.success == true) { if (data.success == true) {
var win = frameElement.api.opener; var win = frameElement.api.opener;
win.reloadTable(); win.reloadTable();
@ -435,7 +442,7 @@
var emsg = data.responseText.substring(data.responseText.indexOf('错误描述'), data.responseText.indexOf('错误信息')); var emsg = data.responseText.substring(data.responseText.indexOf('错误描述'), data.responseText.indexOf('错误信息'));
$.messager.alert('错误', emsg); $.messager.alert('错误', emsg);
$.Hidemsg(); $.Hidemsg();
} catch(ex) { } catch (ex) {
$.messager.alert('错误', data.responseText + ''); $.messager.alert('错误', data.responseText + '');
} }
} }
@ -446,30 +453,33 @@
}); });
</script> </script>
</form> </form>
<!-- 添加 产品明细 模版 --> <!-- 添加 产品明细 模版 -->
<table style="display:none"> <table style="display:none">
<tbody id="add_wmImNoticeI_table_template"> <tbody id="add_wmImNoticeI_table_template">
<tr> <tr>
<th scope="row"><div name="xh"></div></th> <th scope="row">
<div name="xh"></div>
</th>
<td><input style="width:20px;" type="checkbox" name="ck"/></td> <td><input style="width:20px;" type="checkbox" name="ck"/></td>
<td align="left"> <td align="left">
<%-- <t:dictSelect field="wmImNoticeIList[#index#].goodsCode" type="list" extendJson="{class:'form-control',style:'width:350px'}" --%> <%-- <t:dictSelect field="wmImNoticeIList[#index#].goodsCode" type="list" extendJson="{class:'form-control',style:'width:350px'}" --%>
<%-- dictCondition="${wmImNoticeHPage.wherecon}" dictTable="mv_goods" dictField="goods_code" dictText="goods_name" defaultVal="" hasLabel="false" title="商品编码"></t:dictSelect> --%> <%-- dictCondition="${wmImNoticeHPage.wherecon}" dictTable="mv_goods" dictField="goods_code" dictText="goods_name" defaultVal="" hasLabel="false" title="商品编码"></t:dictSelect> --%>
<%--<td>--%> <%--<td>--%>
<input id="wmImNoticeIList[#index#].goodsCode" name="wmImNoticeIList[#index#].goodsCode" maxlength="32" <input id="wmImNoticeIList[#index#].goodsCode" name="wmImNoticeIList[#index#].goodsCode" maxlength="32"
type="text" onclick="popClickone('wmImNoticeIList[#index#].goodsCode','goodsName','mvGoodsController.do?list')" style="width:420px;text-align: left" > type="text"
onclick="popClickone('wmImNoticeIList[#index#].goodsCode','goodsName','mvGoodsController.do?list')"
style="width:420px;text-align: left">
<%--</td>--%> <%--</td>--%>
<%--<input id="wmImNoticeIList[#index#].goodsCode" name="wmImNoticeIList[#index#].goodsCode" maxlength="32" --%> <%--<input id="wmImNoticeIList[#index#].goodsCode" name="wmImNoticeIList[#index#].goodsCode" maxlength="32" --%>
<%--ignore="ignore" type="text" style="width:420px;text-align: left" >--%> <%--ignore="ignore" type="text" style="width:420px;text-align: left" >--%>
<%--<t:choose hiddenName="wmImNoticeIList[#index#].goodsCode" hiddenid="goodsName" url="mvGoodsController.do?list" name="mvGoodsList" width="600" height="410" icon="icon-search" title="选择" textname="goodsName" isInit="true"></t:choose>--%> <%--<t:choose hiddenName="wmImNoticeIList[#index#].goodsCode" hiddenid="goodsName" url="mvGoodsController.do?list" name="mvGoodsList" width="600" height="410" icon="icon-search" title="选择" textname="goodsName" isInit="true"></t:choose>--%>
<%----%> <%----%>
<%-- <t:choose hiddenName="wmImNoticeIList[#index#].goodsCode" hiddenid="id" url="mdGoodsController.do?list" name="mdGoodsList" --%> <%-- <t:choose hiddenName="wmImNoticeIList[#index#].goodsCode" hiddenid="id" url="mdGoodsController.do?list" name="mdGoodsList" --%>
<%-- icon="icon-search" title="common.role.list" textname="wmImNoticeIList[#index#].goodsCode" isclear="true" isInit="true"></t:choose> --%> <%-- icon="icon-search" title="common.role.list" textname="wmImNoticeIList[#index#].goodsCode" isclear="true" isInit="true"></t:choose> --%>
<label class="Validform_label" style="display: none;">商品编码</label> <label class="Validform_label" style="display: none;">商品编码</label>
@ -477,34 +487,35 @@
<td align="left"> <td align="left">
<input name="wmImNoticeIList[#index#].goodsCount" maxlength="32" <input name="wmImNoticeIList[#index#].goodsCount" maxlength="32"
ignore="ignore" datatype="*" ignore="ignore" datatype="*"
type="text" class="form-control" style="width:120px;text-align: right" > type="text" class="form-control" style="width:120px;text-align: right">
<label class="Validform_label" style="display: none;">数量</label> <label class="Validform_label" style="display: none;">数量</label>
</td> </td>
<!-- <td align="left"> --> <!-- <td align="left"> -->
<%-- <t:dictSelect field="wmImNoticeIList[#index#].goodsUnit" type="list" extendJson="{class:'form-control'}" --%> <%-- <t:dictSelect field="wmImNoticeIList[#index#].goodsUnit" type="list" extendJson="{class:'form-control'}" --%>
<%-- dictTable="ba_unit" dictField="unit_code" dictText="unit_zh_name" hasLabel="false" title="单位"></t:dictSelect> --%> <%-- dictTable="ba_unit" dictField="unit_code" dictText="unit_zh_name" hasLabel="false" title="单位"></t:dictSelect> --%>
<!-- <label class="Validform_label" style="display: none;">单位</label> --> <!-- <label class="Validform_label" style="display: none;">单位</label> -->
<!-- </td> --> <!-- </td> -->
<td align="left"> <td align="left">
<input name="wmImNoticeIList[#index#].binPlan" maxlength="32" <input name="wmImNoticeIList[#index#].binPlan" maxlength="32"
ignore="ignore" ignore="ignore"
type="text" class="form-control" style="width:120px;text-align: right" > type="text" class="form-control" style="width:120px;text-align: right">
<label class="Validform_label" style="display: none;">计划占用储位数</label> <label class="Validform_label" style="display: none;">计划占用储位数</label>
</td> </td>
<td align="left"> <td align="left">
<t:dictSelect field="wmImNoticeIList[#index#].binPre" type="radio" extendJson="{class:'form-control',style:'width:150px'}" <t:dictSelect field="wmImNoticeIList[#index#].binPre" type="radio"
extendJson="{class:'form-control',style:'width:150px'}"
typeGroupCode="sf_yn" defaultVal="N" hasLabel="false" title="收货完成"></t:dictSelect> typeGroupCode="sf_yn" defaultVal="N" hasLabel="false" title="收货完成"></t:dictSelect>
<label class="Validform_label" style="display: none;">收货完成</label> <label class="Validform_label" style="display: none;">收货完成</label>
</td> </td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
<script src = "webpage/com/zzjee/wm/wmImNoticeH.js"></script> <script src="webpage/com/zzjee/wm/wmImNoticeH.js"></script>
</body> </body>
</html> </html>

View File

@ -115,8 +115,8 @@
<div class="tab-wrapper"> <div class="tab-wrapper">
<!-- tab --> <!-- tab -->
<ul class="nav nav-tabs"> <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);"> 预约通知(${wmImNoticeHPage.noticeId})</a></li>
<b style="margin-top: 10px">${wmImNoticeHPage.noticeId}</b> <%-- <b style="margin-top: 10px"></b>--%>
</ul> </ul>
<!-- tab内容 --> <!-- tab内容 -->
<div class="con-wrapper" style="display: block;"> <div class="con-wrapper" style="display: block;">
@ -201,8 +201,17 @@
<input id="supCode" name="supCode" type="text" class="form-control" <input id="supCode" name="supCode" type="text" class="form-control"
ignore="ignore" value='${wmImNoticeHPage.supCode}' ignore="ignore" value='${wmImNoticeHPage.supCode}'
/> />
</div>
<div class="col-xs-1 text-center">
<b>供应商名称:</b>
</div>
<div class="col-xs-2">
<input id="supName" name="supName" type="text" class="form-control"
ignore="ignore" value='${wmImNoticeHPage.supName}'
/>
<span class="Validform_checktip" style="float:left;height:0px;"></span> <span class="Validform_checktip" style="float:left;height:0px;"></span>
<label class="Validform_label" style="display: none">供应商/label> <label class="Validform_label" style="display: none">司机电话</label>
</div> </div>
<div class="col-xs-1 text-center"> <div class="col-xs-1 text-center">
<b>预约库区:</b> <b>预约库区:</b>
@ -214,17 +223,6 @@
<label class="Validform_label" style="display: none">预约库区</label> <label class="Validform_label" style="display: none">预约库区</label>
<%-- <t:autocomplete searchField="cusName" name="cusCode" entityName="MvCusEntity" ></t:autocomplete> --%> <%-- <t:autocomplete searchField="cusName" name="cusCode" entityName="MvCusEntity" ></t:autocomplete> --%>
</div> </div>
<div class="col-xs-1 text-center">
<b>供应商名称:</b>
</div>
<div class="col-xs-2">
<input id="supName" name="supName" type="text" class="form-control"
ignore="ignore" value='${wmImNoticeHPage.supName}'
/>
<span class="Validform_checktip" style="float:left;height:0px;"></span>
<label class="Validform_label" style="display: none">司机电话</label>
</div>
<div class="col-xs-1 text-center"> <div class="col-xs-1 text-center">
<b>订单类型:</b> <b>订单类型:</b>
</div> </div>
@ -244,8 +242,26 @@
<label class="Validform_label" style="display: none">仓库</label> <label class="Validform_label" style="display: none">仓库</label>
<%-- <t:autocomplete searchField="cusName" name="cusCode" entityName="MvCusEntity" ></t:autocomplete> --%> <%-- <t:autocomplete searchField="cusName" name="cusCode" entityName="MvCusEntity" ></t:autocomplete> --%>
</div> </div>
<div class="col-xs-1 text-center">
<b>备注:</b>
</div>
<div class="col-xs-2">
<input id="imBeizhu" name="imBeizhu" type="text" class="form-control"
ignore="ignore"
value='${wmImNoticeHPage.imBeizhu}' />
<span class="Validform_checktip" style="float:left;height:0px;"></span>
<label class="Validform_label" style="display: none">备注</label>
</div>
<div class="col-xs-1 text-center">
<b>附件 </b>
</div>
<div class="col-xs-2">
<t:webUploader auto="true" pathValues="${wmImNoticeHPage.fuJian}" name="fuJian" duplicate="true" fileNumLimit="3"></t:webUploader>
<span class="Validform_checktip" style="float:left;height:0px;"></span>
<label class="Validform_label" style="display: none">附件</label>
</div>
<%--<div class="col-xs-1 text-center">--%> <%--<div class="col-xs-1 text-center">--%>
<%--<b>月台:</b>--%> <%--<b>月台:</b>--%>
<%--</div>--%> <%--</div>--%>
@ -258,30 +274,12 @@
</div> </div>
<div class="row show-grid"> <%-- <div class="row show-grid">--%>
<div class="col-xs-1 text-center"> <%-- --%>
<b>备注:</b>
</div>
<div class="col-xs-5">
<input id="imBeizhu" name="imBeizhu" type="text" class="form-control"
ignore="ignore"
value='${wmImNoticeHPage.imBeizhu}' />
<span class="Validform_checktip" style="float:left;height:0px;"></span>
<label class="Validform_label" style="display: none">备注</label>
</div>
<div class="col-xs-1 text-center">
<b>附件 </b>
</div>
<div class="col-xs-5">
<t:webUploader auto="true" pathValues="${wmImNoticeHPage.fuJian}" name="fuJian" duplicate="true" fileNumLimit="3"></t:webUploader>
<span class="Validform_checktip" style="float:left;height:0px;"></span> <%-- </div>--%>
<label class="Validform_label" style="display: none">附件</label>
</div>
</div>
</div> </div>
</div> </div>

View File

@ -181,7 +181,7 @@
<input id="imCusCode" name="imCusCode" type="text" class="form-control" <input id="imCusCode" name="imCusCode" type="text" class="form-control"
required="required" ignore="ignore" datatype="*" validType="wm_om_notice_h,im_cus_code,id" required="required" ignore="ignore" datatype="*" validType="wm_om_notice_h,im_cus_code,id"
/> />
<span class="Validform_checktip"> 不能重复</span> <%-- <span class="Validform_checktip"> 不能重复</span>--%>
</div> </div>
</div> </div>
<div class="row show-grid"> <div class="row show-grid">
@ -274,7 +274,7 @@
<div class="col-xs-1 text-center"> <div class="col-xs-1 text-center">
<b>发货运单号或车号:</b> <b>运单号或车号:</b>
</div> </div>
<div class="col-xs-2"> <div class="col-xs-2">
@ -283,7 +283,7 @@
<%-- <input id="reCarno" name="reCarno" type="text" class="form-control"--%> <%-- <input id="reCarno" name="reCarno" type="text" class="form-control"--%>
<%-- />--%> <%-- />--%>
<span class="Validform_checktip" style="float:left;height:0px;"></span> <span class="Validform_checktip" style="float:left;height:0px;"></span>
<label class="Validform_label" style="display: none">发货运单号或车号</label> <label class="Validform_label" style="display: none">运单号或车号</label>
</div> </div>
<div class="col-xs-1 text-center"> <div class="col-xs-1 text-center">
@ -292,7 +292,7 @@
<div class="col-xs-2"> <div class="col-xs-2">
<t:dictSelect field="delvMethod" type="list" extendJson="{class:'form-control',style:'width:150px'}" <t:dictSelect field="delvMethod" type="list" extendJson="{class:'form-control',style:'width:150px'}"
typeGroupCode="dev_method" defaultVal="${wmOmNoticeHPage.delvMethod}" title="订单类型"></t:dictSelect> typeGroupCode="tms_thfs" defaultVal="${wmOmNoticeHPage.delvMethod}" title="送货方式"></t:dictSelect>
<span class="Validform_checktip" style="float:left;height:0px;"></span> <span class="Validform_checktip" style="float:left;height:0px;"></span>
<label class="Validform_label" style="display: none">送货方式</label> <label class="Validform_label" style="display: none">送货方式</label>
</div> </div>

View File

@ -111,8 +111,8 @@
<div class="tab-wrapper"> <div class="tab-wrapper">
<!-- tab --> <!-- tab -->
<ul class="nav nav-tabs"> <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);">出货通知( ${wmOmNoticeHPage.omNoticeId})</a></li>
${wmOmNoticeHPage.omNoticeId}
</ul> </ul>
<!-- tab内容 --> <!-- tab内容 -->
<div class="con-wrapper" style="display: block;"> <div class="con-wrapper" style="display: block;">
@ -255,7 +255,7 @@
<div class="col-xs-1 text-center"> <div class="col-xs-1 text-center">
<b>发货运单号或车号:</b> <b>运单号或车号:</b>
</div> </div>
<div class="col-xs-2"> <div class="col-xs-2">
<input id="reCarno" name="reCarno" type="text" class="form-control" <input id="reCarno" name="reCarno" type="text" class="form-control"
@ -269,10 +269,8 @@
<div class="col-xs-2"> <div class="col-xs-2">
<t:dictSelect field="delvMethod" type="list" extendJson="{class:'form-control',style:'width:150px'}" <t:dictSelect field="delvMethod" type="list" extendJson="{class:'form-control',style:'width:150px'}"
typeGroupCode="dev_method" defaultVal="${wmOmNoticeHPage.delvMethod}" hasLabel="false" title="订单类型"></t:dictSelect> typeGroupCode="tms_thfs" defaultVal="${wmOmNoticeHPage.delvMethod}" hasLabel="false" title="送货方式"></t:dictSelect>
<%-- <input id="reCarno" name="reCarno" type="text" class="form-control"--%>
<%-- />--%>
<span class="Validform_checktip" style="float:left;height:0px;"></span> <span class="Validform_checktip" style="float:left;height:0px;"></span>
<label class="Validform_label" style="display: none">送货方式</label> <label class="Validform_label" style="display: none">送货方式</label>
</div> </div>