|
|
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
|
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
|
|
|
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
|
|
|
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
...
|
...
|
@@ -13,7 +14,7 @@ |
|
|
<head>
|
|
|
<meta charset="utf-8">
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
<link href="<%=basePath%>resource/css/base.css" rel="stylesheet">
|
|
|
<link href="<%=basePath%>resource/css/base.css?ver=1.0" rel="stylesheet">
|
|
|
<link href="<%=basePath%>resource/css/basic_info.css" rel="stylesheet">
|
|
|
<link rel="stylesheet" type="text/css" href="<%=basePath%>resource/easyui/uimaker/icon.css">
|
|
|
<link rel="stylesheet" href="<%=basePath%>resource/easyui/uimaker/easyui.css">
|
...
|
...
|
@@ -21,6 +22,10 @@ |
|
|
<script type="text/javascript" src="<%=basePath%>resource/easyui/jquery.min.js"></script>
|
|
|
<script type="text/javascript" src="<%=basePath%>resource/validate/jquery.validate.js"></script>
|
|
|
<script type="text/javascript" src="<%=basePath%>resource/validate/validate-extends.js"></script>
|
|
|
|
|
|
<link rel="stylesheet" href="<%=basePath%>resource/layui/css/layui.css" media="all">
|
|
|
<script type="text/javascript" src="<%=basePath%>resource/layui/layui.js"></script>
|
|
|
|
|
|
<style type="text/css">
|
|
|
.required_span {
|
|
|
color: red;
|
...
|
...
|
@@ -43,15 +48,32 @@ |
|
|
<table class="kv-table">
|
|
|
<tbody>
|
|
|
<tr>
|
|
|
<td class="kv-label" colspan="6"><spring:message code="manifest.bill.number" /></td>
|
|
|
<td style="background-color: #EBEDF4; color: black;" class="kv-label" colspan="6"><spring:message
|
|
|
code="manifest.bill.number" /></td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="kv-label"><spring:message code="manifest.bill.number" /><span
|
|
|
class="required_span">*</span></td>
|
|
|
<td class="kv-content" colspan="5"><input required id="waybill" minlength="12"
|
|
|
maxlength="12" type="text" onblur="input_change(this)"> <input required
|
|
|
id="waybillnomaster" minlength="12" maxlength="12" name="waybillnomaster" type="hidden"
|
|
|
<td class="kv-content"><input required id="waybill" minlength="12" maxlength="12"
|
|
|
type="text" onblur="input_change(this)"> <input required id="waybillnomaster"
|
|
|
minlength="12" maxlength="12" name="waybillnomaster" type="hidden"
|
|
|
value="${manifest.waybillnomaster }"></td>
|
|
|
<td class="kv-label"><spring:message code="delivery.delivery.station" /><span
|
|
|
class="required_span">*</span></td>
|
|
|
<td class="kv-content"><select id="delivery_station" name="delivery_station">
|
|
|
<option value="001"
|
|
|
<c:if test = "${manifest.delivery_station ==001 }">selected="selected"</c:if>><spring:message
|
|
|
code="delivery.ground.handling" /></option>
|
|
|
</select></td>
|
|
|
<td class="kv-label"><spring:message code="delivery.delivery.type" /></td>
|
|
|
<td class="kv-content"><select class="delivery" id="de_type" name="de_type">
|
|
|
<option value="001" <c:if test = "${manifest.de_type ==001 }">selected="selected"</c:if>><spring:message
|
|
|
code="manifest.general.delivery" /></option>
|
|
|
<option value="002" <c:if test = "${manifest.de_type ==002 }">selected="selected"</c:if>><spring:message
|
|
|
code="manifest.mail.delivery" /></option>
|
|
|
<option value="003" <c:if test = "${manifest.de_type ==003 }">selected="selected"</c:if>><spring:message
|
|
|
code="manifest.International" /></option>
|
|
|
</select></td>
|
|
|
<script>
|
|
|
function input_change(obj){
|
|
|
var val = $(obj).val();
|
...
|
...
|
@@ -73,48 +95,48 @@ |
|
|
}
|
|
|
</script>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="kv-label"><spring:message code="delivery.name.of.goods" /></td>
|
|
|
<!-- <tr> -->
|
|
|
<%-- <td class="kv-label"><spring:message code="delivery.name.of.goods" /></td>
|
|
|
<td class="kv-content"><input id="name_ofgoods" name="name_ofgoods" type="text"
|
|
|
value="${manifest.name_ofgoods }"></td>
|
|
|
<td class="kv-label"><spring:message code="delivery.delivery.station" /><span
|
|
|
value="${manifest.name_ofgoods }"></td> --%>
|
|
|
<%-- <td class="kv-label"><spring:message code="delivery.delivery.station" /><span
|
|
|
class="required_span">*</span></td>
|
|
|
<td class="kv-content"><select id="delivery_station" name="delivery_station">
|
|
|
<%-- <option value=""><spring:message code="opt.select"/></option> --%>
|
|
|
<option value="001"
|
|
|
<c:if test = "${manifest.delivery_station ==001 }">selected="selected"</c:if>><spring:message
|
|
|
code="delivery.ground.handling" /></option>
|
|
|
</select></td>
|
|
|
<td class="kv-label"><spring:message code="delivery.delivery.type" /></td>
|
|
|
<td class="kv-content"><select class="delivery" id="de_type" name="de_type">
|
|
|
<%-- <option value=""><spring:message code="opt.select"/></option> --%>
|
|
|
<option value="001" <c:if test = "${manifest.de_type ==001 }">selected="selected"</c:if>><spring:message
|
|
|
code="manifest.general.delivery" /></option>
|
|
|
<option value="002" <c:if test = "${manifest.de_type ==002 }">selected="selected"</c:if>><spring:message
|
|
|
code="manifest.mail.delivery" /></option>
|
|
|
<option value="003" <c:if test = "${manifest.de_type ==003 }">selected="selected"</c:if>><spring:message
|
|
|
code="manifest.International" /></option>
|
|
|
</select></td>
|
|
|
</tr>
|
|
|
</select></td> --%>
|
|
|
<!-- </tr> -->
|
|
|
<tr>
|
|
|
<td class="kv-label" colspan="6"><spring:message code="manifest.flight.information" /></td>
|
|
|
<td style="background-color: #EBEDF4; color: black;" class="kv-label" colspan="6"><spring:message
|
|
|
code="manifest.flight.information" /></td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="kv-label"><spring:message code="manifest.carrier" /><span
|
|
|
class="required_span">*</span></td>
|
|
|
<td class="kv-content"><input required id="carrier_new" name="carrier" type="text"
|
|
|
value="${manifest.carrier}"
|
|
|
oninput="onInputChange(event,'carrier_new','oninput')"
|
|
|
value="${manifest.carrier}" oninput="onInputChange(event,'carrier_new','oninput')"
|
|
|
onpropertychange="onInputChange(event,'carrier_new','onpropertychange')"></td>
|
|
|
|
|
|
<td class="kv-label"><spring:message code="manifest.flight.number" /><span
|
|
|
class="required_span">*</span></td>
|
|
|
<td class="kv-content"><input required id="flightno" name="flightno" type="text"
|
|
|
value="${manifest.flightno }"></td>
|
|
|
value="${manifest.flightno }" oninput="onInputChange(event,'flightno','oninput')"
|
|
|
onpropertychange="onInputChange(event,'flightno','onpropertychange')"></td>
|
|
|
|
|
|
<td class="kv-label"><spring:message code="manifest.flight.date" /></td>
|
|
|
<td class="kv-content"><input type="text" class="date bill Wdate" id="flightdate"
|
|
|
name="flightdate" required
|
|
|
<td class="kv-label"><spring:message code="manifest.flight.date" /><span
|
|
|
class="required_span">*</span></td>
|
|
|
<td class="kv-content"><input type="text" class="date bill Wdate"
|
|
|
id="flightdate" name="flightdate" required autocomplete="off"
|
|
|
value="<fmt:formatDate pattern='yyyy-MM-dd' value='${manifest.flightdate }'></fmt:formatDate>">
|
|
|
</td>
|
|
|
</tr>
|
...
|
...
|
@@ -133,18 +155,19 @@ |
|
|
onpropertychange="onInputChange(event,'destinationstation','onpropertychange')" /></td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="kv-label" colspan="6"><spring:message code="manifest.cargo.information" /></td>
|
|
|
<td style="background-color: #EBEDF4; color: black;" class="kv-label" colspan="6"><spring:message
|
|
|
code="manifest.cargo.information" /></td>
|
|
|
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="kv-label"><spring:message code="manifest.number.of.consignment.note" /><span
|
|
|
<td class="kv-label"><spring:message code="manifest.number.of.fittings" /><span
|
|
|
class="required_span">*</span></td>
|
|
|
<td class="kv-content"><input required class="delivery number" id="totalpiece"
|
|
|
name="totalpiece" type="text" value="${manifest.totalpiece}"
|
|
|
oninput="onInputChange(event,'totalpiece','oninput')"
|
|
|
onpropertychange="onInputChange(event,'totalpiece','onpropertychange')"></td>
|
|
|
|
|
|
<td class="kv-label"><spring:message code="manifest.waybill.weight" /><span
|
|
|
<td class="kv-label"><spring:message code="manifest.pre.weight" /><span
|
|
|
class="required_span">*</span></td>
|
|
|
<td class="kv-content"><input required class="delivery number" id="totalweight"
|
|
|
name="totalweight" type="text" value="${manifest.totalweight}"
|
...
|
...
|
@@ -171,10 +194,10 @@ |
|
|
<option value="CC" <c:if test = "${manifest.paymode == 'CC' }">selected="selected"</c:if>><spring:message
|
|
|
code="manifest.to.pay" /></option>
|
|
|
</select></td>
|
|
|
<td class="kv-label"><spring:message code="manifest.fitting.time" /><span
|
|
|
<td style="display: none;" class="kv-label"><spring:message code="manifest.fitting.time" /><span
|
|
|
class="required_span">*</span></td>
|
|
|
<td class="kv-content"><input required type="text" class=" bill "
|
|
|
id="stowagedate" name="stowagedate" onfocus="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss'})"
|
|
|
<td style="display: none;" class="kv-content"><input required type="text" class=" bill " id="stowagedate"
|
|
|
name="stowagedate" onfocus="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss'})"
|
|
|
value="<fmt:formatDate pattern='yyyy-MM-dd HH:mm:ss' value='${manifest.stowagedate }'></fmt:formatDate>">
|
|
|
</td>
|
|
|
<td class="kv-label"><spring:message code="manifest.customs.status" /><span
|
...
|
...
|
@@ -205,8 +228,9 @@ |
|
|
name="preparetotalpiece" type="text" value="${manifest.preparetotalpiece}"></td>
|
|
|
<td class="kv-label"><spring:message code="manifest.pre.weight" /><span
|
|
|
class="required_span">*</span></td>
|
|
|
<td class="kv-content" colspan="3"><input required class="delivery number" id="preparetotalweight"
|
|
|
name="preparetotalweight" type="text" value="${manifest.preparetotalweight}"></td>
|
|
|
<td class="kv-content" colspan="3"><input required class="delivery number"
|
|
|
id="preparetotalweight" name="preparetotalweight" type="text"
|
|
|
value="${manifest.preparetotalweight}"></td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="kv-label"><spring:message code="manifest.description.of.the.goods" /><span
|
...
|
...
|
@@ -214,7 +238,7 @@ |
|
|
<td class="kv-content" colspan="5"><textarea required id="productname"
|
|
|
name="productname" maxlength="200">${manifest.productname}</textarea></td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<%-- <tr>
|
|
|
<td class="kv-label"><spring:message code="manifest.agent.name" /></td>
|
|
|
<td class="kv-content"><input id="agentman" name="agentman" type="text"
|
|
|
value="${manifest.agentman}"
|
...
|
...
|
@@ -224,12 +248,13 @@ |
|
|
<input id="agentcompany" name="agentcompany" type="text" value="${manifest.agentcompany}"
|
|
|
placeholder="<spring:message code="agent.companyPlaceholder"/>">
|
|
|
</td>
|
|
|
</tr>
|
|
|
</tr> --%>
|
|
|
<!-- 发货人信息 start -->
|
|
|
<tr>
|
|
|
<td class="kv-label" colspan="1"><spring:message code="manifest.shipper.information" />
|
|
|
</td>
|
|
|
<td class="kv-content" colspan="5"><select onchange="changeConsignorSelect()"
|
|
|
<tr style="background-color: #EBEDF4; color: black;">
|
|
|
<td style="background-color: #EBEDF4; color: black;" class="kv-label" colspan="1"><spring:message
|
|
|
code="manifest.shipper.information" /></td>
|
|
|
<!-- <td class="kv-label"> <button type="button" class="layui-btn layui-btn-normal layui-icon layui-icon-user" onclick="showDialog()">弹出选择框</button> </td> -->
|
|
|
<td class="kv-content" colspan="4"><select onchange="changeConsignorSelect()"
|
|
|
id="fh_select">
|
|
|
<option value="-1">请选择</option>
|
|
|
</select> <script>
|
...
|
...
|
@@ -242,7 +267,15 @@ |
|
|
{
|
|
|
var consignor = consignorList[index];
|
|
|
$("#co_company").val(consignor.co_company?consignor.co_company:"");
|
|
|
$("#co_address").val(consignor.co_address?consignor.co_address:"");
|
|
|
var address = consignor.co_address;
|
|
|
if(notEmpty(address)){
|
|
|
if(address.length>70){
|
|
|
address = address.substring(0,70);
|
|
|
}
|
|
|
}else{
|
|
|
address = "";
|
|
|
}
|
|
|
$("#co_address").val(address);
|
|
|
$("#co_telephone").val(consignor.co_telephone?consignor.co_telephone:"");
|
|
|
$("#co_country").val(consignor.co_country?consignor.co_country:"");
|
|
|
$("#co_city").val(consignor.co_city?consignor.co_city:"");
|
...
|
...
|
@@ -251,7 +284,14 @@ |
|
|
$("#co_fax").val(consignor.co_fax?consignor.co_fax:"");
|
|
|
$("#co_zipcode").val(consignor.co_zipcode?consignor.co_zipcode:"");
|
|
|
$("#shpaeo").val(consignor.shpaeo?consignor.shpaeo:"");
|
|
|
$("#shpcusid").val(consignor.shpcusid?consignor.shpcusid:"");
|
|
|
|
|
|
if(notEmpty(consignor.shpcusid)){
|
|
|
var temp = consignor.shpcusid.split("+")[1];
|
|
|
if(notEmpty(temp)){
|
|
|
$("#shpcusid").val(temp);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
}
|
|
|
}
|
|
|
}
|
...
|
...
|
@@ -273,39 +313,37 @@ |
|
|
}
|
|
|
}
|
|
|
});
|
|
|
</script></td>
|
|
|
|
|
|
</script>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="kv-label"><spring:message code="manifest.company" /><span
|
|
|
class="required_span">*</span></td>
|
|
|
<td class="kv-content">
|
|
|
<input required id="co_company" name="co_company" type="text" value="${manifest.co_company}"
|
|
|
oninput="onInputChange(event,'co_company','oninput')"
|
|
|
onpropertychange="onInputChange(event,'co_company','onpropertychange')">
|
|
|
</td>
|
|
|
<td class="kv-content"><input required id="co_company" name="co_company" type="text"
|
|
|
value="${manifest.co_company}" oninput="onInputChange(event,'co_company','oninput')"
|
|
|
onpropertychange="onInputChange(event,'co_company','onpropertychange')"></td>
|
|
|
<td class="kv-label"><spring:message code="manifest.address" /><span
|
|
|
class="required_span">*</span></td>
|
|
|
<td class="kv-content"><input required id="co_address" name="co_address" type="text"
|
|
|
value="${manifest.co_address}" maxlength="70"></td>
|
|
|
<td class="kv-label"><spring:message code="manifest.zip.code" /></td>
|
|
|
<td class="kv-content" colspan="5"><input id="co_zipcode" name="co_zipcode" type="text"
|
|
|
value="${manifest.co_zipcode }"></td>
|
|
|
<td class="kv-label"><spring:message code="manifest.country" /><span
|
|
|
class="required_span">*</span></td>
|
|
|
<td class="kv-content"><input required id="co_country" name="co_country" maxlength="2"
|
|
|
type="text" value="${manifest.co_country }"
|
|
|
oninput="onInputChange(event,'co_country','oninput')"
|
|
|
onpropertychange="onInputChange(event,'co_country','onpropertychange')"></td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="kv-label"><spring:message code="manifest.city" /></td>
|
|
|
<%-- <td class="kv-label"><spring:message code="manifest.city" /></td>
|
|
|
<td class="kv-content"><input id="co_city" name="co_city" type="text"
|
|
|
value="${manifest.co_city }" oninput="onInputChange(event,'co_city','oninput')"
|
|
|
onpropertychange="onInputChange(event,'co_city','onpropertychange')"></td>
|
|
|
onpropertychange="onInputChange(event,'co_city','onpropertychange')"></td> --%>
|
|
|
<td class="kv-label"><spring:message code="manifest.state" /></td>
|
|
|
<td class="kv-content"><input id="co_deltaname" name="co_deltaname" type="text"
|
|
|
value="${manifest.co_deltaname}"></td>
|
|
|
<td class="kv-label"><spring:message code="manifest.country" /><span
|
|
|
class="required_span">*</span></td>
|
|
|
<td class="kv-content" colspan="5"><input required id="co_country" name="co_country"
|
|
|
type="text" value="${manifest.co_country }"
|
|
|
oninput="onInputChange(event,'co_country','oninput')"
|
|
|
onpropertychange="onInputChange(event,'co_country','onpropertychange')"></td>
|
|
|
<td class="kv-label"><spring:message code="manifest.zip.code" /></td>
|
|
|
<td class="kv-content" colspan="3"><input id="co_zipcode" name="co_zipcode" type="text"
|
|
|
value="${manifest.co_zipcode }"></td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="kv-label"><spring:message code="manifest.telephone" /></td>
|
...
|
...
|
@@ -316,28 +354,48 @@ |
|
|
<td class="kv-content"><input id="co_fax" name="co_fax" type="text"
|
|
|
value="${manifest.co_fax }"
|
|
|
placeholder="<spring:message code="manifest.fhr.fh_placeholder"/>"></td>
|
|
|
<td style="display: none;" class="kv-label"><spring:message code="manifest.send_name" /><span
|
|
|
class="required_span">*</span></td>
|
|
|
<td style="display: none;" class="kv-content" colspan="5"><input required id="co_name" name="co_name" type="text"
|
|
|
value="${manifest.co_name }"></td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="kv-label"><spring:message code="manifest.fhr.shpaeo" /></td>
|
|
|
<td class="kv-content"><input id="shpaeo" name="shpaeo" type="text"
|
|
|
value="${manifest.shpaeo }" oninput="onInputChange(event,'shpaeo','oninput')"
|
|
|
onpropertychange="onInputChange(event,'shpaeo','onpropertychange')"></td>
|
|
|
<td class="kv-label"><spring:message code="manifest.fhr.shpcusid" /><span
|
|
|
</tr>
|
|
|
|
|
|
<tr style="display: none;">
|
|
|
<td style="display: none;" class="kv-label"><spring:message code="manifest.send_name" /><span
|
|
|
class="required_span">*</span></td>
|
|
|
<td class="kv-content" colspan="3"><input required id="shpcusid" name="shpcusid"
|
|
|
type="text" value="${manifest.shpcusid }"
|
|
|
<td style="display: none;" class="kv-content" colspan="5"><input required id="co_name"
|
|
|
name="co_name" type="text" value="${manifest.co_name }"></td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="kv-label" colspan="6">
|
|
|
<select id="co_cusid" required>
|
|
|
<c:if test="${not empty manifest.shpcusid}">
|
|
|
<c:set var="tempShpType" value='${fn:split(manifest.shpcusid,"+")[0]}' />
|
|
|
<option value="${tempShpType}">${tempShpType}</option>
|
|
|
</c:if>
|
|
|
|
|
|
<c:if test="${empty manifest.shpcusid}">
|
|
|
<option value=""><spring:message code="manifest.enterprise.code.type" /></option>
|
|
|
</c:if>
|
|
|
</select>
|
|
|
<span style="color: black; font-size: 16px;">+</span>
|
|
|
<input id="shpcusid" type="text" required
|
|
|
<c:if test="${not empty manifest.shpcusid}">
|
|
|
<c:set var="tempShpValue" value='${fn:split(manifest.shpcusid,"+")[1]}' />
|
|
|
value="${tempShpValue}"
|
|
|
</c:if>
|
|
|
|
|
|
placeholder="<spring:message code='manifest.enterprise.code' />"
|
|
|
oninput="onInputChange(event,'shpcusid','oninput')"
|
|
|
onpropertychange="onInputChange(event,'shpcusid','onpropertychange')"></td>
|
|
|
onpropertychange="onInputChange(event,'shpcusid','onpropertychange')">
|
|
|
</td>
|
|
|
</tr>
|
|
|
<!-- 发货人信息 end -->
|
|
|
|
|
|
<!-- 收货人信息 start -->
|
|
|
<tr>
|
|
|
<td class="kv-label" colspan="1"><spring:message code="manifest.consignee" /></td>
|
|
|
<tr style="background-color: #EBEDF4; color: black;">
|
|
|
<td style="background-color: #EBEDF4; color: black;" class="kv-label" colspan="1"><spring:message
|
|
|
code="manifest.consignee" /></td>
|
|
|
<td class="kv-content" colspan="5"><select onchange="changeConsigneeSelect()"
|
|
|
id="consignee_select">
|
|
|
<option value="-1">请选择</option>
|
...
|
...
|
@@ -351,9 +409,20 @@ |
|
|
{
|
|
|
var consignee = consigneeList[index];
|
|
|
$("#sh_company").val(consignee.code?consignee.code:"");
|
|
|
$("#sh_address").val(consignee.address?consignee.address:"");
|
|
|
|
|
|
var address = consignee.co_address;
|
|
|
if(notEmpty(address)){
|
|
|
if(address.length>70){
|
|
|
address = address.substring(0,70);
|
|
|
}
|
|
|
}else{
|
|
|
address = "";
|
|
|
}
|
|
|
|
|
|
$("#sh_address").val(address);
|
|
|
$("#sh_telephone").val(consignee.tel?consignee.tel:"");
|
|
|
$("#sh_country").val(consignee.name?consignee.name:"");
|
|
|
$("#sh_name").val(consignee.code?consignee.code:"");
|
|
|
}
|
|
|
}
|
|
|
}
|
...
|
...
|
@@ -381,16 +450,18 @@ |
|
|
<td class="kv-label"><spring:message code="manifest.company" /><span
|
|
|
class="required_span">*</span></td>
|
|
|
<td class="kv-content"><input required id="sh_company" name="sh_company" type="text"
|
|
|
value="${manifest.sh_company }"
|
|
|
oninput="onInputChange(event,'sh_company','oninput')"
|
|
|
onpropertychange="onInputChange(event,'sh_company','onpropertychange')"></td>
|
|
|
value="${manifest.sh_company }" oninput="onInputChange(event,'sh_company','oninput')"
|
|
|
onpropertychange="onInputChange(event,'sh_company','onpropertychange')"></td>
|
|
|
<td class="kv-label"><spring:message code="manifest.address" /><span
|
|
|
class="required_span">*</span></td>
|
|
|
<td class="kv-content"><input required id="sh_address" name="sh_address" maxlength="70" type="text"
|
|
|
value="${manifest.sh_address }"></td>
|
|
|
<td class="kv-label"><spring:message code="manifest.zip.code" /></td>
|
|
|
<td class="kv-content" colspan="5"><input id="sh_zipcode" name="sh_zipcode" type="text"
|
|
|
value="${manifest.sh_zipcode }"></td>
|
|
|
<td class="kv-content"><input required id="sh_address" name="sh_address" maxlength="70"
|
|
|
type="text" value="${manifest.sh_address }"></td>
|
|
|
<td class="kv-label"><spring:message code="manifest.country" /><span
|
|
|
class="required_span">*</span></td>
|
|
|
<td class="kv-content"><input required id="sh_country" name="sh_country" maxlength="2"
|
|
|
type="text" value="${manifest.sh_country }"
|
|
|
oninput="onInputChange(event,'sh_country','oninput')"
|
|
|
onpropertychange="onInputChange(event,'sh_country','onpropertychange')"></td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="kv-label"><spring:message code="manifest.city" /><span class="required_span">*</span></td>
|
...
|
...
|
@@ -400,12 +471,9 @@ |
|
|
<td class="kv-label"><spring:message code="manifest.state" /></td>
|
|
|
<td class="kv-content"><input id="sh_deltaname" name="sh_deltaname" type="text"
|
|
|
value="${manifest.sh_deltaname}"></td>
|
|
|
<td class="kv-label"><spring:message code="manifest.country.code" /><span
|
|
|
class="required_span">*</span></td>
|
|
|
<td class="kv-content" colspan="5"><input required id="sh_country" name="sh_country"
|
|
|
type="text" value="${manifest.sh_country }"
|
|
|
oninput="onInputChange(event,'sh_country','oninput')"
|
|
|
onpropertychange="onInputChange(event,'sh_country','onpropertychange')"></td>
|
|
|
<td class="kv-label"><spring:message code="manifest.zip.code" /></td>
|
|
|
<td class="kv-content"><input id="sh_zipcode" name="sh_zipcode" type="text"
|
|
|
value="${manifest.sh_zipcode }"></td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="kv-label"><spring:message code="manifest.telephone" /></td>
|
...
|
...
|
@@ -414,12 +482,18 @@ |
|
|
<td class="kv-label"><spring:message code="manifest.fax" /></td>
|
|
|
<td class="kv-content"><input id="sh_fax" name="sh_fax" type="text"
|
|
|
value="${manifest.sh_fax }"></td>
|
|
|
<td class="kv-label"><spring:message code="manifest.shr.cneaeo" /></td>
|
|
|
<td class="kv-content"><input id="cneaeo" name="cneaeo" type="text"
|
|
|
value="${manifest.cneaeo }" oninput="onInputChange(event,'cneaeo','oninput')"
|
|
|
onpropertychange="onInputChange(event,'cneaeo','onpropertychange')"></td>
|
|
|
</tr>
|
|
|
<tr style="display: none;">
|
|
|
<td style="display: none;" class="kv-label"><spring:message code="manifest.receive_name" /><span
|
|
|
class="required_span">*</span></td>
|
|
|
<td style="display: none;" class="kv-content" colspan="5"><input required id="sh_name" name="sh_name"
|
|
|
type="text" value="${manifest.sh_name }"></td>
|
|
|
<td style="display: none;" class="kv-content" colspan="5"><input required id="sh_name"
|
|
|
name="sh_name" type="text" value="${manifest.sh_name }"></td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<%-- <tr>
|
|
|
<td class="kv-label"><spring:message code="manifest.province.code" /></td>
|
|
|
<td class="kv-content"><input id="sh_provincecode" name="sh_provincecode" type="text"
|
|
|
value="${manifest.sh_provincecode }"
|
...
|
...
|
@@ -428,21 +502,37 @@ |
|
|
<td class="kv-label"><spring:message code="manifest.province.name" /></td>
|
|
|
<td class="kv-content" colspan="3"><input id="sh_provincename" name="sh_provincename" type="text"
|
|
|
value="${manifest.sh_provincename }"></td>
|
|
|
</tr>
|
|
|
</tr> --%>
|
|
|
|
|
|
<tr>
|
|
|
<td class="kv-label"><spring:message code="manifest.shr.cneaeo" /></td>
|
|
|
<td class="kv-content"><input id="cneaeo" name="cneaeo" type="text"
|
|
|
value="${manifest.cneaeo }" oninput="onInputChange(event,'cneaeo','oninput')"
|
|
|
onpropertychange="onInputChange(event,'cneaeo','onpropertychange')"></td>
|
|
|
<td class="kv-label"><spring:message code="manifest.shr.cnecusid" /></td>
|
|
|
<td class="kv-content"><input id="cnecusid" name="cnecusid" type="text"
|
|
|
value="${manifest.cnecusid }" oninput="onInputChange(event,'cnecusid','oninput')"
|
|
|
<td class="kv-label" colspan="6">
|
|
|
<select id="sh_cusid" required>
|
|
|
<c:if test="${not empty manifest.cnecusid}">
|
|
|
<c:set var="tempCneType" value='${fn:split(manifest.cnecusid,"+")[0]}' />
|
|
|
<option value="${tempCneType}">${tempCneType}</option>
|
|
|
</c:if>
|
|
|
|
|
|
<c:if test="${empty manifest.cnecusid}">
|
|
|
<option value=""><spring:message code="manifest.enterprise.code.type" /></option>
|
|
|
</c:if>
|
|
|
</select>
|
|
|
<span style="color: black; font-size: 16px;">+</span>
|
|
|
<input id="cnecusid" type="text" required
|
|
|
<c:if test="${not empty manifest.cnecusid}">
|
|
|
<c:set var="tempCneValue" value='${fn:split(manifest.cnecusid,"+")[1]}' />
|
|
|
value="${tempCneValue }"
|
|
|
</c:if>
|
|
|
|
|
|
placeholder="<spring:message code='manifest.enterprise.code' />"
|
|
|
oninput="onInputChange(event,'cnecusid','oninput')"
|
|
|
onpropertychange="onInputChange(event,'cnecusid','onpropertychange')"></td>
|
|
|
<td style="display: none;" class="kv-label"><spring:message code="manifest.shr.unlodingcode" /><span
|
|
|
class="required_span">*</span></td>
|
|
|
<td style="display: none;" class="kv-content"><input required id="unlodingcode" name="unlodingcode"
|
|
|
type="text" value="${manifest.unlodingcode }"
|
|
|
</tr>
|
|
|
|
|
|
<tr style="display: none;">
|
|
|
<td style="display: none;" class="kv-label"><spring:message
|
|
|
code="manifest.shr.unlodingcode" /><span class="required_span">*</span></td>
|
|
|
<td style="display: none;" class="kv-content"><input required id="unlodingcode"
|
|
|
name="unlodingcode" type="text" value="${manifest.unlodingcode }"
|
|
|
oninput="onInputChange(event,'unlodingcode','oninput')"
|
|
|
onpropertychange="onInputChange(event,'unlodingcode','onpropertychange')"></td>
|
|
|
</tr>
|
...
|
...
|
@@ -450,7 +540,7 @@ |
|
|
|
|
|
<!-- 危险品信息 start -->
|
|
|
<tr>
|
|
|
<td class="kv-label" colspan="6"><spring:message
|
|
|
<td style="background-color: #EBEDF4; color: black;" class="kv-label" colspan="6"><spring:message
|
|
|
code="manifest.dangerous.goods.information" /></td>
|
|
|
</tr>
|
|
|
<tr>
|
...
|
...
|
@@ -469,7 +559,8 @@ |
|
|
|
|
|
<!-- 承运到达信息 start -->
|
|
|
<tr>
|
|
|
<td class="kv-label" colspan="6"><spring:message code="manifest.carriage.arrival" /></td>
|
|
|
<td style="background-color: #EBEDF4; color: black;" class="kv-label" colspan="6"><spring:message
|
|
|
code="manifest.carriage.arrival" /></td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="kv-label"><spring:message code="manifest.carrier" /><span
|
...
|
...
|
@@ -514,7 +605,8 @@ |
|
|
|
|
|
<!-- 交运信息 start -->
|
|
|
<tr>
|
|
|
<td class="kv-label" colspan="6"><spring:message code="menu.delivery" /></td>
|
|
|
<td style="background-color: #EBEDF4; color: black;" class="kv-label" colspan="6"><spring:message
|
|
|
code="menu.delivery" /></td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="kv-label"><spring:message code="manifest.transfer.station" /></td>
|
...
|
...
|
@@ -594,7 +686,7 @@ |
|
|
<script type="text/javascript" src="<%=basePath%>resource/layer-v3.0.3/layer/layer.js"></script>
|
|
|
<script type="text/javascript" src="<%=basePath%>resource/My97DatePicker/WdatePicker.js"></script>
|
|
|
<script src="<%=basePath%>resource/easyui/jquery.easyui.min.js"></script>
|
|
|
<script src="<%=basePath%>/resource/js/tools.js?version=0.8"></script>
|
|
|
<script src="<%=basePath%>/resource/js/tools.js?version=1.2"></script>
|
|
|
<!--弹出层引入的JS-->
|
|
|
<script type="text/javascript">
|
|
|
$(function(){
|
...
|
...
|
@@ -689,6 +781,25 @@ $(function(){ |
|
|
function submit(){
|
|
|
var id3 = $("#waybillnomaster").val($("#waybill").val());
|
|
|
var data = $("#form").serialize();
|
|
|
|
|
|
var shp_cusid_type = getSelectedValue("co_cusid");
|
|
|
var sh_cusid = $("#shpcusid").val();
|
|
|
|
|
|
if(notEmpty(shp_cusid_type)&¬Empty(sh_cusid)){
|
|
|
shpcusid = shp_cusid_type+"+"+sh_cusid;
|
|
|
data+="&shpcusid="+encodeURIComponent(shpcusid);
|
|
|
}
|
|
|
|
|
|
var cne_cusid_type = getSelectedValue("sh_cusid");
|
|
|
var cne_cusid = $("#cnecusid").val();
|
|
|
|
|
|
if(notEmpty(cne_cusid_type)&¬Empty(cne_cusid)){
|
|
|
cnecusid = cne_cusid_type+"+"+cne_cusid;
|
|
|
data+="&cnecusid="+encodeURIComponent(cnecusid);
|
|
|
}
|
|
|
|
|
|
console.log("form-->"+data);
|
|
|
|
|
|
$.post("<%=basePath%>manifest/save",data,function (data) {
|
|
|
if (data.status == 200) {
|
|
|
// layer.confirm("<spring:message code="opt.savesuccess"/>", {btn: ['<spring:message code="opt.confirm"/>', '<spring:message code="opt.cancel"/>']}, function () {
|
...
|
...
|
@@ -719,21 +830,38 @@ $(function(){ |
|
|
|
|
|
//发送报文并且保存
|
|
|
function savesend(){
|
|
|
var id3 = $("#waybillnomaster").val($("#waybill").val());
|
|
|
var data = $("#form").serialize();
|
|
|
$.post("<%=basePath%>manifest/savesend",data,function (data) {
|
|
|
if (data.status == 200) {
|
|
|
// layer.confirm("<spring:message code="opt.savesuccess"/>", {btn: ['<spring:message code="opt.confirm"/>', '<spring:message code="opt.cancel"/>']}, function () {
|
|
|
<%-- window.location.href = "<%=basePath %>manifest/list" ; --%>
|
|
|
$("#xmlContent").val(data.data);
|
|
|
$("#DialogShunt").window('open');
|
|
|
window.location.href = "<%=basePath%>manifest/list";
|
|
|
// })
|
|
|
} else {
|
|
|
//layer.open({content: "<spring:message code="opt.savefailed"/>"});
|
|
|
layer.open({content:data.msg});
|
|
|
}
|
|
|
})
|
|
|
var isValid = $("#form").valid();
|
|
|
if(isValid){
|
|
|
var id3 = $("#waybillnomaster").val($("#waybill").val());
|
|
|
var data = $("#form").serialize();
|
|
|
var shp_cusid_type = getSelectedValue("co_cusid");
|
|
|
var sh_cusid = $("#shpcusid").val();
|
|
|
|
|
|
if(notEmpty(shp_cusid_type)&¬Empty(sh_cusid)){
|
|
|
shpcusid = shp_cusid_type+"+"+sh_cusid;
|
|
|
data+="&shpcusid="+encodeURIComponent(shpcusid);
|
|
|
}
|
|
|
|
|
|
var cne_cusid_type = getSelectedValue("sh_cusid");
|
|
|
var cne_cusid = $("#cnecusid").val();
|
|
|
|
|
|
if(notEmpty(cne_cusid_type)&¬Empty(cne_cusid)){
|
|
|
cnecusid = cne_cusid_type+"+"+cne_cusid;
|
|
|
data+="&cnecusid="+encodeURIComponent(cnecusid);
|
|
|
}
|
|
|
|
|
|
console.log("form-->"+data);
|
|
|
|
|
|
$.post("<%=basePath%>manifest/savesend",data,function (data) {
|
|
|
if (data.status == 200) {
|
|
|
$("#xmlContent").val(data.data);
|
|
|
$("#DialogShunt").window('open');
|
|
|
window.location.href = "<%=basePath%>manifest/list";
|
|
|
} else {
|
|
|
layer.open({content:data.msg});
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
}
|
|
|
//发送交运报文
|
|
|
function sendDelivery(){
|
...
|
...
|
@@ -775,6 +903,141 @@ $(function(){ |
|
|
// }
|
|
|
// })
|
|
|
// }
|
|
|
|
|
|
var api = "<%=basePath %>enterprise/search";
|
|
|
|
|
|
$('#co_country').combogrid({
|
|
|
panelWidth:212,
|
|
|
url: api,
|
|
|
idField:'country_code',
|
|
|
textField:'start',
|
|
|
mode:'remote',
|
|
|
fitColumns:true,
|
|
|
onBeforeLoad: function (parm) { //在请求加载数据之前触发,返回 false 则取消加载动作
|
|
|
var value = $('#co_country').combobox('getValue');
|
|
|
if (value) {
|
|
|
var upper = value.toUpperCase();
|
|
|
$('#co_country').combogrid('setValue',upper);
|
|
|
parm.start = upper;
|
|
|
|
|
|
onGetData('co_cusid','co_country');
|
|
|
return true;
|
|
|
}
|
|
|
return false;
|
|
|
},
|
|
|
onSelect: function(row,rowData){
|
|
|
//当用户选择一个列表项时触发。
|
|
|
$('#co_country').combogrid('setValue',rowData.country_code);
|
|
|
|
|
|
onGetData('co_cusid','co_country');
|
|
|
},
|
|
|
columns:[[
|
|
|
{field:'name_cn',title:'名称',width:106},
|
|
|
{field:'country_code',title:'代码',width:106}
|
|
|
]]
|
|
|
});
|
|
|
|
|
|
$('#sh_country').combogrid({
|
|
|
panelWidth:220,
|
|
|
url: api,
|
|
|
idField:'country_code',
|
|
|
textField:'start',
|
|
|
mode:'remote',
|
|
|
fitColumns:true,
|
|
|
onBeforeLoad: function (parm) { //在请求加载数据之前触发,返回 false 则取消加载动作
|
|
|
var value = $('#sh_country').combobox('getValue');
|
|
|
if (value) {
|
|
|
var upper = value.toUpperCase();
|
|
|
$('#sh_country').combogrid('setValue',upper);
|
|
|
parm.start = upper;
|
|
|
|
|
|
onGetData('sh_cusid','sh_country')
|
|
|
return true;
|
|
|
}
|
|
|
return false;
|
|
|
},
|
|
|
onSelect: function(row,rowData){
|
|
|
//当用户选择一个列表项时触发。
|
|
|
$('#sh_country').val(rowData.country_code);
|
|
|
onGetData('sh_cusid','sh_country')
|
|
|
},
|
|
|
columns:[[
|
|
|
{field:'name_cn',title:'名称',width:106},
|
|
|
{field:'country_code',title:'代码',width:106}
|
|
|
]]
|
|
|
});
|
|
|
|
|
|
function onGetData(selectId,inputId) {
|
|
|
console.log("onGetData()");
|
|
|
var cneType = "";
|
|
|
var shpType = "";
|
|
|
if(selectId=="co_cusid"){
|
|
|
//发货的
|
|
|
var shp_cusid = "${manifest.shpcusid}";
|
|
|
if(notEmpty(shp_cusid)){
|
|
|
shpType = shp_cusid.split("+")[0];
|
|
|
}
|
|
|
}
|
|
|
|
|
|
if(selectId=="sh_cusid"){
|
|
|
//收货的
|
|
|
var cnecusid = "${manifest.cnecusid}";
|
|
|
if(notEmpty(cnecusid)){
|
|
|
cneType = cnecusid.split("+")[0];
|
|
|
}
|
|
|
}
|
|
|
|
|
|
var select = $("#"+selectId);
|
|
|
select.html("");
|
|
|
select.append("<option value=''><spring:message code='manifest.enterprise.code.type' /></option>");
|
|
|
|
|
|
var countryCode = $('#'+inputId).combobox('getValue');
|
|
|
|
|
|
$.ajax({
|
|
|
url:"<%=basePath%>/enterprise/list?countryCode="+countryCode,
|
|
|
success:function(data){
|
|
|
if(data.status == 200){
|
|
|
if(data.data){
|
|
|
for(var i = 0; i < data.data.length; i++){
|
|
|
var type = data.data[i].enterprise_type;
|
|
|
|
|
|
if(selectId=="co_cusid"){
|
|
|
if(notEmpty(shpType)&&type&&(type==shpType)){
|
|
|
select.append("<option selected value='"+type+"'>"+type+"</option>");
|
|
|
}else{
|
|
|
select.append("<option value='"+type+"'>"+type+"</option>");
|
|
|
}
|
|
|
}else if(selectId=="sh_cusid"){
|
|
|
if(notEmpty(cneType)&&type&&(type==cneType)){
|
|
|
select.append("<option selected value='"+type+"'>"+type+"</option>");
|
|
|
}else{
|
|
|
select.append("<option value='"+type+"'>"+type+"</option>");
|
|
|
}
|
|
|
}else{
|
|
|
select.append("<option value='"+type+"'>"+type+"</option>");
|
|
|
}
|
|
|
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
|
|
|
function showDialog() {
|
|
|
layui.use('layer', function(){
|
|
|
var layer = layui.layer;
|
|
|
var viewUrl="<%=basePath%>consignor/list";
|
|
|
parent.layer.open({
|
|
|
type: 2,
|
|
|
title: '',
|
|
|
shadeClose: true,
|
|
|
shade: 0.8,
|
|
|
area: ['50%', '90%'],
|
|
|
content: viewUrl
|
|
|
});
|
|
|
});
|
|
|
}
|
|
|
</script>
|
|
|
</body>
|
|
|
</html> |
|
|
\ No newline at end of file |
...
|
...
|
|