'未审批', 'checking' => '审批中', 'checked' => '已审批', 'checkno' => '未通过'), $aconfig, $sms;
public function __construct()
{
$this->auth = new Auth();
$this->attfile = new attFile();
$this->profile = new Profile();
$this->project = new Project();
$this->contractact = new Contractact();
$this->actmeasure = new actMeasure();
$this->measureauditact = new MeasureauditAct();
$this->numofperact = new NumofperAct();
$this->aconfig = new AConfig();
$this->sms = new Sms(Doo::conf()->SMS_URL, Doo::conf()->SMS_AUTHKEY);
$this->data['rootUrl'] = Doo::conf()->APP_URL;
$this->data['currChannle'] = 'r';
$this->data['user'] = $this->profile->getProWithUid($this->auth->getUid());
$mpidArray = $this->measureauditact->getAuditProject2($this->auth->getUid());
if (isset($mpidArray[0]['pid'])) {
$this->data['numofchecking'] = 0;
foreach ($mpidArray as $key => $value) {
// 审批操作按照时间排序多标段
$this->data['numofchecking'] += $this->measureauditact->getCountMyChecking($value['pid'], $this->auth->getUid());
}
}
if ($this->data['numofchecking'] == 0) {
$this->data['numofchecking'] = null;
}
}
public function beforeRun($resource, $action)
{
// $uGroups = $this->profile->getProWithUid($this->auth->getUid());
// $falg = Doo::acl()->isAllowed($uGroups['groups'], $resource, $action);
// if (!$falg)
// return Doo::acl()->defaultFailedRoute;
if ($this->auth->getUid()) {
$uGroups = $this->profile->getProWithUid($this->auth->getUid());
$falg = Doo::acl()->isAllowed($uGroups['groups'], $resource, $action);
if (!$falg)
return Doo::acl()->defaultFailedRoute;
} else {
return Doo::acl()->defaultFailedRoute;
}
}
public function index()
{
$mpidArray = $this->measureauditact->getAuditProject2($this->auth->getUid());
if (isset($mpidArray[0]['pid'])) {
foreach ($mpidArray as $key => $value) {
// 审批操作按照时间排序多标段
$numOfChecking = $this->measureauditact->getCountMyChecking($value['pid'], $this->auth->getUid());
// end
$this->data['proArray'][$key] = $this->project->getRowByPid($value['pid']);
$this->data['proArray'][$key]['numofchecking'] = $numOfChecking;
$this->data['proArray'][$key]['contracttotal'] = $this->actmeasure->getTotalWithPid($value['pid']);
$this->data['proArray'][$key]['changTotal'] = $this->numofperact->getChangTotal($value['pid']);
// $this->data['proArray'][$key]['contracttotal'] += $this->data['proArray'][$key]['changTotal'];
$this->data['proArray'][$key]['currdone'] = $this->numofperact->getCurrDoneNow($value['pid']);
if (($this->data['proArray'][$key]['contracttotal'] > 0) && ($this->data['proArray'][$key]['currdone'] > 0)) {
$this->data['proArray'][$key]['pcurrdone'] = round(($this->data['proArray'][$key]['currdone'] / $this->data['proArray'][$key]['contracttotal']) * 100) . '%';
} else {
$this->data['proArray'][$key]['pcurrdone'] = '0%';
}
$this->data['proArray'][$key]['bcontracttotal'] = number_format($this->data['proArray'][$key]['contracttotal'], 2, '.', ',');
$this->data['proArray'][$key]['bchangTotal'] = number_format($this->data['proArray'][$key]['changTotal'], 2, '.', ',');
}
} else {
$this->data['proArray'] = array();
}
$this->render('r-project', $this->data);
}
public function proOverview()
{
// $this->data['pros'] = $this->project->getAll();
// if (isset($_POST['pname']) && $_POST['pname']) {
// $this->project->insertProject($_POST['pname']);
// return Doo::conf()->APP_URL . 'project/index';
// }
$this->data['pid'] = $this->params['pid'];
$this->render('w-project-detail', $this->data);
}
public function proSection()
{
$mpidArray = $this->measureauditact->getAuditProject2($this->auth->getUid());
foreach ($mpidArray as $k1 => $v1) {
if ($v1['pid'] != $this->params['pid'])
$this->data['allproArray'][] = $this->project->getRowByPid($v1['pid']);
}
$this->data['currproArray'] = $this->project->getRowByPid($this->params['pid']);
$this->data['conArray'] = $this->contractact->getRowByPid($this->params['pid']);
$auditArray = $this->measureauditact->getUserPmid($this->auth->getUid());
foreach ($auditArray as $key => $value) {
$pmidArray[] = $value['pmid'];
}
foreach ($this->data['conArray'] as $key => $value) {
$html = null;
$hetongTotal = $dispstopnowtotal = $dispnowtotal = $countNum = 0;
$nstopnowtotal = $ncurrdone = $nnowtotal = number_format(0, 2, '.', ',');
$pstopnowtotal = '0%';
$pcurrdone = '0%';
$ncurrdone = number_format(0, 2, '.', ',');
$pnowtotal = '0%';
$dispcurrdone = '0%';
// $numStatusArray['currstatus'] = 'uncheck';
$StidArray = $this->actmeasure->getAllbyStid($value['stid']);
$currdoneInt = $this->numofperact->getCurrdoneSTID($value['stid'])['totalplus'];
if (isset($StidArray))
foreach ($StidArray as $k => $v) {
if (in_array($v['pmid'], $pmidArray)) {
$snTotal = $this->numofperact->getStopNowTotal($v['pmid']); //根据标段ID获取最新一期(包括不通过)
$currcomTotal = $this->numofperact->getCurrdoneNew($v['pmid']); //截止目前
$ncurrdone = number_format($currcomTotal['currtotal'], 2, '.', ',');
$nstopnowtotal = number_format($snTotal['sntotal'], 2, '.', ',');
if ($v['contracttotal'] > 0) {
$nnowtotal = number_format($v['contracttotal'] - $currcomTotal['currtotal'] - $snTotal['sntotal'], 2, '.', ',');
$pstopnowtotal = round(($snTotal['sntotal'] / $v['contracttotal']) * 100);
$pcurrdone = round(($currcomTotal['currtotal'] / $v['contracttotal']) * 100);
}
$dispcurrdone = $pcurrdone . '%';
$dispstopnowtotal = $pstopnowtotal . '%';
$pnowtotal = 100 - $pcurrdone - $pstopnowtotal;
$dispnowtotal = $pnowtotal . '%';
$countNum = $this->numofperact->getLastNew2($v['pmid'])['numpname'];
if (!isset($countNum)) {
$countNum = 0;
}
$numStatusArray = $this->numofperact->getLastStatus3($this->params['pid'], $v['pmid']);
if (!isset($numStatusArray['currstatus'])) {
$numStatusArray['currstatus'] = 'uncheck';
}
$datatmp = $this->measureauditact->getMyAuditStatus2($numStatusArray['pmid'], $numStatusArray['numpname'], $numStatusArray['times'], $this->auth->getUid());
if ($datatmp && ($datatmp['mastatus'] == 'checking')) {
$buttonhtml = '开始审批';
} else {
$buttonhtml = '(' . $this->statusArray[$numStatusArray['currstatus']] . ')';
}
$html .= '
' . $v['pmname'] . ' |
第 ' . $countNum . ' 期 ' . $buttonhtml . ' |
¥' . number_format($v['contracttotal'], 2, '.', ',') . ' |
' . $dispstopnowtotal . '
' . $dispcurrdone . '
' . $dispnowtotal . '
|
';
$hetongTotal += $v['contracttotal'];
}
}
$this->data['conArray'][$key]['htmlstr'] = $html;
$this->data['conArray'][$key]['hetongTotal'] = number_format($hetongTotal, 2, '.', ',');
$this->data['conArray'][$key]['phetongTotal'] = 0;
$this->data['conArray'][$key]['nhetongTotal'] = 0;
$this->data['conArray'][$key]['phetongTotal2'] = 0;
$this->data['conArray'][$key]['ncurrdoneInt'] = 0;
$this->data['conArray'][$key]['phetongTotal'] = round(($currdoneInt / $hetongTotal) * 100) . '%';
$this->data['conArray'][$key]['nhetongTotal'] = number_format($currdoneInt, 2, '.', ',');
$this->data['conArray'][$key]['phetongTotal2'] = round((($hetongTotal - $currdoneInt) / $hetongTotal) * 100) . '%';
$this->data['conArray'][$key]['ncurrdoneInt'] = number_format($hetongTotal - $currdoneInt, 2, '.', ',');
}
$this->render('r-project-section', $this->data, TRUE);
}
function proSectionMeasure()
{
$mpidArray = $this->measureauditact->getAuditProject($this->auth->getUid());
foreach ($mpidArray as $k1 => $v1) {
if ($v1['pid'] != $this->params['pid'])
$this->data['allproArray'][] = $this->project->getRowByPid($v1['pid']);
}
$this->data['currproArray'] = $this->project->getRowByPid($this->params['pid']);
$this->data['pid'] = $this->params['pid'];
$this->data['mpid'] = $this->params['mpid'];
$this->data['mastatus'] = $this->measureauditact->getStatusByMpid($this->params['mpid'])['mastatus'];
if (isset($_POST['submit'])) {
if ($_POST['submit'] == 'ok') {
$this->measureauditact->setStatusTrue($this->params['mpid']);
return Doo::conf()->APP_URL . 'rproject/' . $this->params['pid'] . '/section/' . $this->params['mpid'] . '/measure';
}
if ($_POST['submit'] == 'no') {
$this->measureauditact->setStatusFalse($this->params['mpid']);
return Doo::conf()->APP_URL . 'rproject/' . $this->params['pid'] . '/section/' . $this->params['mpid'] . '/measure';
}
}
// $jsonpath = pathinfo($this->attfile->getMaxRow()['filepath']);
// $extPathdir = Doo::conf()->SITE_PATH . $jsonpath['dirname'] . '/' . $jsonpath['filename'];
// if ($handle = opendir($extPathdir)) {
// while (false !== ($file = readdir($handle))) {
// $filename = pathinfo($file);
// if ($filename['extension'] == 'json')
// $proArray = json_decode(file_get_contents($extPathdir . '/' . $file));
// }
// closedir($handle);
// }
// $this->data['proArray'] = $proArray;
$this->render('r-project-section-measure', $this->data, TRUE);
}
Function fNumber($number)
{
if ($number == '')
Return "-";
$nlen = strlen($number);
while ($nlen > 3) {
$fNumber = "," . substr($number, $nlen - 3, 3);
$number = substr($number, 0, -3);
$nlen = strlen($number);
}
if ($nlen <= 3) {
$fNumber = $number . $fNumber;
}
Return $fNumber;
}
public function welcome()
{
// if (!$this->auth->isLoggedIn())
// return Doo::conf()->APP_URL;
if ($this->profile->getProWithUid($_SESSION['uid'])['userid'])
return Doo::conf()->APP_URL . 'project/list';
if (isset($_POST['welform'])) {
$profileUserArray = $_POST;
$profileUserArray['userid'] = $_SESSION['uid'];
$this->profile->insertProfile($profileUserArray); // 无自增字段返回0
return Doo::conf()->APP_URL . 'project/list';
}
$this->render('welcome', $this->data);
}
public function prolist()
{
// if (!$this->auth->isLoggedIn())
// return Doo::conf()->APP_URL;
// $proArray = new stdClass();
// $jsonpath = pathinfo($this->attfile->getMaxRow()['filepath']);
// $extPathdir = Doo::conf()->SITE_PATH . $jsonpath['dirname'] . '/' . $jsonpath['filename'];
// if ($handle = opendir($extPathdir)) {
// while (false !== ($file = readdir($handle))) {
// $filename = pathinfo($file);
// if ($filename['extension'] == 'json')
// $proArray = json_decode(file_get_contents($extPathdir . '/' . $file));
// }
// closedir($handle);
// }
// $this->data['proArray'] = null;
$this->render('s-project', $this->data);
}
public function proDetail()
{
$numStatusArray = $this->numofperact->getLastRow($this->params['pid'], $this->params['pmid']);
// 项目名称
$mpidArray = $this->measureauditact->getAuditProject2($this->auth->getUid());
foreach ($mpidArray as $k1 => $v1) {
if ($v1['pid'] != $this->params['pid'])
$this->data['allproArray'][] = $this->project->getRowByPid($v1['pid']);
}
$this->data['currproArray'] = $this->project->getRowByPid($this->params['pid']);
$this->data['MeasureArray'] = $this->numofperact->getGroupByLastOne($this->params['pmid']);
$measureArray = $this->actmeasure->getRowByPmid($this->params['pmid']);
foreach ($this->data['MeasureArray'] as $key => $value) {
if ($measureArray['contracttotal'] > ($value['currdone'] > 0)) {
$this->data['MeasureArray'][$key]['lessTotal'] = round(($value['currdone'] / $measureArray['contracttotal']) * 100);
} else {
$this->data['MeasureArray'][$key]['lessTotal'] = 0;
}
}
$this->data['pmid'] = $this->params['pmid'];
$this->data['pid'] = $this->params['pid'];
$this->data['mpid'] = $numStatusArray['mpid'];
$this->render('r-project-section-detail', $this->data, TRUE);
}
public function proReport()
{
// 面包屑导航
// 期数列表
$tmpArray = $this->numofperact->getGroupByLastOne2($this->params['pmid']);
foreach ($tmpArray as $k => $v) {
$intTime = $this->numofperact->getMaxTimes($v['pmid'], $v['numpname'])['times'];
$nfArray[] = $this->numofperact->getRow($v['pmid'], $v['numpname'], $intTime);
}
foreach ($nfArray as $k => $v) {
if ($v['mpid'] == $this->params['mpid']) {
$this->data['mpid'] = $v['mpid'];
$this->data['MeasureArray2'][] = $v;
$this->data['currnum'] = $v['numpname'];
} else {
$this->data['numArray'][] = $v;
}
}
$measureArray = $this->actmeasure->getRowByPmid($this->params['pmid']);
foreach ($this->data['MeasureArray2'] as $key => $value) {
if ($value['mpid'] == $this->params['mpid']) {
$this->data['MeasureArray2'][$key]['currstatus'] = $this->statusArray[$value['currstatus']];
if ($measureArray['contracttotal'] > ($value['currdone'] > 0)) {
$this->data['MeasureArray2'][$key]['lessTotal'] = round(($value['currdone'] / $measureArray['contracttotal']) * 100);
} else {
$this->data['MeasureArray2'][$key]['lessTotal'] = 0;
}
}
}
//
$lastRowArray = $this->numofperact->getLastNew2($this->params['pmid']);
$maxTimes = $this->numofperact->getMaxTimes($lastRowArray['pmid'], $lastRowArray['numpname']);
// $auditUserArray = $this->measureauditact->getAllAudit($lastRowArray['pmid'], $lastRowArray['numpname'], $maxTimes['times']);
$maxtimez = $this->measureauditact->getRowGroupByTimes($this->params['mpid']);
$auditUserArray = $this->measureauditact->getRowByMpidTimes($this->params['mpid'], $maxtimez['times']);
$auditArray = $this->measureauditact->getLastNewRowInfo($lastRowArray['pmid'], $lastRowArray['numpname'], $this->auth->getUid());
if (isset($_POST['act'])) {
$auditStatusArray = array('checkno', 'checked');
$myAuditStatus = $this->measureauditact->getMyAuditStatus($lastRowArray['pmid'], $lastRowArray['numpname'], $maxTimes['times'], $this->auth->getUid());
if (in_array($myAuditStatus['mastatus'], $auditStatusArray)) {
echo json_encode(array('status' => 1), JSON_UNESCAPED_UNICODE);
die();
}
}
if ($_POST['act'] == 'p') {
if ($this->measureauditact->setMyAuditPass($auditArray['maid'], $_POST['content'], 1, $this->auth->getUid())) {
$countAudit = count($auditUserArray);
$this->attfile->updateHash($lastRowArray['pmid'], $lastRowArray['numpname'], $maxTimes['times']);
if ($auditArray['last'] == 1) {
$this->numofperact->updateAuditStatus($lastRowArray['pmid'], $lastRowArray['numpname'], 'checked', $maxTimes['times']);
echo json_encode(array('status' => 1), JSON_UNESCAPED_UNICODE);
die();
} else {
if (($countAudit == 2) && ($auditUserArray[1]['last'] == 1) && ($auditUserArray[0]['maid'] == $auditArray['maid'])) {
$this->measureauditact->updateMastatus($auditUserArray[1]['maid']);
$this->numofperact->updateAuditStatus($lastRowArray['pmid'], $lastRowArray['numpname'], 'checking', $maxTimes['times']);
echo json_encode(array('status' => 1), JSON_UNESCAPED_UNICODE);
die();
}
if (($countAudit > 2)) {
foreach ($auditUserArray as $k => $v) {
if ($v['maid'] == $auditArray['maid']) {
if ($k == ($countAudit - 1)) {//如果是最后一个
$this->measureauditact->updateMastatus($auditUserArray[0]['maid']);
} else {
$this->measureauditact->updateMastatus($auditUserArray[$k + 1]['maid']);
// SMS Start
$verifyUserArray = $this->profile->getVerifiedMobile($auditUserArray[$k + 1]['auditoruid']);
$pmnameArray = $this->actmeasure->getRowByPmid($auditUserArray[$k + 1]['pmid']);
if (isset($verifyUserArray) && ($verifyUserArray['mobile'])) {
$this->__auditNotice($verifyUserArray['mobile'], $pmnameArray["pmname"] . ',' . $verifyUserArray["name"] . Doo::conf()->SMS_TIPS["AUDIT_NOTICE_AUDITOR"]);
}
// SMS End
}
$this->numofperact->updateAuditStatus($lastRowArray['pmid'], $lastRowArray['numpname'], 'checking', $maxTimes['times']);
echo json_encode(array('status' => 1), JSON_UNESCAPED_UNICODE);
die();
}
}
}
}
}
}
if ($_POST['act'] == 'np') {
$this->measureauditact->setCheckno($auditArray['maid'], $_POST['content'], 1);
$this->numofperact->updateAuditStatus($lastRowArray['pmid'], $lastRowArray['numpname'], 'checkno', $maxTimes['times']);
$this->attfile->updateHash($lastRowArray['pmid'], $lastRowArray['numpname'], $maxTimes['times']);
echo json_encode(array('status' => 1), JSON_UNESCAPED_UNICODE);
die();
}
$this->data['pmid'] = $lastRowArray['pmid'];
$this->data['numpname'] = $lastRowArray['numpname'];
$this->data['times'] = $lastRowArray['times'];
$this->data['pid'] = $this->params['pid'];
foreach ($auditUserArray as $key => $value) {
$strAvatar = $this->auth->getAvatar($value['auditoruid']);
$i = $key + 1;
if ($value['auditoruid'] == $this->auth->getUid()) {
$this->data['mastatus'] = $value['mastatus'];
$this->data['maid'] = $value['maid'];
}
if ($value['mastatus'] == 'uncheck') {
$statuStr = '';
$statucolorStr = '';
$statushtml = '
';
}
if ($value['mastatus'] == 'checking') {
$statuStr = '审批中
';
$statucolorStr = 'colOrange';
$statushtml = '
';
}
if ($value['mastatus'] == 'checked') {
$statuStr = '审批完成(' . date('Y-m-d', $value['audittime']) . ')
';
$statucolorStr = 'colGreen';
$statushtml = '
';
}
if ($value['mastatus'] == 'checkno') {
$statuStr = '审批不通过(' . date('Y-m-d', $value['audittime']) . ')
';
$statucolorStr = 'colRed';
$statushtml = '
';
}
$auditUserArray[$key]['statuStr'] = $statuStr;
$auditUserArray[$key]['statucolorStr'] = $statucolorStr;
$auditUserArray[$key]['statushtml'] = $statushtml;
$auditUserArray[$key]['k'] = $i;
$auditUserArray[$key]['name'] = $this->profile->getProWithUid($value['auditoruid'])['name'];
}
$this->data['auditArray'] = $auditUserArray;
$this->data['pmid'] = $this->params['pmid'];
$this->data['pid'] = $this->params['pid'];
$this->data['mpid'] = $this->params['mpid'];
$this->render('r-project-section-report', $this->data, TRUE);
}
/**
* 。
* 标段ID,期号
*/
private function __auditNotice($mobile, $text)
{
$smsSwitch = $this->aconfig->getOne(array('select' => 'smsSwitch', 'asArray' => TRUE))['smsSwitch'];
if ($smsSwitch > 0)
return $this->sms->sendSms($mobile, $text);
}
}
?>