Exemplo n.º 1
0
 public function tender_work_hand($work_info)
 {
     global $kekezu, $_K;
     global $_lang;
     if ($this->check_if_can_hand() === true) {
         $this->_task_bid_obj->setWhere("task_id = {$this->_task_id} and uid = {$this->_uid} and bid_status=0");
         $is_hand = $this->_task_bid_obj->count_keke_witkey_task_bid();
         if ($is_hand) {
             return $_lang['you_haved_tender'];
         }
         $this->_task_bid_obj->setUid($this->_uid);
         $this->_task_bid_obj->setUsername($this->_username);
         $this->_task_bid_obj->setArea($work_info['area']);
         $this->_task_bid_obj->setCycle($work_info['cycle']);
         $this->_task_bid_obj->setQuote($work_info['price']);
         $this->_task_bid_obj->setWork_hidden($work_info['work_hidden']);
         $this->_task_bid_obj->setTask_id($this->_task_id);
         $this->_task_bid_obj->setBid_time(time());
         if ($this->_task_info['workhide'] == 1) {
             $this->_task_bid_obj->setWorkhide(1);
         }
         $this->_task_bid_obj->setMessage($work_info['tar_content']);
         $res = $this->_task_bid_obj->create_keke_witkey_task_bid();
         $work_info['workhide'] == 1 and keke_payitem_class::payitem_cost("workhide", '1', 'work', 'spend', $res, $this->_task_id);
         $this->plus_work_num();
         $this->plus_take_num();
         $url = '<a href ="' . $_K['siteurl'] . '/index.php?do=task&id=' . $this->_task_id . '">' . $this->_task_title . '</a>';
         $v_arr = array($_lang['username'] => "{$this->_gusername}", $_lang['user'] => $this->_username, $_lang['call'] => $_lang['you'], $_lang['task_title'] => $url, $_lang['website_name'] => $kekezu->_sys_config['website_name']);
         keke_shop_class::notify_user($this->_guid, $this->_gusername, 'task_hand', $_lang['hand_work_notice'], $v_arr);
         $feed_arr = array("feed_username" => array("content" => $this->_uid, "url" => "index.php?do=seller&id={$this->_uid}"), "action" => array("content" => '报名', "url" => ""), "event" => array("content" => $this->_task_title, "url" => "index.php?do=task&id={$this->_task_id}"));
         kekezu::save_feed($feed_arr, $this->_uid, $this->_username, 'task_baoming', $this->_task_id);
         $feed_arr = array("feed_username" => array("content" => $this->_username, "url" => "index.php?do=seller&id={$this->_uid}"), "action" => array("content" => '被报名', "url" => ""), "event" => array("content" => $this->_task_title, "url" => "index.php?do=task&id={$this->_task_id}"));
         $arrTaskInfo = db_factory::get_one("select * from " . TABLEPRE . "witkey_task where task_id=" . intval($this->_task_id));
         kekezu::save_feed($feed_arr, $arrTaskInfo['uid'], $arrTaskInfo['username'], 'task_baoming_bei', $this->_task_id);
         return true;
     }
 }
