作者 Kevin

修改代理人和代理人公司为可选

... ... @@ -215,14 +215,12 @@
name="productname" maxlength="200">${manifest.productname}</textarea></td>
</tr>
<tr>
<td class="kv-label"><spring:message code="manifest.agent.name" /><span
class="required_span">*</span></td>
<td class="kv-content"><input required id="agentman" name="agentman" type="text"
value="<c:if test="${manifest.agentman == null}">${agent.contact }</c:if><c:if test="${manifest.agentman!=null }">${manifest.agentman }</c:if>"
<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}"
placeholder="<spring:message code="agent.namePlaceholder"/>"></td>
<td class="kv-label"><spring:message code="manifest.agent.company" /></td>
<td class="kv-content" colspan="3">
<%-- <input id="agentcompany" name="agentcompany" type="text" value="${agent.nameCn }" > --%>
<input id="agentcompany" name="agentcompany" type="text" value="${manifest.agentcompany}"
placeholder="<spring:message code="agent.companyPlaceholder"/>">
</td>
... ... @@ -441,9 +439,9 @@
<td class="kv-content"><input id="cnecusid" name="cnecusid" type="text"
value="${manifest.cnecusid }" oninput="onInputChange(event,'cnecusid','oninput')"
onpropertychange="onInputChange(event,'cnecusid','onpropertychange')"></td>
<td class="kv-label"><spring:message code="manifest.shr.unlodingcode" /><span
<td style="display: none;" class="kv-label"><spring:message code="manifest.shr.unlodingcode" /><span
class="required_span">*</span></td>
<td class="kv-content"><input required id="unlodingcode" name="unlodingcode"
<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>
... ...
... ... @@ -209,13 +209,11 @@
maxlength="200">${pre.productname}</textarea></td>
</tr>
<tr>
<td class="kv-label"><spring:message code="manifest.agent.name" /><span
class="required_span">*</span></td>
<td class="kv-content"><input required id="agentman" name="agentman" type="text"
<td class="kv-label"><spring:message code="manifest.agent.name" /></td>
<td class="kv-content"><input id="agentman" name="agentman" type="text"
value="${agent.threeCode}" placeholder="<spring:message code="agent.namePlaceholder"/>"></td>
<td class="kv-label"><spring:message code="manifest.agent.company" /><span
class="required_span">*</span></td>
<td class="kv-content" colspan="3"><input required id="agentcompany" name="agentcompany"
<td class="kv-label"><spring:message code="manifest.agent.company" /></td>
<td class="kv-content" colspan="3"><input id="agentcompany" name="agentcompany"
style="width: 400px;" type="text" value="${agent.nameCn }"
placeholder="<spring:message code="agent.companyPlaceholder"/>"></td>
</tr>
... ... @@ -429,9 +427,9 @@
<td class="kv-content"><input id="cnecusid" name="cnecusid" type="text"
value="${pre.cnecusid }" oninput="onInputChange(event,'cnecusid','oninput')"
onpropertychange="onInputChange(event,'cnecusid','onpropertychange')"></td>
<td class="kv-label"><spring:message code="manifest.shr.unlodingcode" /><span
<td style="display: none;" class="kv-label"><spring:message code="manifest.shr.unlodingcode" /><span
class="required_span">*</span></td>
<td class="kv-content"><input required id="unlodingcode" name="unlodingcode" type="text"
<td style="display: none;" class="kv-content"><input required id="unlodingcode" name="unlodingcode" type="text"
value="${pre.unlodingcode }" oninput="onInputChange(event,'unlodingcode','oninput')"
onpropertychange="onInputChange(event,'unlodingcode','onpropertychange')"></td>
</tr>
... ...
... ... @@ -267,6 +267,7 @@ function onInputChange(event, id, method) {
if (id && id == "destinationstation") {
$("#reach_station").val(upper);
$("#unlodingcode").val(upper);
}
if (id && id == "totalpiece") {
... ...