|
@@ -655,6 +655,8 @@ public class OrderVo implements Serializable {
|
|
//如果订单没有被取消,且没有支付,则可支付,可取消
|
|
//如果订单没有被取消,且没有支付,则可支付,可取消
|
|
if (order_status == 0) {
|
|
if (order_status == 0) {
|
|
handleOption.put("cancel", true);
|
|
handleOption.put("cancel", true);
|
|
|
|
+ }
|
|
|
|
+ if (order_status == 0 && pay_status == 0) {
|
|
handleOption.put("pay", true);
|
|
handleOption.put("pay", true);
|
|
}
|
|
}
|
|
|
|
|