Exemplo n.º 2
0
 public function work_hand($work_desc, $file_ids, $hidework = '2', $work_hidden = '0')
 {
     global $_K;
     global $_lang;
     $resText = $this->check_if_can_hand();
     if (true === $resText) {
         $work_obj = new Keke_witkey_task_work_class();
         $work_obj->_work_id = null;
         $work_obj->setTask_id($this->_task_id);
         $work_obj->setUid($this->_uid);
         $work_obj->setUsername($this->_username);
         $work_obj->setVote_num(0);
         $work_obj->setWork_status(0);
         $work_obj->setWork_hidden($work_hidden);
         $work_obj->setWork_title($this->_task_title . $_lang['de_work']);
         if ($this->_task_info['workhide'] == 1) {
             $work_obj->setWorkhide(1);
         }
         $work_obj->setWork_desc(stripcslashes($work_desc));
         $work_obj->setWork_time(time());
         if ($file_ids) {
             $file_arr = array_unique(array_filter(explode(',', $file_ids)));
             $f_ids = implode(',', $file_arr);
             $work_obj->setWork_file(implode(',', $file_arr));
             $work_obj->setWork_pic($this->work_pic($f_ids));
         }
         $work_id = $work_obj->create_keke_witkey_task_work();
         $hidework == '1' and keke_payitem_class::payitem_cost("workhide", '1', 'work', 'spend', $work_id, $this->_task_id);
         if ($work_id) {
             $f_ids and db_factory::execute(sprintf(" update %switkey_file set work_id='%d',task_title='%s',obj_id='%d' where file_id in (%s)", TABLEPRE, $work_id, $this->_task_title, $work_id, $f_ids));
             $this->plus_work_num();
             $this->plus_take_num();
             $notice_url = "<a href=\"" . $_K['siteurl'] . "/index.php?do=task&id=" . $this->_task_id . "\">" . $this->_task_title . "</a>";
             $g_notice = array($_lang['user'] => $this->_username, $_lang['call'] => $_lang['you'], $_lang['task_title'] => $notice_url);
             $this->notify_user("task_hand", $_lang['task_hand'], $g_notice);
             $feed_arr = array("feed_username" => array("content" => $this->_uid, "url" => "index.php?do=seller&id={$this->_uid}"), "action" => array("content" => '投稿', "url" => ""), "event" => array("content" => $this->_task_title, "url" => "index.php?do=task&id={$this->_task_id}"));
             kekezu::save_feed($feed_arr, $this->_uid, $this->_username, 'task_tur', $this->_task_id);
             $feed_arr = array("feed_username" => array("content" => $this->_username, "url" => "index.php?do=seller&id={$this->_uid}"), "action" => array("content" => '被投稿', "url" => ""), "event" => array("content" => $this->_task_title, "url" => "index.php?do=task&id={$this->_task_id}"));
             $arrTaskInfo = db_factory::get_one("select * from " . TABLEPRE . "witkey_task where task_id=" . intval($this->_task_id));
             kekezu::save_feed($feed_arr, $arrTaskInfo['uid'], $arrTaskInfo['username'], 'task_tur_bei', $this->_task_id);
             return true;
         }
         return '很遗憾,交稿失败';
     } else {
         return $resText;
     }
 }
Exemplo n.º 3
0
 public function bid_hand($quote, $cycle, $area, $work_desc, $plan_amount, $start_time, $end_time, $plan_title, $is_hide = 2, $work_hidden = '0')
 {
     global $_K;
     global $_lang;
     $resText = $this->check_bid();
     if (true === $resText) {
         $resText = $this->check_if_can_hand();
         if (true === $resText) {
             $bid_obj = new Keke_witkey_task_bid_class();
             $bid_obj->_bid_id = null;
             $bid_obj->setTask_id($this->_task_id);
             $bid_obj->setUid($this->_uid);
             $bid_obj->setUsername($this->_username);
             $bid_obj->setBid_status(0);
             $bid_obj->setArea($area);
             $bid_obj->setQuote($quote);
             $bid_obj->setCycle($cycle);
             $bid_obj->setWork_hidden($work_hidden);
             if ($this->_task_info['workhide'] == 1) {
                 $bid_obj->setWorkhide(1);
             }
             $bid_obj->setMessage($work_desc);
             $bid_obj->setBid_time(time());
             $bid_id = $bid_obj->create_keke_witkey_task_bid();
             $is_hide == '1' and keke_payitem_class::payitem_cost("workhide", '1', 'work', 'spend', $bid_id, $this->_task_id);
             if ($bid_id) {
                 $size = sizeof($plan_amount);
                 for ($i = 0; $i < $size; $i++) {
                     $plan_info = array('plan_amount' => $plan_amount[$i], 'plan_desc' => '', 'plan_step' => $i + 1, 'plan_title' => $plan_title[$i], 'start_time' => strtotime($start_time[$i]), 'end_time' => strtotime($end_time[$i]));
                     $this->plan_add($bid_id, $plan_info);
                 }
                 $this->plus_work_num();
                 $this->plus_take_num();
                 $notice_url = $this->_task_url;
                 $g_notice = array($_lang['user'] => $this->_username, $_lang['call'] => $_lang['you'], $_lang['task_title'] => $notice_url);
                 $this->notify_user("task_hand", $_lang['task_tender'], $g_notice, 2, $this->_guid);
                 $feed_arr = array("feed_username" => array("content" => $this->_uid, "url" => "index.php?do=seller&id={$this->_uid}"), "action" => array("content" => '报名', "url" => ""), "event" => array("content" => $this->_task_title, "url" => "index.php?do=task&id={$this->_task_id}"));
                 kekezu::save_feed($feed_arr, $this->_uid, $this->_username, 'task_baoming', $this->_task_id);
                 $feed_arr = array("feed_username" => array("content" => $this->_username, "url" => "index.php?do=seller&id={$this->_uid}"), "action" => array("content" => '被报名', "url" => ""), "event" => array("content" => $this->_task_title, "url" => "index.php?do=task&id={$this->_task_id}"));
                 $arrTaskInfo = db_factory::get_one("select * from " . TABLEPRE . "witkey_task where task_id=" . intval($this->_task_id));
                 kekezu::save_feed($feed_arr, $arrTaskInfo['uid'], $arrTaskInfo['username'], 'task_baoming_bei', $this->_task_id);
                 return true;
             } else {
                 return $_lang['sorry_tender_fail'];
             }
         }
         return $resText;
     } else {
         return $resText;
     }
 }
