|
@@ -60,12 +60,7 @@ class UserParticipateLog extends Controller {
|
|
|
$objMLotteryLog = new LotteryLog ( null, $events_id );
|
|
|
$eventData = $this->objLottery->getOneLotteryEvents ( $events_id );
|
|
|
$this->setOutput ( 'eventData', $eventData );
|
|
|
- # 审核状态只有在邀请函和试用才有,type=6&4
|
|
|
- $audit = false;
|
|
|
- if (in_array($eventData['type'], array(4,6))) {
|
|
|
- $audit = true;
|
|
|
- }
|
|
|
- $this->setOutput ( 'audit', $audit );
|
|
|
+
|
|
|
$page = Request::varGetInt ( 'page', 1 );
|
|
|
$size = 10;
|
|
|
$offset = ($page - 1) * $size;
|
|
@@ -128,7 +123,7 @@ class UserParticipateLog extends Controller {
|
|
|
$this->setOutput('displayDesc', LotteryEvents::getDisplay());
|
|
|
$this->setOutput('pagePublicData', $this->getPagePublicData($events_id)); // 后台管理相关数据
|
|
|
|
|
|
- $isPrizes = in_array($eventData['type'], array(LotteryEvents::TYPE_EVENTS_TURNTABLE, LotteryEvents::TYPE_EVENTS_SCRATCH));
|
|
|
+ $isPrizes = in_array($eventData['type'], array(LotteryEvents::TYPE_EVENTS_TURNTABLE, LotteryEvents::TYPE_EVENTS_SCRATCH, LotteryEvents::TYPE_EVENTS_TRY, LotteryEvents::TYPE_EVENTS_INVITATION));
|
|
|
$this->setOutput('isPrizes', $isPrizes);
|
|
|
|
|
|
if ($groupByUid) {
|
|
@@ -148,8 +143,11 @@ class UserParticipateLog extends Controller {
|
|
|
public function doAudit() {
|
|
|
$tableInfo = $_POST;
|
|
|
|
|
|
- $this->objDLotteryUserParticipateLog = new LotteryUserParticipateLog();// 用户"参与"活动日志
|
|
|
+ $events_id = $tableInfo['id'];
|
|
|
+ $eventData = $this->objLottery->getOneLotteryEvents ( $events_id );
|
|
|
|
|
|
+ $this->objDLotteryEventsForms = new LotteryEventsForms();// 用户"参与"活动日志
|
|
|
+ $this->objDLotteryData = new LotteryData();
|
|
|
if (isset($tableInfo['yes']) && $tableInfo['yes']) {
|
|
|
$tableInfo['yes'] = explode(',', $tableInfo['yes']);
|
|
|
foreach ($tableInfo['yes'] as $k => $v) {
|
|
@@ -157,9 +155,11 @@ class UserParticipateLog extends Controller {
|
|
|
'audit' => 2,
|
|
|
'operator_uid' => $operator_uid
|
|
|
);
|
|
|
- $this->objDLotteryUserParticipateLog->modify( $info, array (
|
|
|
+ $this->objDLotteryEventsForms->modify( $info, array (
|
|
|
'id' => $v
|
|
|
));
|
|
|
+ # 审核成功后,要把数据加到中奖表中
|
|
|
+ $this->updateAuditData(2, $events_id, $eventData, $v, 0);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -167,17 +167,78 @@ class UserParticipateLog extends Controller {
|
|
|
$tableInfo['no'] = explode(',', $tableInfo['no']);
|
|
|
foreach ($tableInfo['no'] as $k => $v) {
|
|
|
$info = array(
|
|
|
- 'audit' => 1,
|
|
|
+ 'audit' => 3,
|
|
|
'operator_uid' => $operator_uid
|
|
|
);
|
|
|
- $this->objDLotteryUserParticipateLog->modify( $info, array (
|
|
|
+ $this->objDLotteryEventsForms->modify( $info, array (
|
|
|
'id' => $v
|
|
|
));
|
|
|
+ # 审核失败后,要把数据从中奖表中拿出来
|
|
|
+ $this->updateAuditData(3, $events_id, $eventData, $v, 0);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
$this->ajax_success_exit();
|
|
|
}
|
|
|
+
|
|
|
+ private function updateAuditData($audit, $events_id, $eventData, $formId, $prize_id)
|
|
|
+ {
|
|
|
+ $form = $this->objDLotteryEventsForms->get($formId);
|
|
|
+ if ($eventData['type'] == 4) {
|
|
|
+ # 试用
|
|
|
+ $img = $eventData['weixinShare']['imgUrl'];
|
|
|
+ $img = $img ? $img : $eventData['img_url'];
|
|
|
+ $prize = array(
|
|
|
+ 0 => array(
|
|
|
+ 'events_id' => $events_id,
|
|
|
+ 'prize_name' =>$eventData['events_name'],
|
|
|
+ 'img_url' => $img,
|
|
|
+ 'type' => LotteryPrize::TYPE_VIRTUAL,
|
|
|
+ )
|
|
|
+ );
|
|
|
+ $virtual_data = "/?c=EventsTry&events_id={$events_id}&formsId=" . $form['id'];
|
|
|
+
|
|
|
+ } elseif ($eventData['type'] == 6) {
|
|
|
+ # 邀请函
|
|
|
+ $prize = array(
|
|
|
+ 0 => array(
|
|
|
+ 'events_id' => $events_id,
|
|
|
+ 'prize_name' =>$eventData['events_name'],
|
|
|
+ 'img_url' => '/public/static/img/qricon.png',
|
|
|
+ 'type' => LotteryPrize::TYPE_ENTITY,
|
|
|
+ )
|
|
|
+ );
|
|
|
+ $virtual_data = "/?c=EventsInvitation&a=Qrcode&events_id={$events_id}&formsId=" . $form['id'];
|
|
|
+ }
|
|
|
+
|
|
|
+ $info = array(
|
|
|
+ 'events_id' => $events_id,
|
|
|
+ 'form_id' => $form['id'],
|
|
|
+ 'prize_id' => $prize_id,
|
|
|
+ 'audit' => $audit,
|
|
|
+ 'uid' => $form['uid'],
|
|
|
+ 'winners_time' => $form['update_time'],
|
|
|
+ 'winning_time' => $form['update_time'],
|
|
|
+ 'run_time_data' => array(
|
|
|
+ 'events' => $eventData,
|
|
|
+ 'prize' => $prize,
|
|
|
+ ),
|
|
|
+ 'virtual_data' => $virtual_data,
|
|
|
+ );
|
|
|
+
|
|
|
+ $dataInfo = $this->objDLotteryData->fetchOne(array
|
|
|
+ (
|
|
|
+ 'events_id' => $events_id,
|
|
|
+ 'uid' => $info['uid'],
|
|
|
+ 'prize_id' => $prize_id,
|
|
|
+ ));
|
|
|
+
|
|
|
+ if (!$dataInfo) {
|
|
|
+ $this->objDLotteryData -> add($info);
|
|
|
+ } else {
|
|
|
+ $this->objDLotteryData -> modify($info, array('id' => $dataInfo['id']));
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* 显示 用户调查问卷 选择的结果集
|
|
@@ -375,7 +436,9 @@ class UserParticipateLog extends Controller {
|
|
|
$offset = ($page - 1) * $size;
|
|
|
$limit = "{$offset},{$size}";
|
|
|
$condition = array (
|
|
|
- 'events_id' => $events_id
|
|
|
+ 'events_id' => $events_id,
|
|
|
+ # 只有审核通过的才显示
|
|
|
+ 'audit' => 2,
|
|
|
);
|
|
|
|
|
|
// 刮刮卡 跳将特殊处理
|
|
@@ -439,7 +502,28 @@ class UserParticipateLog extends Controller {
|
|
|
$newUserExpData[$data['uid']] = $data;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+ $objLotteryEventsForms = new LotteryEventsForms();
|
|
|
+ $formCondition = array(
|
|
|
+ 'events_id' => $events_id,
|
|
|
+ );
|
|
|
+ $ids = $objLotteryEventsForms->fetchOne($formCondition);
|
|
|
+ if ($ids) {
|
|
|
+ $formData = $objLotteryEventsForms->gets($ids);
|
|
|
+ if ($formData) {
|
|
|
+ foreach ($formData as $k => $v) {
|
|
|
+ $formUserData[$v['uid']] = $v;
|
|
|
+ }
|
|
|
+
|
|
|
+ # 表单类型数据
|
|
|
+ $formType = array();
|
|
|
+ foreach ($eventsAndPrizeData['events']['forms'] as $tmpForms) {
|
|
|
+ $formType[] = $tmpForms['name'];
|
|
|
+ }
|
|
|
+ $this->setOutput ( 'formType', $formType );
|
|
|
+ $this->setOutput ( 'formUserData', $formUserData );
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
$objDLotteryPrize = new LotteryPrize();
|
|
|
$prizeType = $objDLotteryPrize -> getType();
|
|
|
$prizeDisplayStatus = $objDLotteryPrize ->getDisplay();
|
|
@@ -475,7 +559,9 @@ class UserParticipateLog extends Controller {
|
|
|
public function doExportWinData() {
|
|
|
$events_id = Request::g ( 'events_id' );
|
|
|
$condition = array (
|
|
|
- 'events_id' => $events_id
|
|
|
+ 'events_id' => $events_id,
|
|
|
+ # 只有审核通过的才显示
|
|
|
+ 'audit' => 2,
|
|
|
);
|
|
|
$order = 'id desc';
|
|
|
$lotteryData = $this->objLottery->getLotteryDataList ( $condition, null, $order );
|
|
@@ -568,6 +654,13 @@ class UserParticipateLog extends Controller {
|
|
|
|
|
|
$objLotteryEvents = new LotteryEvents();
|
|
|
$eventData = $objLotteryEvents->get($events_id);
|
|
|
+
|
|
|
+ # 审核状态只有在邀请函和试用才有,type=6&4
|
|
|
+ $audit = false;
|
|
|
+ if (in_array($eventData['type'], array(4,6))) {
|
|
|
+ $audit = true;
|
|
|
+ }
|
|
|
+ $this->setOutput ( 'audit', $audit );
|
|
|
|
|
|
# 表单类型数据
|
|
|
$formType = array();
|
|
@@ -592,6 +685,9 @@ class UserParticipateLog extends Controller {
|
|
|
$this->setOutput('menu_active', array('name' => 'mypublish', 'item' => '')); //激活菜单
|
|
|
$this->addNavMenu('活动列表');
|
|
|
$this->addNavMenu($title);
|
|
|
+
|
|
|
+ $isPrizes = in_array($eventData['type'], array(LotteryEvents::TYPE_EVENTS_TURNTABLE, LotteryEvents::TYPE_EVENTS_SCRATCH, LotteryEvents::TYPE_EVENTS_TRY, LotteryEvents::TYPE_EVENTS_INVITATION));
|
|
|
+ $this->setOutput('isPrizes', $isPrizes);
|
|
|
|
|
|
$this->setOutput('eventData', $eventData);
|
|
|
$this->setOutput ( 'page_html', $page_html );
|
|
@@ -650,8 +746,17 @@ class UserParticipateLog extends Controller {
|
|
|
header ( "Expires: 0" );
|
|
|
header ( 'Content-Disposition: attachment; filename=' . $fileName );
|
|
|
|
|
|
-
|
|
|
+ # 审核状态只有在邀请函和试用才有,type=6&4
|
|
|
+ $audit = false;
|
|
|
+ if (in_array($eventData['type'], array(4,6))) {
|
|
|
+ $audit = true;
|
|
|
+ }
|
|
|
+ $this->setOutput ( 'audit', $audit );
|
|
|
+
|
|
|
$title = "用户ID,昵称,时间,行为\r\n";
|
|
|
+ if ($audit) {
|
|
|
+ $title = "用户ID,昵称,时间,行为,审核状态\r\n";
|
|
|
+ }
|
|
|
echo Convert::u82gb($title);
|
|
|
|
|
|
foreach ($formData as $tmpData) {
|
|
@@ -662,6 +767,17 @@ class UserParticipateLog extends Controller {
|
|
|
$formInfo = "{$formName}:{$tmpData[$formName]} ";
|
|
|
}
|
|
|
$info = "{$uid},{$users[$uid]['nickname']},{$date},{$formInfo}\r\n";
|
|
|
+ if ($audit) {
|
|
|
+ $status = $tmpData['audit'];
|
|
|
+ if ($status == 1) {
|
|
|
+ $status = '未审核';
|
|
|
+ } elseif ($status == 2) {
|
|
|
+ $status = '审核通过';
|
|
|
+ } elseif ($status == 3) {
|
|
|
+ $status = '审核未通过';
|
|
|
+ }
|
|
|
+ $info = "{$uid},{$users[$uid]['nickname']},{$date},{$formInfo},{$status}\r\n";
|
|
|
+ }
|
|
|
echo Convert::u82gb($info);
|
|
|
}
|
|
|
exit;
|