Browse Source
修改销售订单的作废前端按钮,新增作废前提醒和确认后打开作废页面 新增销售订单作废前端页面 新增销售订单作废权限字符 新增 根据销售订单对象作废销售订单后端接口 新增 加载作废销售订单信息弹窗后端接口 修改 作废销售订单信息后端接口 调整驳回调整、业务经理审核、业务主管审核、总经理总助审核页面:调整页面布局整齐、调整备注字段的数据回显、调整贸易条款字段的数据回显dev
liuxiaoxu
3 months ago
10 changed files with 158 additions and 27 deletions
@ -0,0 +1,32 @@ |
|||||
|
<!DOCTYPE html> |
||||
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" > |
||||
|
<head> |
||||
|
<th:block th:include="include :: header('作废')" /> |
||||
|
</head> |
||||
|
<body class="white-bg"> |
||||
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content"> |
||||
|
<form class="form-horizontal" id="form-salesOrder-cancel" th:object="${sysSalesOrder}"> |
||||
|
<input name="salesOrderId" th:field="*{salesOrderId}" type="hidden"> |
||||
|
<div class="form-group"> |
||||
|
<label class="col-sm-3 control-label is-required">作废理由:</label> |
||||
|
<div class="col-sm-8"> |
||||
|
<textarea name="cancelRemark" th:field="*{cancelRemark}" class="form-control" required></textarea> |
||||
|
</div> |
||||
|
</div> |
||||
|
</form> |
||||
|
</div> |
||||
|
<th:block th:include="include :: footer" /> |
||||
|
<script th:inline="javascript"> |
||||
|
var prefix = ctx + "system/salesOrder"; |
||||
|
$("#form-salesOrder-cancel").validate({ |
||||
|
focusCleanup: true |
||||
|
}); |
||||
|
|
||||
|
function submitHandler() { |
||||
|
if ($.validate.form()) { |
||||
|
$.operate.save(prefix + "/cancel", $('#form-salesOrder-cancel').serialize()); |
||||
|
} |
||||
|
} |
||||
|
</script> |
||||
|
</body> |
||||
|
</html> |
Loading…
Reference in new issue