记得上下班打卡 | git大法好,push需谨慎

Commit 9009c992 authored by jiangxiulong's avatar jiangxiulong

bug

parent 589aa1af
...@@ -53,7 +53,7 @@ ...@@ -53,7 +53,7 @@
</select> </select>
</div> </div>
<div class="col-sm-5"> <div class="col-sm-5">
<input class="form-control" type="text" placeholder="请填写url" id="targetObjInput"> <input style="display: none" class="form-control" type="text" placeholder="请填写url" id="targetObjInput">
<div hidden class="row" id="targetObjSelectShow"> <div hidden class="row" id="targetObjSelectShow">
<div class="col-lg-6"> <div class="col-lg-6">
<div class="input-group"> <div class="input-group">
......
...@@ -35,6 +35,14 @@ ...@@ -35,6 +35,14 @@
<label>收货人姓名:</label> <label>收货人姓名:</label>
<input type="text" name="expressContacts"/> <input type="text" name="expressContacts"/>
</li> </li>
<!--<li>
<label>订单状态:</label>
<select name="orderStatus" th:with="type=${@dict.getType('zhengzai_order_status')}">
<option value="">所有</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}"
th:value="${dict.dictValue}"></option>
</select>
</li>-->
<li> <li>
<label>订单状态:</label> <label>订单状态:</label>
<select name="orderStatus" th:with="type=${@dict.getType('zhengzai_order_status')}"> <select name="orderStatus" th:with="type=${@dict.getType('zhengzai_order_status')}">
...@@ -45,9 +53,12 @@ ...@@ -45,9 +53,12 @@
</li> </li>
<li> <li>
<label>快递状态:</label> <label>快递状态:</label>
<select name="expressStatus" th:with="type=${@dict.getType('zhengzai_express_status')}"> <select name="expressStatus">
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" <option value="">所有</option>
th:value="${dict.dictValue}"></option> <option value="1">未下单</option>
<option value="2">已下单</option>
<option value="50">已揽收</option>
<option value="80">已签收</option>
</select> </select>
</li> </li>
<li> <li>
...@@ -291,6 +302,14 @@ ...@@ -291,6 +302,14 @@
} }
function printExpress(orderExpressId) { function printExpress(orderExpressId) {
try{
var LODOP = getLodop();
if (LODOP == undefined) {
return false;
}
} catch (err) {
return false;
}
var data = ''; var data = '';
if (orderExpressId) { if (orderExpressId) {
var ids = [orderExpressId]; var ids = [orderExpressId];
......
...@@ -241,6 +241,14 @@ ...@@ -241,6 +241,14 @@
} }
function printExpress(performanceId) { function printExpress(performanceId) {
try{
var LODOP = getLodop();
if (LODOP == undefined) {
return false;
}
} catch (err) {
return false;
}
var data = ''; var data = '';
var ids = [performanceId]; var ids = [performanceId];
data = {"ids": ids.join()}; data = {"ids": ids.join()};
......
...@@ -139,11 +139,11 @@ public class KylinRefundPerformancesAdminServiceImpl { ...@@ -139,11 +139,11 @@ public class KylinRefundPerformancesAdminServiceImpl {
case "review": case "review":
batchUpdateStatus = batchStatus; batchUpdateStatus = batchStatus;
if (batchStatus == KylinTableStatusConst.STATUS_OPERATE_ADOPT44) { // 通过申请 if (batchStatus == KylinTableStatusConst.STATUS_OPERATE_ADOPT44) { // 通过申请
paymentTypeAlipayArray = new Integer[]{KylinTableStatusConst.STATUS_APPLY}; paymentTypeAlipayArray = new Integer[]{KylinTableStatusConst.STATUS_APPLY, KylinTableStatusConst.STATUS_FINANCE_REJECT};
orderUpdateStatus = KylinTableStatusConst.ORDER_REFUND_STATUS_APPROVED; orderUpdateStatus = KylinTableStatusConst.ORDER_REFUND_STATUS_APPROVED;
} }
if (batchStatus == KylinTableStatusConst.STATUS_OPERATE_REJECT33) { // 驳回申请 if (batchStatus == KylinTableStatusConst.STATUS_OPERATE_REJECT33) { // 驳回申请
paymentTypeAlipayArray = new Integer[]{KylinTableStatusConst.STATUS_APPLY}; paymentTypeAlipayArray = new Integer[]{KylinTableStatusConst.STATUS_APPLY, KylinTableStatusConst.STATUS_FINANCE_REJECT};
orderUpdateStatus = KylinTableStatusConst.ORDER_REFUND_STATUS_REJECT; orderUpdateStatus = KylinTableStatusConst.ORDER_REFUND_STATUS_REJECT;
} }
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment