...
|
...
|
@@ -95,12 +95,14 @@ |
|
|
<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"
|
|
|
placeholder="<spring:message code='manifest.carrier.tip'/>"
|
|
|
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"
|
|
|
placeholder="<spring:message code='manifest.carrier.flightno.tip'/>"
|
|
|
value="${pre.flightno }" oninput="onInputChange(event,'flightno','oninput')"
|
|
|
onpropertychange="onInputChange(event,'flightno','onpropertychange')"></td>
|
|
|
<td class="kv-label"><spring:message code="manifest.flight.date" /><span
|
...
|
...
|
@@ -168,8 +170,8 @@ |
|
|
<option value="CC" <c:if test = "${pre.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" /></td>
|
|
|
<td class="kv-content"><input type="text" class="date bill" id="stowagedate"
|
|
|
<td style="display: none;" class="kv-label"><spring:message code="manifest.fitting.time" /></td>
|
|
|
<td style="display: none;" class="kv-content"><input type="text" class="date bill" id="stowagedate"
|
|
|
autocomplete="off" name="stowagedate"
|
|
|
onfocus="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss'})"
|
|
|
value="<fmt:formatDate pattern='yyyy-MM-dd HH:mm:ss' value='${pre.stowagedate }'></fmt:formatDate>">
|
...
|
...
|
@@ -435,6 +437,10 @@ |
|
|
value="${pre.cneaeo }" oninput="onInputChange(event,'cneaeo','oninput')"
|
|
|
onpropertychange="onInputChange(event,'cneaeo','onpropertychange')"></td>
|
|
|
</tr>
|
|
|
|
|
|
<tr style="display: none;">
|
|
|
<td> <input value="${pre.cnecusid}"/> <input value="${pre.shpcusid}"/> </td>
|
|
|
</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"
|
...
|
...
|
@@ -974,6 +980,26 @@ |
|
|
});
|
|
|
|
|
|
function onGetData(selectId,inputId) {
|
|
|
var cneType = "";
|
|
|
var shpType = "";
|
|
|
if(selectId=="co_cusid"){
|
|
|
//发货的
|
|
|
var shp_cusid = "${pre.shpcusid}";
|
|
|
console.log("shp_cusid-->"+shp_cusid);
|
|
|
if(notEmpty(shp_cusid)){
|
|
|
shpType = shp_cusid.split("+")[0];
|
|
|
}
|
|
|
}
|
|
|
|
|
|
if(selectId=="sh_cusid"){
|
|
|
//收货的
|
|
|
var cnecusid = "${pre.cnecusid}";
|
|
|
console.log("cnecusid-->"+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>");
|
...
|
...
|
@@ -985,10 +1011,26 @@ |
|
|
success : function(data) {
|
|
|
if (data.status == 200) {
|
|
|
if (data.data) {
|
|
|
console.log("shpType-->"+shpType);
|
|
|
console.log("cneType-->"+cneType);
|
|
|
|
|
|
for (var i = 0; i < data.data.length; i++) {
|
|
|
var type = data.data[i].enterprise_type;
|
|
|
select.append("<option value='"+type+"'>"
|
|
|
+ type + "</option>");
|
|
|
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>");
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
...
|
...
|
|