Exemplo n.º 4
0
 public function work_hand($work_desc, $file_ids, $hidework = '2', $work_hidden = '0', $url = '', $output = 'normal')
 {
     global $_lang;
     global $_K;
     $strText = $this->check_if_can_hand($url, $output);
     if ($strText === true) {
         $strCheckWork = $this->check_work_if_standard('hand');
         if ($strCheckWork === true) {
             $work_obj = new Keke_witkey_task_work_class();
             $work_obj->setHide_work($hidework);
             $work_obj->setTask_id($this->_task_id);
             $work_obj->setUid($this->_uid);
             $work_obj->setUsername($this->_username);
             $work_obj->setWork_desc(stripcslashes($work_desc));
             $work_obj->setWork_status(0);
             $work_obj->setWork_hidden($work_hidden);
             $work_obj->setWork_title($this->_task_title);
             $work_obj->setWork_time(time());
             if ($this->_task_info['workhide'] == 1) {
                 $work_obj->setWorkhide(1);
             }
             if ($file_ids) {
                 $file_arr = array_unique(array_filter(explode(',', $file_ids)));
                 $f_ids = implode(',', $file_arr);
                 $work_obj->setWork_file($f_ids);
                 $work_obj->setWork_pic($this->work_pic($f_ids));
             }
             $work_id = $work_obj->create_keke_witkey_task_work();
             $hidework == '1' and keke_payitem_class::payitem_cost("workhide", '1', 'work', 'spend', $work_id, $this->_task_id);
             if ($work_id) {
                 $f_ids and db_factory::execute(sprintf("update %switkey_file set work_id='%d',task_title='%s',obj_id='%d' where file_id in (%s)", TABLEPRE, $work_id, $this->_task_title, $work_id, $f_ids));
                 $this->plus_work_num();
                 $this->plus_take_num();
                 $notice_url = "<a href=\"{$_K['siteurl']}/index.php?do=task&id={$this->_task_id}\">{$this->_task_title}</a>";
                 $g_notice = array($_lang['user'] => $this->_username, $_lang['call'] => $_lang['you'], $_lang['task_title'] => $notice_url);
                 $this->notify_user('task_hand', $_lang['task_hand'], $g_notice, '2', $this->_guid);
                 $feed_arr = array("feed_username" => array("content" => $this->_uid, "url" => "index.php?do=seller&id={$this->_uid}"), "action" => array("content" => '投稿', "url" => ""), "event" => array("content" => $this->_task_title, "url" => "index.php?do=task&id={$this->_task_id}"));
                 kekezu::save_feed($feed_arr, $this->_uid, $this->_username, 'task_tur', $this->_task_id);
                 $feed_arr = array("feed_username" => array("content" => $this->_username, "url" => "index.php?do=seller&id={$this->_uid}"), "action" => array("content" => '被投稿', "url" => ""), "event" => array("content" => $this->_task_title, "url" => "index.php?do=task&id={$this->_task_id}"));
                 $arrTaskInfo = db_factory::get_one("select * from " . TABLEPRE . "witkey_task where task_id=" . intval($this->_task_id));
                 kekezu::save_feed($feed_arr, $arrTaskInfo['uid'], $arrTaskInfo['username'], 'task_tur_bei', $this->_task_id);
                 return true;
             } else {
                 return $_lang['hand_work_fail_and_operate_agian'];
             }
         } else {
             return $_lang['hand_work_fail_for_the_work_full'];
         }
     } else {
         return $strText;
     }
 }