|
|
@@ -283,7 +283,7 @@ class Returns extends Start_Controller {
|
|
|
echo json_encode(array('msg'=>'请选择发货日期','success'=>false));exit;
|
|
|
}
|
|
|
if($post['stime'] <= $post['ftime']){
|
|
|
- echo json_encode(array('msg'=>'收到日期必须大于发货日期','success'=>false));exit;
|
|
|
+ echo json_encode(array('msg'=>'收到日期必须晚于发货日期','success'=>false));exit;
|
|
|
}
|
|
|
}
|
|
|
if($this->returns->get_number($post['number']) && $post['number'] != '')
|
|
|
@@ -391,7 +391,7 @@ class Returns extends Start_Controller {
|
|
|
echo json_encode(array('msg'=>'请选择发货日期','success'=>false));exit;
|
|
|
}
|
|
|
if($post['stime'] <= $post['ftime']){
|
|
|
- echo json_encode(array('msg'=>'收到日期必须大于发货日期','success'=>false));exit;
|
|
|
+ echo json_encode(array('msg'=>'收到日期必须晚于发货日期','success'=>false));exit;
|
|
|
}
|
|
|
}
|
|
|
|