...
|
...
|
@@ -135,13 +135,13 @@ class AdminResumeController extends AdminBaseController |
|
|
if($data['type'] == 4){
|
|
|
// 判断是否重复提交
|
|
|
$where_log['type'] = 2;
|
|
|
$where_log['compareId'] = $data['id'];
|
|
|
$where_log['elseId'] = $data['id'];
|
|
|
$isSet = Db::name('Refund')->where($where_log)->find();
|
|
|
if($isSet){
|
|
|
$this->apiResponse('0','请勿重复操作!');
|
|
|
}
|
|
|
$add_log['type'] = 2;
|
|
|
$add_log['compareId'] = $data['id'];
|
|
|
$add_log['elseId'] = $data['id'];
|
|
|
$add_log['content'] = $data['refund'];
|
|
|
$add_log['create_time'] = time();
|
|
|
$add_log['update_time'] = time();
|
...
|
...
|
|