| | |
| | | |
| | | <tr> |
| | | <td class="ali03">收款单位:</td> |
| | | <td> <select keepdefaultstyle='true' id='selSuppliers' runat="server" datatextfield='Name' datavaluefield='Keyid' onchange='custormerChange(this)' class='Sreq' sign="" selinputhtml="True" style=" width:183px;" > |
| | | </select></td> |
| | | <td> <%--<select keepdefaultstyle='true' id='selSuppliers' runat="server" datatextfield='Name' datavaluefield='Keyid' onchange='custormerChange(this)' class='Sreq' sign="" selinputhtml="True" style=" width:183px;" > |
| | | </select>--%> |
| | | <input id='txtSupplierName' runat="server" maxlength='50' placeholder="请输入收款单位" style="width:200px;" readonly="readonly" /> |
| | | <input type="hidden" id='selSuppliersss' runat="server" /> |
| | | </td> |
| | | </tr> |
| | | <tr> |
| | | <td class="ali03">金额:</td> |
| | | <td> <input id='txtZengjianmoney' runat="server" maxlength='18' onblur="validateAmount(event)" placeholder="请输入金额" /></td> |
| | | <td> <input id='txtZengjianmoney' runat="server" maxlength='18' onblur="validateAmount(event)" placeholder="请输入金额" readonly="readonly" /></td> |
| | | </tr> |
| | | <tr> |
| | | <td class="ali03">户名:</td> |
| | | <td> <input id='txtHuming' runat="server" maxlength='50' placeholder="请输入户名" style="width:200px;" /></td> |
| | | </tr> |
| | | <tr> |
| | | <td class="ali03">开户行:</td> |
| | | <td> <input id='txtBank' runat="server" maxlength='50' placeholder="请输入开户行" /></td> |
| | | <td> <input id='txtBank' runat="server" maxlength='50' placeholder="请输入开户行" style="width:200px;" /></td> |
| | | </tr> |
| | | <tr> |
| | | <td class="ali03">账号:</td> |
| | | <td> <input id='txtAccountID' runat="server" maxlength='50' placeholder="请输入账号" /></td> |
| | | <td> <input id='txtAccountID' runat="server" maxlength='50' placeholder="请输入账号" style="width:200px;" /></td> |
| | | </tr> |
| | | <tr> |
| | | <td class="ali03">订单:</td> |
| | | <td> <span id="ordernos" runat="server" ></span></td> |
| | | </tr> |
| | | <tr style="display:none;"> |
| | | <td class="ali03">订单金额:</td> |
| | | <td> <span id="ordernjine" runat="server" ></span></td> |
| | | </tr> |
| | | <tr> |
| | | <td colspan="2"></td> |
| | |
| | | if (jobj != '-2') { |
| | | document.getElementById('txtBank').value = jobj.Bank; |
| | | document.getElementById('txtAccountID').value = jobj.AccountID; |
| | | if (jobj.Huming == "") { |
| | | document.getElementById('txtHuming').value = jobj.Name; |
| | | } else { |
| | | document.getElementById('txtHuming').value = jobj.Huming; |
| | | } |
| | | |
| | | } else { |
| | | document.getElementById('txtBank').value = ""; |
| | | document.getElementById('txtAccountID').value = ""; |
| | | document.getElementById('txtHuming').value = ""; |
| | | } |
| | | |
| | | |