|
@@ -1243,16 +1243,19 @@ class Transfer extends Start_Controller {
|
|
}
|
|
}
|
|
$id = $list[0]['id'];
|
|
$id = $list[0]['id'];
|
|
$scan_time = $list[0]['time'];
|
|
$scan_time = $list[0]['time'];
|
|
-
|
|
|
|
- if(time() - $scan_time < 3600 * 24 * 3){
|
|
|
|
- $this->systemtransfer_cr->save([
|
|
|
|
- 'extra_status'=>0,
|
|
|
|
- ],$id);
|
|
|
|
- }else{
|
|
|
|
- $this->systemtransfer_cr->save([
|
|
|
|
- 'extra_status'=>3,
|
|
|
|
- ],$id);
|
|
|
|
|
|
+ if($list[0]['type'] == 1){
|
|
|
|
+ if(time() - $scan_time < 3600 * 24 * 3){
|
|
|
|
+ $this->systemtransfer_cr->save([
|
|
|
|
+ 'extra_status'=>0,
|
|
|
|
+ ],$id);
|
|
|
|
+ }else{
|
|
|
|
+ $this->systemtransfer_cr->save([
|
|
|
|
+ 'extra_status'=>3,
|
|
|
|
+ ],$id);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|