123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- <!DOCTYPE html>
- <html lang="zh" xmlns:th="http://www.thymeleaf.org" >
- <head>
- <th:block th:include="include :: header('发票管理表(开发票,发票查询)修改')" />
- </head>
- <body>
- <div class="ui-layout-center">
- <form id="form-SDdglFpglInvoiceinfo-edit" class="customize-search-form">
- <div class="customize-form-group-container">
- </div>
- <div class="customize-form-group-container">
- </div>
- <div class="customize-form-group-container">
- <input type="hidden" id="id" name="id" th:value="${id}">
- <div class="customize-form-group">
- <label>平台订单号:</label>
- <input name="platformOrderNo" placeholder="平台订单号" th:value="${platformOrderNo}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>发票代码:</label>
- <input name="invoiceCode" placeholder="发票代码" th:value="${invoiceCode}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>发票号码:</label>
- <input name="invoiceNumber" placeholder="发票号码" th:value="${invoiceNumber}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>发票金额:</label>
- <input name="invoiceAmount" placeholder="发票金额" th:value="${invoiceAmount}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>渠道店铺:</label>
- <input name="channelStore" placeholder="渠道店铺" th:value="${channelStore}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>订单发票类型 (线上, 线下):</label>
- <input name="orderInvoiceType" placeholder="订单发票类型 (线上, 线下)" th:value="${orderInvoiceType}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>发票类型:</label>
- <input name="invoiceType" placeholder="发票类型" th:value="${invoiceType}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>抬头类型:</label>
- <input name="headerType" placeholder="抬头类型" th:value="${headerType}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>抬头名称:</label>
- <input name="headerName" placeholder="抬头名称" th:value="${headerName}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>开票类型:</label>
- <input name="billingType" placeholder="开票类型" th:value="${billingType}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>开票时间:</label>
- <input name="billingTime" placeholder="开票时间" th:value="${billingTime}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>邮寄信息:</label>
- <input name="mailingInfo" placeholder="邮寄信息" th:value="${mailingInfo}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>开票金额:</label>
- <input name="billingAmount" placeholder="开票金额" th:value="${billingAmount}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>店铺名称:</label>
- <input name="storeName" placeholder="店铺名称" th:value="${storeName}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>审核类型:</label>
- <input name="auditType" placeholder="审核类型" th:value="${auditType}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>审核状态:</label>
- <input name="auditStatus" placeholder="审核状态" th:value="${auditStatus}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>暂无数据 (0: 否, 1: 是):</label>
- <input name="noData" placeholder="暂无数据 (0: 否, 1: 是)" th:value="${noData}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>合并订单号:</label>
- <input name="mergeOrderNo" placeholder="合并订单号" th:value="${mergeOrderNo}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>订单号:</label>
- <input name="orderNo" placeholder="订单号" th:value="${orderNo}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>开票状态:</label>
- <input name="billingStatus" placeholder="开票状态" th:value="${billingStatus}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>创建时间:</label>
- <input name="createTime" placeholder="创建时间" th:value="${createTime}" class="styled-input" type="text">
- </div>
- </div>
- </form>
- </div>
- <div class="main-content">
- <div class="col-sm-offset-5 col-sm-10">
- </div>
- </div>
- <th:block th:include="include :: footer" />
- </body>
- </html>
- <script>
- function edit() {
- var data = $("#form-SDdglFpglInvoiceinfo-edit").serializeArray();
- $.ajax({
- cache : true,
- type : "POST",
- url : ctx + "ddgl/sddglfpglinvoiceinfo/sDdglFpglInvoiceinfoEdit",
- data : data,
- async : false,
- error : function(request) {
- $.modal.alertError("系统错误");
- },
- success : function(data) {
- $.operate.successCallback(data);
- }
- });
- }
- function submitHandler() {
- if ($.validate.form()) {
- edit();
- }
- }
- </script>
|