Commit cbe3d2b3 authored by wwccw0591's avatar wwccw0591

pc

parent 7ea78340
...@@ -176,7 +176,7 @@ class ApiConst ...@@ -176,7 +176,7 @@ class ApiConst
const pastWaitEvaluation = 2; const pastWaitEvaluation = 2;
const canRefundDay = 3; const canRefundDay = 3;
const byselfRfundDay=1;
const goodsTypeFour = 4; const goodsTypeFour = 4;
......
...@@ -228,7 +228,11 @@ class RefundReturnModel extends \DAO\AbstractModel { ...@@ -228,7 +228,11 @@ class RefundReturnModel extends \DAO\AbstractModel {
break; break;
//已收货 //已收货
case ApiConst::orderStateComplete: case ApiConst::orderStateComplete:
$order_refund = ApiConst::canRefundDay;//15:收货完成后可以申请退款退货 if($order['shippingType']==ApiConst::express){
$order_refund=ApiConst::canRefundDay;
}else{
$order_refund=ApiConst::byselfRfundDay;
}
if($order['delayTime']>ApiConst::zero){ if($order['delayTime']>ApiConst::zero){
$delay_time = $order['delayTime']+60*60*24*$order_refund; $delay_time = $order['delayTime']+60*60*24*$order_refund;
}else{ }else{
......
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