提交 4881b3fb authored 作者: chengye's avatar chengye

project init

上级 eb109369
......@@ -2,15 +2,15 @@
/.idea
/vendor
/phpmyadmin
/.travis.yml
/.user.ini
/build.php
/CHANGELOG.md
/index.html
/LICENSE.txt
/phpinfo.php
/README.md
/think
.travis.yml
.user.ini
build.php
CHANGELOG.md
index.html
LICENSE.txt
phpinfo.php
README.md
think
/config/database.php
/config/cache.php
/config/session.php
......
<?php
/**
* Created by PhpStorm.
* User: chouchou
* Date: 2020-11-8
* Time: 21:44
*/
return [
'maintenance' => false
];
\ No newline at end of file
......@@ -45,6 +45,7 @@ class Base extends Controller
$this->redirect('/login');
}
if(!$user['is_admin']){
if(config('main.maintenance') === true) die("电费系统维护...");
$this->authCheck($user['user_id']);
}
}
......
<?php
/**
* Created by PhpStorm.
* User: chouchou
* Date: 2019-6-23
* Time: 23:53
*/
namespace app\admin\controller;
use PhpOffice\PhpSpreadsheet\Reader\Xlsx;
use PhpOffice\PhpSpreadsheet\Reader\Xls;
use PhpOffice\PhpSpreadsheet\IOFactory;
use PhpOffice\PhpSpreadsheet\Cell\Coordinate;
use PhpOffice\PhpSpreadsheet\Spreadsheet;
use PhpOffice\PhpSpreadsheet\Worksheet\PageSetup;
use PhpOffice\PhpSpreadsheet\Cell\DataType;
use PhpOffice\PhpSpreadsheet\Style\Fill;
use PhpOffice\PhpSpreadsheet\Style\Color;
use PhpOffice\PhpSpreadsheet\Style\Alignment;
use PhpOffice\PhpSpreadsheet\Style\Border;
use PhpOffice\PhpSpreadsheet\Style\NumberFormat;
use PhpOffice\PhpSpreadsheet\Shared\Date;
use app\admin\model\StaffModel;
use app\admin\model\ElectricMeter;
use app\admin\model\BaseStationModel;
use think\facade\Session;
use think\Controller;
use think\Db;
class Excel extends Controller
{
/**
* 使用PHPEXECL导入
*
* @param string $file 文件地址
* @param int $sheet 工作表sheet(传0则获取第一个sheet)
* @param int $columnCnt 列数(传0则自动获取最大列)
* @param array $options 操作选项
* array mergeCells 合并单元格数组
* array formula 公式数组
* array format 单元格格式数组
*
* @return array
* @throws Exception
*/
public function importExecl(string $file = '', int $sheet = 0, int $columnCnt = 0, &$options = [])
{
ini_set ('memory_limit', '1000M');
$extension = strtolower(pathinfo($file, PATHINFO_EXTENSION));//判断导入表格后缀格式
// 有Xls和Xlsx格式两种
if ($extension == 'xlsx') {
$objReader =IOFactory::createReader('Xlsx');
$objPHPExcel = $objReader->load($file);
} elseif($extension == 'xls'){
$objReader =IOFactory::createReader('Xls');
$objPHPExcel = $objReader->load($file);
}else{
$this->error('必须为excel表格,且必须为xls或者xlsx格式!');
}
//$filename可以是上传的表格,或者是指定的表格
$sheet = $objPHPExcel->getSheet(0); //excel中的第一张sheet
$highestRow = $sheet->getHighestRow(); // 取得总行数
// $highestColumn = $sheet->getHighestColumn(); // 取得总列数
if($objPHPExcel->getActiveSheet()->getCell("A1")->getValue()!=='基站编号'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("B1")->getValue()!=='基站名称'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("C1")->getValue()!=='项目编号'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("D1")->getValue()!=='电表类型'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("E1")->getValue()!=='电表识别号'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("F1")->getValue()!=='缴费号'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("G1")->getValue()!=='倍率'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("H1")->getValue()!=='电表初始度数'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("I1")->getValue()!=='电表备注'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("J1")->getValue()!=='电表初始充值金额'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("K1")->getValue()!=='抄表单单价'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("L1")->getValue()!=='首次查表日期'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("M1")->getValue()!=='是否协议价'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("N1")->getValue()!=='协议价'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("O1")->getValue()!=='协议名称'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("P1")->getValue()!=='协议编号'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("Q1")->getValue()!=='开始时间'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("R1")->getValue()!=='结束时间'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("S1")->getValue()!=='签订日期'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("T1")->getValue()!=='协议备注'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("U1")->getValue()!=='缴费周期'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("V1")->getValue()!=='业务员'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("W1")->getValue()!=='电表地址'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("X1")->getValue()!=='甲方联系人'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("Y1")->getValue()!=='甲方联系方式'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("Z1")->getValue()!=='机房位置'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("AA1")->getValue()!=='物业位置'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("AB1")->getValue()!=='收款单位'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("AC1")->getValue()!=='出租单位名称'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("AD1")->getValue()!=='机房备注'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("AE1")->getValue()!=='合同编号'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("AF1")->getValue()!=='确认合同日期'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("AG1")->getValue()!=='合同有效时间'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("AH1")->getValue()!=='机房二维码'){
return ['code' =>5,'message' => '模板错误'];
}
$usersExits = [];
//循环读取excel表格,整合成数组。如果是不指定key的二维,就用$data[i][j]表示。
$create_time=time();
$electric_meter['create_time']=$create_time;
$contract['create_time'] = $create_time;
$agreement['create_time'] = $create_time;
$engine_room['create_time'] = $create_time;
$electric_meter['update_time']=$create_time;
$contract['update_time'] = $create_time;
$agreement['update_time'] = $create_time;
$engine_room['update_time'] = $create_time;
for ($j = 2; $j <= $highestRow; $j++) {
//站号
$station_sp_code=$objPHPExcel->getActiveSheet()->getCell("A".$j)->getValue();
//站名
$station_name=$objPHPExcel->getActiveSheet()->getCell("B".$j)->getValue();
//项目编号
$proj_number=$objPHPExcel->getActiveSheet()->getCell("C".$j)->getValue();
//通过站号 、站名、项目编号确认电表的station_id
$electric_meter['station_id']=(new ElectricMeter)->getStationID($proj_number);
//电表类型 electric_meter
$emt_id=$objPHPExcel->getActiveSheet()->getCell("D".$j)->getValue();
$electric_meter['emt_id']=(new ElectricMeter)->getEmtId($emt_id);
//电表识别号 electric_meter
$number=$objPHPExcel->getActiveSheet()->getCell("E".$j)->getValue();
$electric_meter['number']=isset($number)?$number:'';
//缴费号 electric_meter
$pay_number=$objPHPExcel->getActiveSheet()->getCell("F".$j)->getValue();
$electric_meter['pay_number']=isset($pay_number)?$pay_number:'';
//倍率 electric_meter
$multiple=$objPHPExcel->getActiveSheet()->getCell("G".$j)->getValue();
$electric_meter['multiple']=isset($multiple)?$multiple:'';
//电表初始度数 electric_meter
$init_degree=$objPHPExcel->getActiveSheet()->getCell("H".$j)->getValue();
$electric_meter['init_degree']=isset($init_degree)?$init_degree:'';
//电表备注 electric_meter
$text=$objPHPExcel->getActiveSheet()->getCell("I".$j)->getValue();
$electric_meter['remark']=isset($text)?$text:'';
//电表初始充值金额 init_amount
$init_amount=$objPHPExcel->getActiveSheet()->getCell("J".$j)->getValue();
$electric_meter['init_amount']=isset($init_amount)?$init_amount:0;
//抄表单单价 electric_meter
$unit_price=$objPHPExcel->getActiveSheet()->getCell("K".$j)->getValue();
$electric_meter['unit_price']=isset($unit_price)?$unit_price:'';
//首次查表日期 转换为时间戳first_cp_date electric_meter
// $first_cp_date= $objPHPExcel->getActiveSheet()->getCell("L".$j)->getValue();
$first_cp_date= Date::excelToTimestamp($objPHPExcel->getActiveSheet()->getCell("L".$j)->getValue());
$electric_meter['first_cp_date']=isset($first_cp_date)?$first_cp_date:'';
//是否协议价 electric_meter
$is_protocol=$objPHPExcel->getActiveSheet()->getCell("M".$j)->getValue();
if($is_protocol=='是'){
$electric_meter['is_protocol']=1;
}else{
$electric_meter['is_protocol']=0;
}
//协议价 electric_meter
$protocol_price=$objPHPExcel->getActiveSheet()->getCell("N".$j)->getValue();
$electric_meter['protocol_price']=isset($protocol_price)?$protocol_price:'';
//协议名称
$contract_name=$objPHPExcel->getActiveSheet()->getCell("O".$j)->getValue();
$agreement['name']=isset($contract_name)?$contract_name:'';
//协议编号
$contract_number=$objPHPExcel->getActiveSheet()->getCell("P".$j)->getValue();
$agreement['number']=isset($contract_number)?$contract_number:'';
//开始时间
$contract_start_date= $objPHPExcel->getActiveSheet()->getCell("Q".$j)->getValue();
if($contract_start_date){
$agreement['start_time']=Date::excelToTimestamp($contract_start_date);
}else{
$agreement['start_time']=0;
}
//结束时间
$contract_end_date= $objPHPExcel->getActiveSheet()->getCell("R".$j)->getValue();
if($contract_end_date){
$agreement['end_time']=Date::excelToTimestamp($contract_end_date);
}else{
$agreement['end_time']=0;
}
//签订日期
$contract_sign_date= $objPHPExcel->getActiveSheet()->getCell("S".$j)->getValue();
if($contract_sign_date){
$agreement['sign_time']=Date::excelToTimestamp($contract_sign_date);
}else{
$agreement['sign_time']=0;
}
//协议备注
$contract_remark=$objPHPExcel->getActiveSheet()->getCell("T".$j)->getValue();
$agreement['remark']=isset($contract_remark)?$contract_remark:'';
// 缴费周期 electric_meter
$pay_cycle=$objPHPExcel->getActiveSheet()->getCell("U".$j)->getValue();
$electric_meter['pay_cycle']=isset($pay_cycle)?$pay_cycle:'';
//业务员 electric_meter
$staff_id=$objPHPExcel->getActiveSheet()->getCell("V".$j)->getValue();
$electric_meter['staff_id']=(new ElectricMeter)->getStaffId($staff_id);
//电表地址 electric_meter
$address=$objPHPExcel->getActiveSheet()->getCell("W".$j)->getValue();
$electric_meter['address']=isset($address)?$address:'';
//合同附件id
$electric_meter['photo_id']=1;
//甲方联系人 engine_room
$contact=$objPHPExcel->getActiveSheet()->getCell("X".$j)->getValue();
$engine_room['contact']=isset($contact)?$contact:'';
//甲方联系方式 engine_room
$tel=$objPHPExcel->getActiveSheet()->getCell("Y".$j)->getValue();
$engine_room['tel']=isset($tel)?$tel:'';
$engine_room['station_id']=$electric_meter['station_id'];
//机房位置 engine_room
$position=$objPHPExcel->getActiveSheet()->getCell("Z".$j)->getValue();
$engine_room['position']=isset($position)?$position:'';
//物业位置 engine_room
$property_position=$objPHPExcel->getActiveSheet()->getCell("AA".$j)->getValue();
$engine_room['property_position']=isset($property_position)?$property_position:'';
// 实际收款单位 engine_room
$receive=$objPHPExcel->getActiveSheet()->getCell("AB".$j)->getValue();
$engine_room['receive']=isset($receive)?$receive:'';
//出租单位名称 engine_room
$rent=$objPHPExcel->getActiveSheet()->getCell("AC".$j)->getValue();
$engine_room['rent']=isset($rent)?$rent:'';
//机房名称
$engine_room['name']=isset($rent)?$rent:'';
//机房备注 engine_room
$remark=$objPHPExcel->getActiveSheet()->getCell("AD".$j)->getValue();
$engine_room['remark']=isset($remark)?$remark:'';
//合同编号 contract
$number=$objPHPExcel->getActiveSheet()->getCell("AE".$j)->getValue();
$contract['number']=isset($number)?$number:'contract-add-000000';
//确认合同日期 contract
//业务员id
$agreement['u_id'] = $electric_meter['staff_id'];
$agreement['type']=2;
$agreement['file_id']=1;
$agreement['d_id'] = (new ElectricMeter)->getDepartId($electric_meter['staff_id']);
$agreement['file_id'] = 0;
$time = $contract_end_date - $contract_start_date;
$agreement['period'] = ceil($time/(3600*24*30));
$sign_date= $objPHPExcel->getActiveSheet()->getCell("AF".$j)->getValue();
if($sign_date){
$contract['start_time']=Date::excelToTimestamp($sign_date);
$contract['end_time']=Date::excelToTimestamp($sign_date);
$contract['sign_time']=Date::excelToTimestamp($sign_date);
}else{
$contract['start_time']=0;
$contract['end_time']=0;
$contract['sign_time']=0;
}
//合同有效时间 contract
$period=$objPHPExcel->getActiveSheet()->getCell("AG".$j)->getValue();
$contract['period']=isset($period)?$period:'';
$qrcode=$objPHPExcel->getActiveSheet()->getCell("AH".$j)->getValue();
$electric_meter['qrcode']=isset($qrcode)?$qrcode:'';
$contract['name'] = '新增电表合同';
$contract['u_id'] = $electric_meter['staff_id'];
$contract['d_id'] = (new ElectricMeter)->getDepartId($electric_meter['staff_id']);;
$contract['type'] = 1;
$contract['file_id'] = 0;
$contract['remark'] = '';
$electricMeterAll[] = $electric_meter;
$contractAll[] = $contract;
$agreementAll[] = $agreement;
$engineRoomAll[] = $engine_room;
}
Db::name('contract')->insertAll($contractAll);
Db::name('engine_room')->insertAll($engineRoomAll);
Db::name('contract')->insertAll($agreementAll);
$contractID = Db::name('contract')->field('id')->where("create_time='$create_time'")->select();
$engineRoomID = Db::name('engine_room')->field('id')->where("create_time='$create_time'")->order('id asc')->select();
$agreementID = Db::name('contract')->field('id')->where("create_time='$create_time' and type=2")->select();
$electricMeterAllList = array();
foreach ($electricMeterAll as $key => $val){
$electricMeterAllList[]= array_merge($val,array('er_id'=>$engineRoomID[$key]['id']));
}
foreach ($electricMeterAllList as $key => $value) {
$electricMeterAllListb[] = array_merge($value,array('contract_id'=>$contractID[$key]['id']));
}
foreach ($electricMeterAllListb as $key => $value) {
$electricMeterAllListc[] = array_merge($value,array('protocol_id'=>$agreementID[$key]['id']));
}
$sucelectric= Db::name('electric_meter')->insertAll($electricMeterAllListc);
$data['total']=$highestRow-1;
$data['suc']=$sucelectric;
$data['er']=$highestRow-1-$sucelectric;
return ['code' =>200,'message' => '导入成功' ,'data' => $data];
}
//基站信息导入
public function baseExecl(string $file = '', int $sheet = 0, int $columnCnt = 0, &$options = [])
{
ini_set ('memory_limit', '1000M');
$extension = strtolower(pathinfo($file, PATHINFO_EXTENSION));//判断导入表格后缀格式
// 有Xls和Xlsx格式两种
if ($extension == 'xlsx') {
$objReader =IOFactory::createReader('Xlsx');
$objPHPExcel = $objReader->load($file);
} elseif($extension == 'xls'){
$objReader =IOFactory::createReader('Xls');
$objPHPExcel = $objReader->load($file);
}else{
$this->error('必须为excel表格,且必须为xls或者xlsx格式!');
}
//$filename可以是上传的表格,或者是指定的表格
$sheet = $objPHPExcel->getSheet(0); //excel中的第一张sheet
$highestRow = $sheet->getHighestRow(); // 取得总行数
// $highestColumn = $sheet->getHighestColumn(); // 取得总列数
if($objPHPExcel->getActiveSheet()->getCell("A1")->getValue()!=='基站名称'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("B1")->getValue()!=='基站编号'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("C1")->getValue()!=='项目编号'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("D1")->getValue()!=='需求号'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("E1")->getValue()!=='运营商'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("F1")->getValue()!=='业务线'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("G1")->getValue()!=='区域'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("H1")->getValue()!=='基站状态'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("I1")->getValue()!=='经度'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("J1")->getValue()!=='纬度'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("K1")->getValue()!=='项目地址'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("L1")->getValue()!=='墙面天线数'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("M1")->getValue()!=='杆数'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("N1")->getValue()!=='箱体数'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("O1")->getValue()!=='光缆公里数'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("P1")->getValue()!=='RRU数量'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("Q1")->getValue()!=='RRU方位角'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("R1")->getValue()!=='施工队类型'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("S1")->getValue()!=='施工联系方式'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("T1")->getValue()!=='部门'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("U1")->getValue()!=='经理'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("V1")->getValue()!=='业务员'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("W1")->getValue()!=='需求来源'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("X1")->getValue()!=='公司上游客户'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("Y1")->getValue()!=='频段'){
return ['code' =>5,'message' => '模板错误'];
}
if($objPHPExcel->getActiveSheet()->getCell("Z1")->getValue()!=='创建时间'){
return ['code' =>5,'message' => '模板错误'];
}
$usersExits = [];
//循环读取excel表格,整合成数组。如果是不指定key的二维,就用$data[i][j]表示。
$create_time=time();
$station['update_time']=$create_time;
$detai['update_time'] = $create_time;
$vendor['update_time'] = $create_time;
for ($j = 2; $j <= $highestRow; $j++) {
//基站名称
$station_name=$objPHPExcel->getActiveSheet()->getCell("A".$j)->getValue();
$station['station_name']=isset($station_name)?$station_name:'';
//基站编号
$station_sp_code=$objPHPExcel->getActiveSheet()->getCell("B".$j)->getValue();
$station['station_sp_code']=isset($station_sp_code)?$station_sp_code:'';
// 项目编号
$proj_number=$objPHPExcel->getActiveSheet()->getCell("C".$j)->getValue();
if(empty($proj_number)){
return ['code' =>7,'message' => '项目编号不能为空'];
}
$ojnumber =(new BaseStationModel)->getproId($proj_number);
if($ojnumber){
return ['code' =>8,'message' => '该项目编号:'.$proj_number.'已存在,不能重复添加'];
}
$station['proj_number']=$proj_number;
//需求号
$sp_req_code=$objPHPExcel->getActiveSheet()->getCell("D".$j)->getValue();
$station['sp_req_code']=isset($sp_req_code)?$sp_req_code:'';
//运营商
$original_sp_id=$objPHPExcel->getActiveSheet()->getCell("E".$j)->getValue();
if($original_sp_id){
$station['original_sp_id']=(new BaseStationModel)->getoriginalById($original_sp_id);
}else{
$station['original_sp_id']=0;
}
//业务线
$business_line_id=$objPHPExcel->getActiveSheet()->getCell("F".$j)->getValue();
if($business_line_id){
$station['business_line_id']=(new BaseStationModel)->getbussById($business_line_id);
}else{
$station['business_line_id']=0;
}
//区域
$area_id=$objPHPExcel->getActiveSheet()->getCell("G".$j)->getValue();
if($area_id){
$station['area_id']=(new BaseStationModel)->getregionById($area_id);
}else{
$station['area_id']=0;
}
//基站状态
$base_station_state=$objPHPExcel->getActiveSheet()->getCell("H".$j)->getValue();
if($base_station_state){
$station['base_station_state']=(new BaseStationModel)->getstatusById($base_station_state);
}else{
$station['base_station_state']=0;
}
//经度
$longitude=$objPHPExcel->getActiveSheet()->getCell("I".$j)->getValue();
$detai['longitude']=isset($longitude)?$longitude:'';
//纬度
$latitude=$objPHPExcel->getActiveSheet()->getCell("J".$j)->getValue();
$detai['latitude']=isset($latitude)?$latitude:'';
// 项目地址
$location= $objPHPExcel->getActiveSheet()->getCell("K".$j)->getValue();
$station['location']=isset($location)?$location:'';
// 墙面天线数
$antenna_number=$objPHPExcel->getActiveSheet()->getCell("L".$j)->getValue();
$detai['antenna_number']=isset($antenna_number)?$antenna_number:'0';
// 杆数
$rod_number=$objPHPExcel->getActiveSheet()->getCell("M".$j)->getValue();
$detai['rod_number']=isset($rod_number)?$rod_number:'0';
// 箱体数
$box_number=$objPHPExcel->getActiveSheet()->getCell("N".$j)->getValue();
$detai['box_number']=isset($box_number)?$box_number:'0';
// 光缆公里数
$optical_cable=$objPHPExcel->getActiveSheet()->getCell("O".$j)->getValue();
$detai['optical_cable']=isset($optical_cable)?$optical_cable:'0';
// RRU数量
$rru_number= $objPHPExcel->getActiveSheet()->getCell("P".$j)->getValue();
$detai['rru_number']=isset($rru_number)?$rru_number:'0';
// RRU方位角
$rru_zimuth= $objPHPExcel->getActiveSheet()->getCell("Q".$j)->getValue();
$detai['rru_zimuth']=isset($rru_zimuth)?$rru_zimuth:'0';
// 施工队类型
$type= $objPHPExcel->getActiveSheet()->getCell("R".$j)->getValue();
if($type=='自建'){
$vendor['type']=1;
}elseif($type=='外围'){
$vendor['type']=2;
}elseif($type=='挂靠'){
$vendor['type']=3;
}else{
$vendor['type']=0;
}
// 施工联系方式
$construction_number=$objPHPExcel->getActiveSheet()->getCell("S".$j)->getValue();
$vendor['construction_number']=isset($construction_number)?$construction_number:'';
// 部门
$department_id=$objPHPExcel->getActiveSheet()->getCell("T".$j)->getValue();
if($department_id){
$station['department_id']=(new BaseStationModel)->getdepartById($department_id);
}else{
$station['department_id']=0;
}
// 经理
$three_level_manager=$objPHPExcel->getActiveSheet()->getCell("U".$j)->getValue();
$vendor['three_level_manager']=isset($three_level_manager)?$three_level_manager:'';
// 业务员
$salesman=$objPHPExcel->getActiveSheet()->getCell("V".$j)->getValue();
$vendor['salesman']=isset($salesman)?$salesman:'';
// 需求来源
$sources_id=$objPHPExcel->getActiveSheet()->getCell("W".$j)->getValue();
if($sources_id){
$station['sources_id']=(new BaseStationModel)->getsourceId($sources_id);
}else{
$station['sources_id']=0;
}
// 公司上游客户
$customers_id=$objPHPExcel->getActiveSheet()->getCell("X".$j)->getValue();
if($customers_id){
$station['customers_id']=(new BaseStationModel)->getcustomersId($customers_id);
}else{
$station['customers_id']=0;
}
// 频段
$frequencyband_id=$objPHPExcel->getActiveSheet()->getCell("Y".$j)->getValue();
if($frequencyband_id){
$detai['frequencyband_id']=(new BaseStationModel)->getfrequencybandId($frequencyband_id);
}else{
$detai['frequencyband_id']=0;
}
$add_date= strtotime($objPHPExcel->getActiveSheet()->getCell("Z".$j)->getValue());
if($add_date){
$station['create_time']=$add_date;
$detai['create_time'] = $add_date;
$vendor['create_time'] = $add_date;
}else{
$station['create_time']=$create_time;
$detai['create_time'] = $create_time;
$vendor['create_time'] = $create_time;
}
$stationAll[] = $station;
$detaiAll[] = $detai;
$vendorAll[] = $vendor;
}
$sucelectric= Db::name('station_info')->insertAll($stationAll);
$station_info = Db::name('station_info')->field('station_id,original_sp_id')->where("update_time='$create_time'")->select();
$detaiList = array();
foreach ($detaiAll as $key => $val){
$value = array_merge($val,array('stationid'=>$station_info[$key]['station_id']));
$detaiList[] = $value;
}
Db::name('station_info_detai')->insertAll($detaiList);
$vendinfoList = array();
foreach ($vendorAll as $k => $vo){
$value = array_merge($vo,array('vendor_id'=>$station_info[$k]['station_id']));
$vendinfoList[] = $value;
}
Db::name('vendor_info')->insertAll($vendinfoList);
$data['total']=$highestRow-1;
$data['suc']=$sucelectric;
$data['er']=$highestRow-1-$sucelectric;
return ['code' =>200,'message' => '导入成功' ,'data' => $data];
}
/**
* Excel导出,TODO 可继续优化
*
* @param array $datas 导出数据,格式['A1', => 'XXXX公司报表', 'B1' => '序号']
* @param string $fileName 导出文件名称
* @param array $options 操作选项,例如:
* bool print 设置打印格式
* string freezePane 锁定行数,例如表头为第一行,则锁定表头输入A2
* array setARGB 设置背景色,例如['A1',, 'C1']
* array setWidth 设置宽度,例如['A' => 30, 'C' => 20]
* bool setBorder 设置单元格边框
* array mergeCells 设置合并单元格,例如['A1:J1' => 'A1:J1']
* array formula 设置公式,例如['F2' => '=IF(D2>0,E42/D2,0)']
* array format 设置格式,整列设置,例如['A' => 'General']
* array alignCenter 设置居中样式,例如['A1',, 'A2']
* array bold 设置加粗样式,例如['A1',, 'A2']
* string savePath 保存路径,设置后则文件保存到服务器,不通过浏览器下载
*/
public function exportExcel(array $datas, string $fileName = '', array $options = []): bool
{
try {
if (empty($datas)) {
return false;
}
set_time_limit(0);
/** @var Spreadsheet $objSpreadsheet */
$objSpreadsheet = app(Spreadsheet::class);
/* 设置默认文字居左,上下居中 */
$styleArray = [
'alignment' => [
'horizontal' => Alignment::HORIZONTAL_LEFT,
'vertical' => Alignment::VERTICAL_CENTER,
],
];
$objSpreadsheet->getDefaultStyle()->applyFromArray($styleArray);
/* 设置Excel Sheet */
$activeSheet = $objSpreadsheet->setActiveSheetIndex(0);
/* 打印设置 */
if (isset($options['print']) && $options['print']) {
/* 设置打印为A4效果 */
$activeSheet->getPageSetup()->setPaperSize(PageSetup:: PAPERSIZE_A4);
/* 设置打印时边距 */
$pValue = 1 / 2.54;
$activeSheet->getPageMargins()->setTop($pValue / 2);
$activeSheet->getPageMargins()->setBottom($pValue * 2);
$activeSheet->getPageMargins()->setLeft($pValue / 2);
$activeSheet->getPageMargins()->setRight($pValue / 2);
}
/* 行数据处理 */
foreach ($datas as $sKey => $sItem) {
/* 默认文本格式 */
$pDataType = DataType::TYPE_STRING;
/* 设置单元格格式 */
if (isset($options['format']) && !empty($options['format'])) {
$colRow = Coordinate::coordinateFromString($sKey);
/* 存在该列格式并且有特殊格式 */
if (isset($options['format'][$colRow[0]]) &&
NumberFormat::FORMAT_GENERAL != $options['format'][$colRow[0]]) {
$activeSheet->getStyle($sKey)->getNumberFormat()
->setFormatCode($options['format'][$colRow[0]]);
if (false !== strpos($options['format'][$colRow[0]], '0.00') &&
is_numeric(str_replace(['¥', ','], '', $sItem))) {
/* 数字格式转换为数字单元格 */
$pDataType = DataType::TYPE_NUMERIC;
$sItem = str_replace(['¥', ','], '', $sItem);
}
} elseif (is_int($sItem)) {
$pDataType = DataType::TYPE_NUMERIC;
}
}
$activeSheet->setCellValueExplicit($sKey, $sItem, $pDataType);
/* 存在:形式的合并行列,列入A1:B2,则对应合并 */
if (false !== strstr($sKey, ":")) {
$options['mergeCells'][$sKey] = $sKey;
}
}
unset($datas);
/* 设置锁定行 */
if (isset($options['freezePane']) && !empty($options['freezePane'])) {
$activeSheet->freezePane($options['freezePane']);
unset($options['freezePane']);
}
/* 设置宽度 */
if (isset($options['setWidth']) && !empty($options['setWidth'])) {
foreach ($options['setWidth'] as $swKey => $swItem) {
$activeSheet->getColumnDimension($swKey)->setWidth($swItem);
}
unset($options['setWidth']);
}
/* 设置背景色 */
if (isset($options['setARGB']) && !empty($options['setARGB'])) {
foreach ($options['setARGB'] as $sItem) {
$activeSheet->getStyle($sItem)
->getFill()->setFillType(Fill::FILL_SOLID)
->getStartColor()->setARGB(Color::COLOR_YELLOW);
}
unset($options['setARGB']);
}
/* 设置公式 */
if (isset($options['formula']) && !empty($options['formula'])) {
foreach ($options['formula'] as $fKey => $fItem) {
$activeSheet->setCellValue($fKey, $fItem);
}
unset($options['formula']);
}
/* 合并行列处理 */
if (isset($options['mergeCells']) && !empty($options['mergeCells'])) {
$activeSheet->setMergeCells($options['mergeCells']);
unset($options['mergeCells']);
}
/* 设置居中 */
if (isset($options['alignCenter']) && !empty($options['alignCenter'])) {
$styleArray = [
'alignment' => [
'horizontal' => Alignment::HORIZONTAL_CENTER,
'vertical' => Alignment::VERTICAL_CENTER,
],
];
foreach ($options['alignCenter'] as $acItem) {
$activeSheet->getStyle($acItem)->applyFromArray($styleArray);
}
unset($options['alignCenter']);
}
/* 设置加粗 */
if (isset($options['bold']) && !empty($options['bold'])) {
foreach ($options['bold'] as $bItem) {
$activeSheet->getStyle($bItem)->getFont()->setBold(true);
}
unset($options['bold']);
}
/* 设置单元格边框,整个表格设置即可,必须在数据填充后才可以获取到最大行列 */
if (isset($options['setBorder']) && $options['setBorder']) {
$border = [
'borders' => [
'allBorders' => [
'borderStyle' => Border::BORDER_THIN, // 设置border样式
'color' => ['argb' => 'FF000000'], // 设置border颜色
],
],
];
$setBorder = 'A1:' . $activeSheet->getHighestColumn() . $activeSheet->getHighestRow();
$activeSheet->getStyle($setBorder)->applyFromArray($border);
unset($options['setBorder']);
}
$fileName = !empty($fileName) ? $fileName : (date('YmdHis') . '.xlsx');
if (!isset($options['savePath'])) {
/* 直接导出Excel,无需保存到本地,输出07Excel文件 */
header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
header(
"Content-Disposition:attachment;filename=" . iconv(
"utf-8", "GB2312//TRANSLIT", $fileName
)
);
header('Cache-Control: max-age=0');//禁止缓存
$savePath = 'php://output';
} else {
$savePath = $options['savePath'];
}
ob_clean();
ob_start();
$objWriter = IOFactory::createWriter($objSpreadsheet, 'Xlsx');
$objWriter->save($savePath);
/* 释放内存 */
$objSpreadsheet->disconnectWorksheets();
unset($objSpreadsheet);
ob_end_flush();
return true;
} catch (Exception $e) {
return false;
}
}
public function export($data,$name){
ini_set ('memory_limit', '1000M');
$spreadsheet = new Spreadsheet();
$sheet = $spreadsheet->getActiveSheet();
// $sheet->setCellValue('A1','station_name 基站名称');
// $sheet->setCellValue('B1','station_sp_code 基站编号');
// $sheet->setCellValue('C1','proj_number 项目编号');
// $sheet->setCellValue('D1','number 编号');
// $sheet->setCellValue('E1','emt_id 类型');
// $sheet->setCellValue('F1','pay_number 缴费号');
// $sheet->setCellValue('G1','multiple 倍率');
// $sheet->setCellValue('H1','pay_cycle 交费周期');
// $sheet->setCellValue('I1','unit_price 电表单价');
// $sheet->setCellValue('J1','protocol_price 协议单价');
// $sheet->setCellValue('K1','address 电表地址 地址');
// $sheet->setCellValue('L1','remark 备注');
// $sheet->setCellValue('M1','create_time 创建时');
// $sheet->setCellValue('N1','init_degree 初始度数');
// $sheet->setCellValue('O1','first_cp_date 第一次抄表日期');
// $sheet->setCellValue('P1','is_protocol 是否是协议价');
// $sheet->setCellValue('Q1','staff_name 员工姓名');
// $sheet->setCellValue('R1','er_name 机房名称');
// $sheet->setCellValue('S1','er_position 机房位置');
// $sheet->setCellValue('T1','qrcode 二维码');
// $sheet->setCellValue('U1','er_contact 联系人');
// $sheet->setCellValue('V1','er_tel 联系电话');
// $sheet->setCellValue('W1','property_position 物业位置');
// $sheet->setCellValue('X1','receive 实际收款单位');
// $sheet->setCellValue('Y1','rent 出租单位');
// $sheet->setCellValue('Z1','er_remark 机房备注');
// $sheet->setCellValue('AA1','contract_number 合同编号');
// $sheet->setCellValue('AB1','contract_sign_time 合同开始时间');
// $sheet->setCellValue('AC1','period 合同周期');
// $sheet->setCellValue('AD1','protocol_name 协议名称');
// $sheet->setCellValue('AE1','protocol_number 协议编号');
// $sheet->setCellValue('AF1','protocol_sign_date 协议签订时间');
// $sheet->setCellValue('AG1','protocol_start_date 协议开始时间');
// $sheet->setCellValue('AH1','protocol_end_date 协议结束时间');
// $sheet->setCellValue('AI1','protocol_remark 协议备注');
// $sheet->setCellValue('AJ1','init_amount 初始电表额度');
// $sheet->setCellValue('AK1','qrcode 二维码');
$sheet->setCellValue('A1','基站名称');
$sheet->setCellValue('B1','基站编号');
$sheet->setCellValue('C1','项目编号');
$sheet->setCellValue('D1','表号');
$sheet->setCellValue('E1','二维码');
$sheet->setCellValue('F1','类型');
$sheet->setCellValue('G1','缴费号');
$sheet->setCellValue('H1','倍率');
$sheet->setCellValue('I1','交费周期');
$sheet->setCellValue('J1','电表单价');
$sheet->setCellValue('K1','协议单价');
$sheet->setCellValue('L1','电表地址');
$sheet->setCellValue('M1','备注');
$sheet->setCellValue('N1','创建时');
$sheet->setCellValue('O1','初始度数');
$sheet->setCellValue('P1','第一次抄表日期');
$sheet->setCellValue('Q1','是否是协议价');
$sheet->setCellValue('R1','员工姓名');
$sheet->setCellValue('S1','机房名称');
$sheet->setCellValue('T1','机房位置');
$sheet->setCellValue('U1','二维码');
$sheet->setCellValue('V1','联系人');
$sheet->setCellValue('W1','联系电话');
$sheet->setCellValue('X1','物业位置');
$sheet->setCellValue('Y1','实际收款单位');
$sheet->setCellValue('Z1','出租单位');
$sheet->setCellValue('AA1','机房备注');
$sheet->setCellValue('AB1','合同编号');
$sheet->setCellValue('AC1','合同开始时间');
$sheet->setCellValue('AD1','合同周期');
$sheet->setCellValue('AE1','协议名称');
$sheet->setCellValue('AF1','协议编号');
$sheet->setCellValue('AG1','协议签订时间');
$sheet->setCellValue('AH1','协议开始时间');
$sheet->setCellValue('AI1','协议结束时间');
$sheet->setCellValue('AJ1','协议备注');
$sheet->setCellValue('AK1','初始电表额度');
$sheet->setCellValue('AL1','二维码');
for ($i = 0; $i < count($data); $i++) {
$sheet->setCellValue('A'.($i+2),$data[$i]['station_name']);
$sheet->setCellValue('B'.($i+2),$data[$i]['station_sp_code']);
$sheet->setCellValue('C'.($i+2),$data[$i]['proj_number']);
$sheet->setCellValue('D'.($i+2),$data[$i]['number']);
$sheet->setCellValue('E'.($i+2),$data[$i]['qrcode']);
$sheet->setCellValue('F'.($i+2),$data[$i]['emt_name']);
$sheet->setCellValue('G'.($i+2),$data[$i]['pay_number']);
$sheet->setCellValue('H'.($i+2),$data[$i]['multiple']);
$sheet->setCellValue('I'.($i+2),$data[$i]['pay_cycle']);
$sheet->setCellValue('J'.($i+2),$data[$i]['unit_price']);
$sheet->setCellValue('K'.($i+2),$data[$i]['protocol_price']);
$sheet->setCellValue('L'.($i+2),$data[$i]['address']);
$sheet->setCellValue('M'.($i+2),$data[$i]['remark']);
$sheet->setCellValue('N'.($i+2),$data[$i]['create_time']);
$sheet->setCellValue('O'.($i+2),$data[$i]['init_degree']);
$sheet->setCellValue('P'.($i+2),$data[$i]['first_cp_date']);
$sheet->setCellValue('Q'.($i+2),$data[$i]['isprotocol']);
$sheet->setCellValue('R'.($i+2),$data[$i]['staff_name']);
$sheet->setCellValue('S'.($i+2),$data[$i]['er_name']);
$sheet->setCellValue('T'.($i+2),$data[$i]['er_position']);
$sheet->setCellValue('U'.($i+2),$data[$i]['qrcode']);
$sheet->setCellValue('V'.($i+2),$data[$i]['er_contact']);
$sheet->setCellValue('W'.($i+2),$data[$i]['er_tel']);
$sheet->setCellValue('X'.($i+2),$data[$i]['property_position']);
$sheet->setCellValue('Y'.($i+2),$data[$i]['receive']);
$sheet->setCellValue('Z'.($i+2),$data[$i]['rent']);
$sheet->setCellValue('AA'.($i+2),$data[$i]['er_remark']);
$sheet->setCellValue('AB'.($i+2),$data[$i]['contract_number']);
$sheet->setCellValue('AC'.($i+2),$data[$i]['contract_sign_time']);
$sheet->setCellValue('AD'.($i+2),$data[$i]['period'].'月');
$sheet->setCellValue('AE'.($i+2),$data[$i]['protocol_name']);
$sheet->setCellValue('AF'.($i+2),$data[$i]['protocol_number']);
$sheet->setCellValue('AG'.($i+2),$data[$i]['protocol_sign_date']);
$sheet->setCellValue('AH'.($i+2),$data[$i]['protocol_start_date']);
$sheet->setCellValue('AI'.($i+2),$data[$i]['protocol_end_date']);
$sheet->setCellValue('AJ'.($i+2),$data[$i]['protocol_remark']);
$sheet->setCellValue('AK'.($i+2),$data[$i]['init_amount']);
}
header('Content-Type: application/vnd.ms-excel');
header('Content-Disposition: attachment;filename="'.$name.'.xlsx"');
header('Cache-Control: max-age=0');
$writer = new \PhpOffice\PhpSpreadsheet\Writer\Xlsx($spreadsheet);
ob_end_clean();
$writer->save('php://output');
exit;
}
public function baseexport($data,$name){
ini_set ('memory_limit', '1000M');
$spreadsheet = new Spreadsheet();
$sheet = $spreadsheet->getActiveSheet();
$sheet->setCellValue('A1','基站名称 station_name');
$sheet->setCellValue('B1','基站编号 station_sp_code');
$sheet->setCellValue('C1','运营商 operator_name');
$sheet->setCellValue('D1','需求号 sp_req_code');
$sheet->setCellValue('E1','基站状态 cate_name');
$sheet->setCellValue('F1','需求来源 sources_name');
$sheet->setCellValue('G1','上游客户 customers_name');
$sheet->setCellValue('H1','项目编号 proj_number');
$sheet->setCellValue('I1','经度 longitude');
$sheet->setCellValue('J1','纬度 latitude');
$sheet->setCellValue('K1','业务线 business_name');
$sheet->setCellValue('L1','区域 region_name');
$sheet->setCellValue('M1','项目地址 location');
$sheet->setCellValue('N1','墙面天线数 antenna_number');
$sheet->setCellValue('O1','杆数 rod_number');
$sheet->setCellValue('P1','箱体数 box_number');
$sheet->setCellValue('Q1','RRU数量 rru_number');
$sheet->setCellValue('R1','RRU方位角 rru_zimuth');
$sheet->setCellValue('S1','光缆公里数 optical_cable');
$sheet->setCellValue('T1','施工队类型 type');
$sheet->setCellValue('U1','施工联系方式 construction_number');
$sheet->setCellValue('V1','部门 name');
$sheet->setCellValue('W1','经理 three_level_manager');
$sheet->setCellValue('X1','业务员 salesman');
for ($i = 0; $i < count($data); $i++) {
$sheet->setCellValue('A'.($i+2),$data[$i]['station_name']);
$sheet->setCellValue('B'.($i+2),$data[$i]['station_sp_code']);
$sheet->setCellValue('C'.($i+2),$data[$i]['operator_name']);
$sheet->setCellValue('D'.($i+2),$data[$i]['sp_req_code']);
$sheet->setCellValue('E'.($i+2),$data[$i]['cate_name']);
$sheet->setCellValue('F'.($i+2),$data[$i]['sources_name']);
$sheet->setCellValue('G'.($i+2),$data[$i]['customers_name']);
$sheet->setCellValue('H'.($i+2),$data[$i]['proj_number']);
$sheet->setCellValue('I'.($i+2),$data[$i]['longitude']);
$sheet->setCellValue('J'.($i+2),$data[$i]['latitude']);
$sheet->setCellValue('K'.($i+2),$data[$i]['business_name']);
$sheet->setCellValue('L'.($i+2),$data[$i]['region_name']);
$sheet->setCellValue('M'.($i+2),$data[$i]['location']);
$sheet->setCellValue('N'.($i+2),$data[$i]['antenna_number']);
$sheet->setCellValue('O'.($i+2),$data[$i]['rod_number']);
$sheet->setCellValue('P'.($i+2),$data[$i]['box_number']);
$sheet->setCellValue('Q'.($i+2),$data[$i]['rru_number']);
$sheet->setCellValue('R'.($i+2),$data[$i]['rru_zimuth']);
$sheet->setCellValue('S'.($i+2),$data[$i]['optical_cable']);
$sheet->setCellValue('T'.($i+2),$data[$i]['type']);
$sheet->setCellValue('U'.($i+2),$data[$i]['construction_number']);
$sheet->setCellValue('V'.($i+2),$data[$i]['name']);
$sheet->setCellValue('W'.($i+2),$data[$i]['three_level_manager']);
$sheet->setCellValue('X'.($i+2),$data[$i]['salesman']);
}
header('Content-Type: application/vnd.ms-excel');
header('Content-Disposition: attachment;filename="'.$name.'.xlsx"');
header('Cache-Control: max-age=0');
$writer = new \PhpOffice\PhpSpreadsheet\Writer\Xlsx($spreadsheet);
ob_end_clean();
$writer->save('php://output');
exit;
}
public function meterexport($data,$name){
ini_set ('memory_limit', '5000M');
$spreadsheet = new Spreadsheet();
$sheet = $spreadsheet->getActiveSheet();
$sheet->setCellValue('A1','支票号');
$sheet->setCellValue('B1','缴费员');
$sheet->setCellValue('C1','更新日期');
$sheet->setCellValue('D1','项目编号');
$sheet->setCellValue('E1','缴费号');
$sheet->setCellValue('F1','电表数');
$sheet->setCellValue('G1','缴费次数');
$sheet->setCellValue('H1','和移动结算情况');
$sheet->setCellValue('I1','基站类型');
$sheet->setCellValue('J1','是否协议价');
$sheet->setCellValue('K1','区域');
$sheet->setCellValue('L1','网络标识');
$sheet->setCellValue('M1','站号');
$sheet->setCellValue('N1','站名');
$sheet->setCellValue('O1','机房二维码');
$sheet->setCellValue('P1','缴费周期');
$sheet->setCellValue('Q1','预交费日期');
$sheet->setCellValue('R1','上期表数');
$sheet->setCellValue('S1','本期表数');
$sheet->setCellValue('T1','实际报移动用电量');
$sheet->setCellValue('U1','上期查表日期');
$sheet->setCellValue('V1','本期查表日期');
$sheet->setCellValue('W1','倍率');
$sheet->setCellValue('X1','抄表单单价');
$sheet->setCellValue('Y1','财务单价');
$sheet->setCellValue('Z1','实际从财务支出金额');
$sheet->setCellValue('AA1','用电量(1.05元/度)');
$sheet->setCellValue('AB1','用电量(1.09元/度)');
$sheet->setCellValue('AC1','用电量(1.123元/度)');
$sheet->setCellValue('AD1','用电量(协议价)');
$sheet->setCellValue('AE1','协议价');
$sheet->setCellValue('AF1','移动结算金额');
$sheet->setCellValue('AG1','回款次数');
$sheet->setCellValue('AH1','毛利');
$sheet->setCellValue('AI1','电表类型');
$sheet->setCellValue('AJ1','电表识别号');
$sheet->setCellValue('AK1','电表问题');
$sheet->setCellValue('AL1','基站问题');
$sheet->setCellValue('AM1','地址');
$sheet->setCellValue('AN1','所属移动分公司');
$sheet->setCellValue('AO1','出租单位名称');
$sheet->setCellValue('AP1','甲方联系人');
$sheet->setCellValue('AQ1','实际收款单位');
$sheet->setCellValue('AR1','联系方式');
$sheet->setCellValue('AS1','机房位置');
$sheet->setCellValue('AT1','物业位置');
$sheet->setCellValue('AU1','备注');
$sheet->setCellValue('AV1','申请确认合同额');
$sheet->setCellValue('AW1','结算日期');
$sheet->setCellValue('AX1','确认合同时间');
$sheet->setCellValue('AY1','确认收入时间');
$sheet->setCellValue('AZ1','是否有发票');
$sheet->setCellValue('BA1','合同编号');
$sheet->setCellValue('BB1','发票类型');
$sheet->setCellValue('BC1','税点');
for ($i = 0; $i < count($data); $i++) {
$sheet->setCellValue('A'.($i+2),$data[$i]['cheque_number']);
$sheet->setCellValue('B'.($i+2),$data[$i]['payment_clerk']);
$sheet->setCellValue('C'.($i+2),$data[$i]['update_time']);
$sheet->setCellValue('D'.($i+2),$data[$i]['proj_number']);
$sheet->setCellValue('E'.($i+2),$data[$i]['payment_number']);
$sheet->setCellValue('F'.($i+2),$data[$i]['meters_number']);
$sheet->setCellValue('G'.($i+2),$data[$i]['payments_umber']);
$sheet->setCellValue('H'.($i+2),$data[$i]['settlement']);
$sheet->setCellValue('I'.($i+2),$data[$i]['base_type']);
$sheet->setCellValue('J'.($i+2),$data[$i]['is_protocol']);
$sheet->setCellValue('K'.($i+2),$data[$i]['region']);
$sheet->setCellValue('L'.($i+2),$data[$i]['network_identity']);
$sheet->setCellValue('M'.($i+2),$data[$i]['station_number']);
$sheet->setCellValue('N'.($i+2),$data[$i]['station_name']);
$sheet->setCellValue('O'.($i+2),$data[$i]['qrcode']);
$sheet->setCellValue('P'.($i+2),$data[$i]['payment_cycle']);
$sheet->setCellValue('Q'.($i+2),$data[$i]['advance_pay_time']);
$sheet->setCellValue('R'.($i+2),$data[$i]['last_number']);
$sheet->setCellValue('S'.($i+2),$data[$i]['current_number']);
$sheet->setCellValue('T'.($i+2),$data[$i]['report_electric']);
$sheet->setCellValue('U'.($i+2),$data[$i]['last_date']);
$sheet->setCellValue('V'.($i+2),$data[$i]['current_date']);
$sheet->setCellValue('W'.($i+2),$data[$i]['multiple']);
$sheet->setCellValue('X'.($i+2),$data[$i]['unit_price']);
$sheet->setCellValue('Y'.($i+2),$data[$i]['finance_unit']);
$sheet->setCellValue('Z'.($i+2),$data[$i]['finance_pay']);
$sheet->setCellValue('AA'.($i+2),$data[$i]['electricone']);
$sheet->setCellValue('AB'.($i+2),$data[$i]['electrictwo']);
$sheet->setCellValue('AC'.($i+2),$data[$i]['electricthree']);
$sheet->setCellValue('AD'.($i+2),$data[$i]['electricity_consumption']);
$sheet->setCellValue('AE'.($i+2),$data[$i]['agreed_price']);
$sheet->setCellValue('AF'.($i+2),$data[$i]['settlement_amount']);
$sheet->setCellValue('AG'.($i+2),$data[$i]['back_number']);
$sheet->setCellValue('AH'.($i+2),$data[$i]['gross_profit']);
$sheet->setCellValue('AI'.($i+2),$data[$i]['meter_type']);
$sheet->setCellValue('AJ'.($i+2),$data[$i]['meter_number']);
$sheet->setCellValue('AK'.($i+2),$data[$i]['meter_problem']);
$sheet->setCellValue('AL'.($i+2),$data[$i]['base_problem']);
$sheet->setCellValue('AM'.($i+2),$data[$i]['address']);
$sheet->setCellValue('AN'.($i+2),$data[$i]['subordinate']);
$sheet->setCellValue('AO'.($i+2),$data[$i]['rental_name']);
$sheet->setCellValue('AP'.($i+2),$data[$i]['contacts']);
$sheet->setCellValue('AQ'.($i+2),$data[$i]['receiving_unit']);
$sheet->setCellValue('AR'.($i+2),$data[$i]['contact_information']);
$sheet->setCellValue('AS'.($i+2),$data[$i]['room_location']);
$sheet->setCellValue('AT'.($i+2),$data[$i]['property_location']);
$sheet->setCellValue('AU'.($i+2),$data[$i]['remarks']);
$sheet->setCellValue('AV'.($i+2),$data[$i]['apply_contract_amount']);
$sheet->setCellValue('AW'.($i+2),$data[$i]['settlement_date']);
$sheet->setCellValue('AX'.($i+2),$data[$i]['confirmation_time']);
$sheet->setCellValue('AY'.($i+2),$data[$i]['income_time']);
$sheet->setCellValue('AZ'.($i+2),$data[$i]['is_invoice']);
$sheet->setCellValue('BA'.($i+2),$data[$i]['contract_number']);
$sheet->setCellValue('BB'.($i+2),$data[$i]['invoice_type']);
$sheet->setCellValue('BC'.($i+2),$data[$i]['tax_point']);
}
header('Content-Type: application/vnd.ms-excel');
header('Content-Disposition: attachment;filename="'.$name.'.xls"');
header('Cache-Control: max-age=0');
$writer = new \PhpOffice\PhpSpreadsheet\Writer\Xlsx($spreadsheet);
ob_end_clean();
$writer->save('php://output');
exit;
}
//基站流转数据信息导入
public function basestation_importExecl(string $file = '', int $sheet = 0, int $columnCnt = 0, &$options = []){
ini_set ('memory_limit', '1000M');
$extension = strtolower(pathinfo($file, PATHINFO_EXTENSION));//判断导入表格后缀格式
// 有Xls和Xlsx格式两种
if ($extension == 'xlsx') {
$objReader =IOFactory::createReader('Xlsx');
$objPHPExcel = $objReader->load($file);
} elseif($extension == 'xls'){
$objReader =IOFactory::createReader('Xls');
$objPHPExcel = $objReader->load($file);
}else{
$this->error('必须为excel表格,且必须为xls或者xlsx格式!');
}
//$filename可以是上传的表格,或者是指定的表格
$sheet = $objPHPExcel->getSheet(0); //excel中的第一张sheet
$highestRow = $sheet->getHighestRow(); // 取得总行数
// $highestColumn = $sheet->getHighestColumn(); // 取得总列数
$error=0;
for ($j = 2; $j <= $highestRow; $j++) {
$data['jzProjectId']=$objPHPExcel->getActiveSheet()->getCell("A".$j)->getValue();
$data['jzRequire']=$objPHPExcel->getActiveSheet()->getCell("B".$j)->getValue();
$data['jzCode']=$objPHPExcel->getActiveSheet()->getCell("C".$j)->getValue();
$data['jzName']=$objPHPExcel->getActiveSheet()->getCell("D".$j)->getValue();
$data['projectCode']=$objPHPExcel->getActiveSheet()->getCell("E".$j)->getValue();
$data['jzType']=$objPHPExcel->getActiveSheet()->getCell("F".$j)->getValue();
$data['jzYys']=$objPHPExcel->getActiveSheet()->getCell("G".$j)->getValue();
$data['jzUpCustom']=$objPHPExcel->getActiveSheet()->getCell("H".$j)->getValue();
$data['businessLine']=$objPHPExcel->getActiveSheet()->getCell("I".$j)->getValue();
$data['jzQy']=$objPHPExcel->getActiveSheet()->getCell("J".$j)->getValue();
$data['projectAddress']=$objPHPExcel->getActiveSheet()->getCell("K".$j)->getValue();
$data['jzLongitude']=$objPHPExcel->getActiveSheet()->getCell("L".$j)->getValue();
$data['jzLatitude']=$objPHPExcel->getActiveSheet()->getCell("M".$j)->getValue();
$data['jzState']=$objPHPExcel->getActiveSheet()->getCell("N".$j)->getValue();
$data['jzCurDept']=$objPHPExcel->getActiveSheet()->getCell("O".$j)->getValue();
$data['jzProjectOwner']=$objPHPExcel->getActiveSheet()->getCell("P".$j)->getValue();
$data['jzCurUser']=$objPHPExcel->getActiveSheet()->getCell("Q".$j)->getValue();
$data['jzCreateDateStr']=$objPHPExcel->getActiveSheet()->getCell("R".$j)->getValue();
$data['jzEwm']=$objPHPExcel->getActiveSheet()->getCell("S".$j)->getValue();
$url='http://39.155.253.70:8081/jzmessage/KingDeeaddMessage';
$accessToken=$this->check_login();
$jzdata=self::jz($data,$url,$accessToken);
dump($jzdata);
$jzdata= json_decode($jzdata,true);
if($jzdata['code']!==200){
$error++;
}
}
// $datacount['total']=$highestRow-1;
// $datacount['suc']=$highestRow-1-$error;
// $datacount['er']=$error;
// return ['code' =>200,'message' => '导入成功' ,'data' => $datacount];
}
public function check_login(){
$data['password']=371;
$data['username']=371;
$data['userType']=1;
$url="http://39.155.253.70:8081/auth/login";
$token=self::jz($data,$url,'');
$token=json_decode($token,true);
if( $token['code']==200){
return $token['data'];
}
}
static function jz($jzdata,$url,$accessToken){
if($accessToken){
$headers[] = "Authorization: Bearer ". $accessToken;
}else{
$headers=[];
}
$curl = curl_init();
//设置抓取的url
curl_setopt($curl, CURLOPT_URL, $url);
//设置头文件的信息作为数据流输出
curl_setopt($curl, CURLOPT_HEADER,0);
//设置请求头
curl_setopt($curl, CURLOPT_HTTPHEADER,$headers);
//设置获取的信息以文件流的形式返回,而不是直接输出。
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
//设置post方式提交
curl_setopt($curl, CURLOPT_POST, 1);
//设置post数据
curl_setopt($curl, CURLOPT_POSTFIELDS, $jzdata);
//执行命令
$data = curl_exec($curl);
//关闭URL请求
curl_close($curl);
//显示获得的数据
return $data;
}
}
\ No newline at end of file
......@@ -20,7 +20,7 @@ class Login extends Controller
{
public function index()
{
$baseUrl = config('admin.base_url');
$baseUrl = config('admin.oa_url');
echo '<script type="text/javascript">top.location.href="'.$baseUrl.'";</script>';
}
......@@ -166,4 +166,4 @@ class Login extends Controller
$strs="QWERTYUIOPASDFGHJKLZXCVBNM1234567890qwertyuiopasdfghjklzxcvbnm";
return substr(str_shuffle($strs),mt_rand(0,strlen($strs)-11),$length);
}
}
\ No newline at end of file
}
......@@ -21,6 +21,7 @@ class SingleSign {
else throw new Exception("redis connect faild");
}
$sid = Cookie::get('PHPSESSID');
if(!empty($sid)) Cookie::set('PHPSESSID',$sid,['expire'=>time()+3600]);
}
......@@ -61,14 +62,17 @@ class SingleSign {
//获取userid
public function getUserId($user=[]){
if(!$user['is_admin']){
// if(!$user['is_admin']){
if($user['is_admin'] && $user['username']=='admin') return 9999;
$email = $user['username'].'@gonn.com.cn';
$staff = StaffModel::where(['email'=>$email])->find();
if($staff) return $staff->id;
else throw new Exception('user id not found');
} else {
return 8;
}
//}
//else {
// return 8;
// }
}
//将加密串保存到redis
......@@ -88,4 +92,4 @@ class SingleSign {
if($this->instence->set($sid,'')) return true;
return false;
}
}
\ No newline at end of file
}
......@@ -24,4 +24,4 @@ class NavModel
}
}
\ No newline at end of file
}
......@@ -16,14 +16,22 @@
<ul class="sub-menu">
{foreach $child['children'] as $grandson}
<li>
<a onclick="xadmin.add_tab('{$grandson['title']}','/{$grandson['nav_url']}',true)">
<i class="iconfont">&#xe6a7;</i>
{if stripos($grandson['nav_url'],'http') !== false }
<a onclick="xadmin.add_tab('{$grandson['title']}','{$grandson['nav_url']}',true)">
{else /}
<a onclick="xadmin.add_tab('{$grandson['title']}','/{$grandson['nav_url']}',true)">
{/if}
- <i class="iconfont">&#xe6a7;</i>
<cite>{$grandson['title']}</cite></a>
</li>
{/foreach}
</ul>
{else /}
<a onclick="xadmin.add_tab('{$child['title']}','/{$child['nav_url']}',true)">
{if stripos($child['nav_url'],'http') !== false }
<a onclick="xadmin.add_tab('{$child['title']}','{$child['nav_url']}',true)">
{else /}
<a onclick="xadmin.add_tab('{$child['title']}','/{$child['nav_url']}',true)">
{/if}
<i class="iconfont">&#xe6a7;</i>
<cite>{$child['title']}</cite></a>
{/if}
......
......@@ -15,9 +15,61 @@
<div class="layui-col-md12">
<div class="layui-card">
<div class="layui-form-box">
<div class="layui-form-head">
</div>
<ul class="layui-timeline">
<li class="layui-timeline-item">
<i class="layui-icon layui-timeline-axis">&#xe63f;</i>
<div class="layui-timeline-content layui-text">
<h3 class="layui-timeline-title">2020/8/26</h3>
<p><strong>账单列表功能更新:升级"合并账单"功能</strong></p>
<ul>
<li>"合并账单" 支持类似购物车功能.</li>
<li>支持跨分页,关键字搜索,之后勾选账单均可添加到 "合并账单" 进行合并操作.</li>
<li>支持 "合并账单" 中删除账单之后,列表对应取消勾选状态.</li>
<li>"账单合并" 中金额均保留三位小数(四舍五入)</li>
</ul>
<p><strong>缴费单下推付款更新:优化下推付款细节</strong></p>
<ul>
<li>下推付款在选择"收款方"之后,会自动将"收款方"银行账号列表写入到"收款信息"列表中,手动选择即可,不再支持手动改写"收款信息".
</ul>
</div>
</li>
<li class="layui-timeline-item">
<i class="layui-icon layui-timeline-axis">&#xe63f;</i>
<div class="layui-timeline-content layui-text">
<h3 class="layui-timeline-title">2020/9/15</h3>
<p><strong>原"基站管理系统"已下线,所有基站业务请到项目管理系统中管理.</strong></p>
</div>
</li>
<li class="layui-timeline-item">
<i class="layui-icon layui-timeline-axis">&#xe63f;</i>
<div class="layui-timeline-content layui-text">
<h3 class="layui-timeline-title">2020/11/08</h3>
<p><strong>电费账单可支持"部分缴费"业务</strong></p>
<ul>
<li>在账单合并下推缴费时,可填入本次缴费金额,缴费金额不能大于账单金额,且不能为0.</li>
</ul>
</div>
</li>
<li class="layui-timeline-item">
<i class="layui-icon layui-timeline-axis">&#xe63f;</i>
<div class="layui-timeline-content layui-text">
<h3 class="layui-timeline-title">2021/1/04</h3>
<p><strong>电费支持合并充值功能</strong></p>
<ul>
<li>将原缴费列表拆分成,充值列表与缴费列表,充值列表负责插卡表缴费业务,缴费列表负责后付费缴费业务.</li>
<li>合并充值操作同账单合并一致,且只有当充值单状态为<strong style="color:red">"未提交"</strong>状态,方可合并充值。</li>
</ul>
<p><strong>新增缴费/充值"作废"功能</strong></p>
<ul>
<li>如果缴费或充值信息有误,在下推付款单之前可选择作废,自动解除与账单等关联关系,如不显示该按钮,请申请权限。</li>
</ul>
</div>
</li>
</ul>
</div>
</div>
</div>
......@@ -26,4 +78,4 @@
</div>
<div id="tab_show"></div>
</div>
</div>
\ No newline at end of file
</div>
......@@ -60,12 +60,8 @@
<script src="dist/js/md5.js"></script>
<script src="dist/js/sha1.js"></script>
<script src="dist/js/util.js"></script>
<<<<<<< HEAD
<!--<script src="dist/js/getUserToken.js"></script>-->
=======
<script src="dist/js/getUserToken.js"></script>
>>>>>>> test
<script>
layui.use(['laydate','form','upload'], function(){
upload = layui.upload;
......@@ -183,4 +179,4 @@
}
</script>
{/block}
\ No newline at end of file
{/block}
......@@ -3,7 +3,9 @@
/**
* 基础信息接口
*/
namespace app\api\controller\v1\common;
use app\api\exception\DbLinkException;
use think\Db;
......@@ -11,16 +13,17 @@ class BasicInfor
{
//获取区域列表信息
public function getRegions(){
$regions = Db::table('region')
public function getRegions()
{
$regions = Db::table('region')
->field('id,region_name,region_state,pid,create_time')
->where('region_state','=',1)
->where('region_state', '=', 1)
->select();
$regionsdata =self::getRegionsTree($regions);
if(!$regionsdata){
$regionsdata = self::getRegionsTree($regions);
if (!$regionsdata) {
throw new DbLinkException;
}
}
return json([
'code' => 200,
'message' => 'SUCCESS',
......@@ -29,37 +32,39 @@ class BasicInfor
}
//获取业务线列表信息
public function getBusiness(){
$business = Db::table('business_line')
//获取业务线列表信息
public function getBusiness()
{
$business = Db::table('business_line')
->field('business_id,business_name,business_state,create_time')
->where('business_state','=',1)
->where('business_state', '=', 1)
->select();
if(!$business){
if (!$business) {
throw new DbLinkException;
}
return json([
'code' => 200,
'message' => 'SUCCESS',
'data' => $business
]);
}
///获取运营商列表信息
public function getOperator(){
$operator = Db::table('operator')
///获取运营商列表信息
public function getOperator()
{
$operator = Db::table('operator')
->field('operator_id,operator_name,operator_state,pid,create_time')
->where('operator_state','=',1)
->where('operator_state', '=', 1)
->select();
$operators =self::getOperatorTree($operator);
if(!$operators){
$operators = self::getOperatorTree($operator);
if (!$operators) {
throw new DbLinkException;
}
return json([
'code' => 200,
'message' => 'SUCCESS',
......@@ -67,17 +72,18 @@ class BasicInfor
]);
}
///获取需求来源列表信息
public function getSource(){
$source = Db::table('demand_source')
///获取需求来源列表信息
public function getSource()
{
$source = Db::table('demand_source')
->field('sources_id,sources_name,sources_state,create_time')
->where('sources_state','=',1)
->where('sources_state', '=', 1)
->select();
if(!$source){
if (!$source) {
throw new DbLinkException;
}
return json([
'code' => 200,
'message' => 'SUCCESS',
......@@ -86,17 +92,18 @@ class BasicInfor
}
///获取上游客户列表信息
public function getCustomers(){
$customers = Db::table('upstream_customers')
///获取上游客户列表信息
public function getCustomers()
{
$customers = Db::table('upstream_customers')
->field('customers_id,customers_name,customers_state,create_time')
->where('customers_state','=',1)
->where('customers_state', '=', 1)
->select();
if(!$customers){
if (!$customers) {
throw new DbLinkException;
}
return json([
'code' => 200,
'message' => 'SUCCESS',
......@@ -105,130 +112,186 @@ class BasicInfor
}
//获取基站状态列表信息
public function getBasestate(){
$basestate = Db::table('station_statuscate')
//获取基站状态列表信息
public function getBasestate()
{
$basestate = Db::table('station_statuscate')
->field('cate_id,cate_name,pid,state,create_time')
->where('state','=',1)
->where('state', '=', 1)
->order("sort asc")
->select();
$basestates =self::getBasestateTree($basestate);
if(!$basestate){
$basestates = self::getBasestateTree($basestate);
if (!$basestate) {
throw new DbLinkException;
}
return json([
'code' => 200,
'message' => 'SUCCESS',
'data' => $basestates
]);
}
//获取项目数据权限
public function getDataPermission(){
$uid = request()->get('uid');
//查找数据权限规则表
$map=[];
$permission=db::name('permission_data')->field('permission_ids')->where(['s_id'=>$uid])->find();
$arr= json_decode($permission['permission_ids'],true);
if($arr['department_id']){
$department_ids=strpos($arr['department_id'],',');
if($department_ids===false){
$map[]=['department_id','=', $arr['department_id']];
}else{
$map[]=['department_id','in',$arr['department_id']];
//获取项目数据权限
public function getDataPermission()
{
$uid = request()->get('uid');
//查找数据权限规则表
$map = [];
$permission = db::name('permission_data')->field('permission_ids')->where(['s_id' => $uid])->find();
$arr = json_decode($permission['permission_ids'], true);
if ($arr['department_id']) {
$department_ids = strpos($arr['department_id'], ',');
if ($department_ids === false) {
$map[] = ['department_id', 'in', $arr['department_id']];
} else {
$map[] = ['department_id', 'in', $arr['department_id']];
}
}
}
if($arr['region_id']){
$area_ids=strpos($arr['region_id'],',');
if($area_ids===false){
$map[]=['area_id','=', $arr['region_id']];
}else{
$map[]=['area_id','in',$arr['region_id']];
if ($arr['region_id']) {
$area_ids = strpos($arr['region_id'], ',');
if ($area_ids === false) {
$map[] = ['region_id', 'in', $arr['region_id']];
} else {
$map[] = ['region_id', 'in', $arr['region_id']];
}
}
}
if($arr['business_id']){
$business_ids=strpos($arr['business_id'],',');
if($business_ids===false){
$map[]=['business_line_id','=', $arr['business_id']];
}else{
$map[]=['business_line_id','in',$arr['business_id']];
if ($arr['business_id']) {
$business_ids = strpos($arr['business_id'], ',');
if ($business_ids === false) {
$map[] = ['business_line_id', 'in', $arr['business_id']];
} else {
$map[] = ['business_line_id', 'in', $arr['business_id']];
}
}
}
//如果数据规则表不存在数据信息 ,默认返回此用户的部门id
if(!$map){
$staff = db::name('staff')->field('d_id')->where(['id'=>$uid])->find();
if($staff && $staff['d_id']!==0){
$map[]=['department_id','=',$staff['d_id']];
//如果数据规则表不存在数据信息 ,默认返回此用户的部门id
if (!$map) {
$staff = db::name('staff')->field('d_id')->where(['id' => $uid])->find();
if ($staff && $staff['d_id'] !== 0) {
$map[] = ['department_id', '=', $staff['d_id']];
}
}
}
return json([
'code' => 200,
'message' => 'SUCCESS',
'data' => $map
]);
}
static function getBasestateTree($array, $pid =0, $level = 0){
//声明静态数组,避免递归调用时,多次声明导致数组覆盖
static $list = [];
foreach ($array as $key => $value){
//第一次遍历,找到父节点为根节点的节点 也就是pid=0的节点
if ($value['pid'] == $pid){
//父节点为根节点的节点,级别为0,也就是第一级
$value['level'] = $level;
//把数组放到list中
$list[] = $value;
//把这个节点从数组中移除,减少后续递归消耗
unset($array[$key]);
//开始递归,查找父ID为该节点ID的节点,级别则为原级别+1
self::getBasestateTree($array, $value['cate_id'], $level+1);
static function getBasestateTree($array, $pid = 0, $level = 0)
{
//声明静态数组,避免递归调用时,多次声明导致数组覆盖
static $list = [];
foreach ($array as $key => $value) {
//第一次遍历,找到父节点为根节点的节点 也就是pid=0的节点
if ($value['pid'] == $pid) {
//父节点为根节点的节点,级别为0,也就是第一级
$value['level'] = $level;
//把数组放到list中
$list[] = $value;
//把这个节点从数组中移除,减少后续递归消耗
unset($array[$key]);
//开始递归,查找父ID为该节点ID的节点,级别则为原级别+1
self::getBasestateTree($array, $value['cate_id'], $level + 1);
}
}
return $list;
}
return $list;
}
static function getOperatorTree($array, $pid =0, $level = 0){
//声明静态数组,避免递归调用时,多次声明导致数组覆盖
static $list = [];
foreach ($array as $key => $value){
//第一次遍历,找到父节点为根节点的节点 也就是pid=0的节点
if ($value['pid'] == $pid){
//父节点为根节点的节点,级别为0,也就是第一级
$value['level'] = $level;
//把数组放到list中
$list[] = $value;
//把这个节点从数组中移除,减少后续递归消耗
unset($array[$key]);
//开始递归,查找父ID为该节点ID的节点,级别则为原级别+1
self::getOperatorTree($array, $value['operator_id'], $level+1);
static function getOperatorTree($array, $pid = 0, $level = 0)
{
//声明静态数组,避免递归调用时,多次声明导致数组覆盖
static $list = [];
foreach ($array as $key => $value) {
//第一次遍历,找到父节点为根节点的节点 也就是pid=0的节点
if ($value['pid'] == $pid) {
//父节点为根节点的节点,级别为0,也就是第一级
$value['level'] = $level;
//把数组放到list中
$list[] = $value;
//把这个节点从数组中移除,减少后续递归消耗
unset($array[$key]);
//开始递归,查找父ID为该节点ID的节点,级别则为原级别+1
self::getOperatorTree($array, $value['operator_id'], $level + 1);
}
}
return $list;
}
return $list;
}
static function getRegionsTree($array, $pid =0, $level = 0){
//声明静态数组,避免递归调用时,多次声明导致数组覆盖
static $list = [];
foreach ($array as $key => $value){
//第一次遍历,找到父节点为根节点的节点 也就是pid=0的节点
if ($value['pid'] == $pid){
//父节点为根节点的节点,级别为0,也就是第一级
$value['level'] = $level;
//把数组放到list中
$list[] = $value;
//把这个节点从数组中移除,减少后续递归消耗
unset($array[$key]);
//开始递归,查找父ID为该节点ID的节点,级别则为原级别+1
self::getRegionsTree($array, $value['id'], $level+1);
static function getRegionsTree($array, $pid = 0, $level = 0)
{
//声明静态数组,避免递归调用时,多次声明导致数组覆盖
static $list = [];
foreach ($array as $key => $value) {
//第一次遍历,找到父节点为根节点的节点 也就是pid=0的节点
if ($value['pid'] == $pid) {
//父节点为根节点的节点,级别为0,也就是第一级
$value['level'] = $level;
//把数组放到list中
$list[] = $value;
//把这个节点从数组中移除,减少后续递归消耗
unset($array[$key]);
//开始递归,查找父ID为该节点ID的节点,级别则为原级别+1
self::getRegionsTree($array, $value['id'], $level + 1);
}
}
return $list;
}
return $list;
public function getDataPermissionByEmail()
{
$email = request()->get('email');
$staff = db::name('staff')->where(['email'=>$email])->find();
//查找数据权限规则表
$map = [];
$permission = db::name('permission_data')->field('permission_ids')->where(['s_id' => $staff['id']])->find();
$arr = json_decode($permission['permission_ids'], true);
if ($arr['department_id']) {
$department_ids = strpos($arr['department_id'], ',');
if ($department_ids === false) {
$map[] = ['department_id', '=', $arr['department_id']];
} else {
$map[] = ['department_id', 'in', $arr['department_id']];
}
}
if ($arr['region_id']) {
$area_ids = strpos($arr['region_id'], ',');
if ($area_ids === false) {
$map[] = ['region_id', '=', $arr['region_id']];
} else {
$map[] = ['region_id', 'in', $arr['region_id']];
}
}
if ($arr['business_id']) {
$business_ids = strpos($arr['business_id'], ',');
if ($business_ids === false) {
$map[] = ['business_line_id', '=', $arr['business_id']];
} else {
$map[] = ['business_line_id', 'in', $arr['business_id']];
}
}
//如果数据规则表不存在数据信息 ,默认返回此用户的部门id
if (!$map) {
if ($staff && $staff['d_id'] !== 0) {
$map[] = ['department_id', '=', $staff['d_id']];
}
}
return json([
'code' => 200,
'message' => 'SUCCESS',
'data' => $map
]);
}
}
}
\ No newline at end of file
......@@ -37,6 +37,28 @@ class Staff
]);
}
public function getCurrentStaffByEmail(){
$email = request()->get('email');
//如果不是超级管理员
$staff = Db::table('staff')
->field('staff.id,name,email,d_id,iden_id,si.title as iden_name')
->leftJoin(['staff_identity'=>'si'],'si.id = staff.iden_id')
->where('staff.email','=',$email)
->find();
if(!$staff)
throw new StaffIsNotFoundException;
$staff_roles = Db::table('staff_role')->where('staff_id', '=', $staff['id'])->column('role_id');
$staff['roles'] = implode(',',$staff_roles);
return json([
'code' => 200,
'message' => 'ok',
'data' => $staff
]);
}
//获取员工列表信息
public function getStaffs(){
$staffs = Db::table('staff')
......
......@@ -26,6 +26,11 @@ class Assign
return (new Staff)->getCurrentStaff($id);
}
public function getCurrentStaffByEmail($email){
$this->token->check();
return (new Staff)->getCurrentStaffByEmail($email);
}
public function getStaffs(){
$this->token->check();
return (new Staff)->getStaffs();
......@@ -85,5 +90,8 @@ class Assign
$this->token->check();
return (new BasicInfor)->getDataPermission($uid);
}
}
\ No newline at end of file
public function getDataPermissionByEmail($email){
$this->token->check();
return (new BasicInfor)->getDataPermissionByEmail($email);
}
}
<?php
/**
* Created by PhpStorm.
* User: chouchou
* Date: 2021-1-20
* Time: 23:09
*/
namespace app\api\controller\v2\common;
use think\Controller;
use think\Db;
class Contract extends Controller
{
public $pmsdb;
public function initialize()
{
$this->pmsdb = Db::connect([
'type' => config('pms.type'),
'hostname' => config('pms.host'),
'database' => config('pms.dbname'),
'username' => config('pms.dbuser'),
'password' => config('pms.dbpasswd'),
'hostport' => config('pms.dbport'),
'charset' => config('pms.dbcharset'),
]);
}
public function proj(){
$data = request()->get() ?: [];
if(!array_key_exists('key',$data)){
json([
'code' => 201,
'message' => 'request params not found!',
'data' => ''
]);
} else {
$res = (new Payment())->commonCheckKey($data['key']);
}
if ($res !== true) return json([
'code' => 201,
'message' => $res,
'data' => ''
]);
$proj_code = $data['proj_code'];
if (empty($proj_code)) {
return json([
'code' => 202,
'message' => 'Not valid parameter project_code',
]);
}
//查询pms库
$sql = 'SELECT
pp.FIELD_VALUE as htname
FROM
pms_instance_field pp,
pms_field ppf
WHERE
pp.FIELD_ID = ppf.BUSINESS_ID
AND ppf.SPECIAL_TAG = \'contractNumber\'
AND pp.INSTANCE_ID IN (
SELECT
pi.BUSINESS_ID
FROM
pms_instance pi,
pms_instance_field pif,
pms_template t,
pms_field f
WHERE
pi.TEMPLATE_ID = t.BUSINESS_ID
AND pi.BUSINESS_ID = pif.INSTANCE_ID
AND t.DEL_FLAG = 0
AND f.DEL_FLAG = 0
AND t.FLAG = 2
AND f.FLAG = 1
AND t.BUSINESS_ID = f.TEMPLATE_ID
AND f.BUSINESS_ID = pif.FIELD_ID
AND f.SPECIAL_TAG = \'projectNumber\'
AND pif.FIELD_VALUE = \''.$proj_code.'\'
)';
$data = $this->pmsdb->query($sql);
if(!$data || !isset($data[0]) || empty($data[0])) {
return json([
'code' => 201,
'message' => '404',
'data' => '',
]);
}
return json([
'code' => 200,
'message' => 'SUCCESS',
'data' => $data[0],
]);
}
}
\ No newline at end of file
......@@ -14,7 +14,10 @@ use app\em\model\EmInvoice;
use app\em\model\EmPayment;
use app\em\model\EmPaymentFk;
use app\em\model\EmPaymentInvoice;
use app\em\model\EmPaymentInvoiceBalance;
use think\facade\Log;
use think\Db;
class Payment
{
......@@ -41,25 +44,33 @@ class Payment
//更新payment状态
private function update($numb,$status,$mes='')
{
$paymentFk = (new EmPaymentFk())->get(['oafk_numb' => $numb]);
$payment = (new EmPayment())->get(['payment_id' => $paymentFk->payment_id]);
//更新账户余额
$paymentIds = (new EmPaymentFk())->where(['oafk_numb' => $numb])->column('payment_id');
if($payment->account_id != ''){
(new Account())->computerAmountFromPay($payment->account_id,$payment->amount);
$payments = (new EmPayment())->where(['payment_id'=>$paymentIds])->select();
//更新账户余额
$count = 0;
foreach ($payments as $payment){
if($payment->status != $status) {
if($payment->account_id != ''){
(new Account())->computerAmountFromPay($payment->account_id,$payment->amount);
}
$res = (new WriteOff())->writeOffFromPayment($payment->payment_id);
Log::record(date('Y-m-d H:i:s').' OA单号:'.$numb . $res);
$payment->status = $status;
$payment->pay_date = time();
$payment->save();
$count ++ ;
}
}
$res = (new WriteOff())->writeOffFromPayment($payment->payment_id);
$payment->status = $status;
$payment->pay_date = time();
$payment->save();
Log::record(date('Y-m-d H:i:s').' OA单号:'.$numb . $res);
return json([
'code' => 201,
'message' => $res,
'message' => '销账成功 '.$count.' 笔账单已经付款.',
'data' => ''
]);
}
......@@ -77,6 +88,9 @@ class Payment
//删除payment_invoice表
$invoices = (new EmPaymentInvoice())->where('payment_id', '=', $paymentFk->payment_id)->delete();
(new EmPaymentInvoiceBalance())->where('payment_id', '=', $paymentFk->payment_id)->update(['status' => 2]);
//Db::table('em_payment_invoice_balance')->where('payment_id', '=', $payment->payment_id)->update(['status' => 2]);
$message = ' 缴费单: '.$paymentFk->payment_id. '缴费单已作废';
Log::record(date('Y-m-d H:i:s').$message);
return json(
......@@ -85,10 +99,9 @@ class Payment
'message' => $message,
'data' => ''
]);
}
private function checkKey($key)
public function checkKey($key)
{
if (empty($key)) {
return '秘钥不能为空';
......@@ -121,4 +134,4 @@ class Payment
public function commonCheckKey($key){
return $this->checkKey($key);
}
}
\ No newline at end of file
}
......@@ -8,37 +8,37 @@
namespace app\api\controller\v2\common;
use app\api\service\Provider;
use think\Controller;
use think\Db;
use think\facade\Request;
class Project extends Controller
{
public $jzdb;
public $pmsdb;
public function initialize()
{
$this->jzdb = Db::connect([
'type' => config('jz.jztype'),
'hostname' => config('jz.jzhostname'),
'database' => config('jz.jzdatabase'),
'username' => config('jz.jzusername'),
'password' => config('jz.jzpassword'),
'hostport' => config('jz.jzhostport'),
'charset' => config('jz.jzcharset'),
$this->pmsdb = Db::connect([
'type' => config('pms.type'),
'hostname' => config('pms.host'),
'database' => config('pms.dbname'),
'username' => config('pms.dbuser'),
'password' => config('pms.dbpasswd'),
'hostport' => config('pms.dbport'),
'charset' => config('pms.dbcharset'),
]);
}
public function project_list()
{
$data = request()->get() ?: [];
if(!array_key_exists('key',$data)){
if (!array_key_exists('key', $data) && !array_key_exists('token',$data)) {
json([
'code' => 201,
'message' => 'request params not found!',
'data' => ''
]);
} else {
if(!isset($data['key'])) $data['key']= $data['token'];
$res = (new Payment())->commonCheckKey($data['key']);
}
if ($res !== true) return json([
......@@ -46,6 +46,13 @@ class Project extends Controller
'message' => $res,
'data' => ''
]);
}
public function project_list()
{
$data = request()->get() ?: [];
$data['is_projfk'] = isset($data['is_projfk']);
$project_code = $data['project_code'];
if (empty($project_code)) {
return json([
......@@ -54,13 +61,359 @@ class Project extends Controller
]);
}
//查询pms库
$sql = 'SELECT b.STAGE as stage, b.DEPT_ID as jz_cur_dept,a.FIELD_VALUE project_code,a.INSTANCE_ID as instance_id
from pms_instance_field a, pms_instance b
where a.FIELD_VALUE = \'' . $project_code . '\' and b.BUSINESS_ID = a.INSTANCE_ID and a.FIELD_ID=\'5d1ac46313734b62bf0b843aaebd40ed\' and a.DEL_FLAG=0 and b.DEL_FLAG=0 and b.STAGE not like "%需求取消%" and b.STAGE not like "%xuqiuquxiao%"';
$datalist = $this->pmsdb->query($sql);
if ($datalist) {
if ($data['is_projfk'] === false) {
//处理接维部门
if (trim($datalist[0]['stage']) == 'guidang') {
//查找业务ID
$sql = 'SELECT BUSINESS_ID from pms_instance where PARENT_ID = \'' . $datalist[0]['instance_id'] . '\'';
$busiData = $this->pmsdb->query($sql);
if ($busiData) {
$business_id = $busiData[0]['BUSINESS_ID'];
//查找业务对应的接维部门
$sql = 'SELECT a.FIELD_VALUE as dept from pms_instance_field a where FIELD_ID in (\'2da580c7258d420ca929f2bbac3d6e57\',\'cc010b5486044050b027e00765cafed1\') and INSTANCE_ID = \'' . $business_id . '\'';
$dataPmsField = $this->pmsdb->query($sql);
if ($dataPmsField) {
$arr = explode(",", $dataPmsField[0]['dept']);
$str = trim(trim(array_pop($arr), ']]'), '"');
if (is_numeric($str)) $datalist[0]['jz_cur_dept'] = $str;
}
}
}
}
unset($datalist[0]['instance_id']);
return json([
'code' => 200,
'message' => 'SUCCESS',
'data' => $datalist,
]);
} else
return json([
'code' => 201,
'message' => 'ERROR',
'data' => '',
]);
}
//获取项目详情
public function detail()
{
$proj_id = Request::param('proj_id');
$sql = 'SELECT * from pms_instance where BUSINESS_ID = (select INSTANCE_ID from pms_instance_field where DEL_FLAG = 0 and FIELD_ID = \'a6edae6e5e8f48a68728cceda3233e8f\' and FIELD_VALUE = \'' . $proj_id . '\' ORDER BY CREATE_DATE DESC limit 1)';
//二维数据
$pms_fields = $this->pmsdb->query($sql);
$project = [];
if ($pms_fields) {
$sql = 'SELECT * from pms_instance where BUSINESS_ID = \'' . $pms_fields[0]['PARENT_ID'] . '\'';
$pmsIns = $this->pmsdb->query($sql);
$project['proj_id'] = $proj_id; //基站号
$project['dept_id'] = $pmsIns[0]['DEPT_ID']; //维护人员部门ID
$project['region_id'] = $pmsIns[0]['REGION_ID']; //区域
$sql = 'SELECT FIELD_ID as fid,FIELD_VALUE as fval from pms_instance_field where INSTANCE_ID = (select INSTANCE_ID from pms_instance_field where DEL_FLAG = 0 and FIELD_ID = \'a6edae6e5e8f48a68728cceda3233e8f\' and FIELD_VALUE = \'' . $proj_id . '\' ORDER BY CREATE_DATE DESC limit 1) and DEL_FLAG = 0';
$pmsArr = $this->pmsdb->query($sql);
foreach ($pmsArr as $pms) {
if ($pms['fid'] == 'd2cbf1ef1a434d60a0ad0b784e59cc4f') {
$project['up_cust'] = $pms['fval'] ?? '移动'; //查找上游客户
}
if ($pms['fid'] == 'e503865c8188418eb064d91ee3b124ae') {
$project['user_id'] = $pms['fval'] ?? ''; //维护人员ID
}
if ($pms['fid'] == '3d0a79db6e1a4e38b1d6c948fd899f6b') {
$project['address'] = $pms['fval'] ?? '暂无'; //基站地址
}
if($pms['fid'] == 'a6edae6e5e8f48a68728cceda3233e8f') {
$project['base_name'] = $pms['fval'] ?? '';
}
}
return json([
'code' => 200,
'message' => 'success',
'data' => $project
]);
} else {
return json([
'code' => 201,
'message' => 'no data',
'data' => ''
]);
}
}
public function detailAll()
{
$proj_id = Request::param('proj_id');
$sql = 'SELECT b.fname,a.FIELD_VALUE as fvalue
from
pms_instance_field a ,
(SELECT BUSINESS_ID as fid,FIELD_NAME as fname from pms_field where DEL_FLAG = 0 and TEMPLATE_ID = (SELECT BUSINESS_ID from pms_template where DEL_FLAG = 0 and TEMPLATE_NAME = \'移动基站\') and FIELD_NAME not like \'%图%\' and FIELD_NAME not like \'%表%\' and FIELD_NAME not like \'%照片%\') b
where
b.fid = a.FIELD_ID
and
a.INSTANCE_ID = (
SELECT INSTANCE_ID from pms_instance_field where FIELD_VALUE = \'' . $proj_id . '\'
) ';
$project = $this->pmsdb->query($sql);
foreach ($project as &$item){
if($item['fname'] == '接维部门'){
$temp = trim(trim($item['fvalue'],'[['),']]');
$temp = explode(',',$temp);
$deptId = array_pop($temp);
$item['fvalue'] = trim($deptId,'"');
}
if($item['fname'] == '上游客户'){
$item['fvalue'] = '中国移动';
}
}
if ($project) {
return json([
'code' => 200,
'message' => 'success',
'data' => $project
]);
} else {
return json([
'code' => 201,
'message' => 'no data',
'data' => ''
]);
}
}
//获取基站信息
public function info()
{
$proj_code = Request::param('proj_code');
$json = [
'code' => 201,
'message' => 'no data',
'data' => ''
];
//setp1 通过项目编码,找到所属业务instance_id
$sql = 'select INSTANCE_ID from pms_instance_field where DEL_FLAG = 0 and FIELD_VALUE = \'' . $proj_code . '\' ORDER BY CREATE_DATE DESC limit 1';
$res = $this->pmsdb->query($sql);
if (!$res) return json($json);
$projData = $this->parseProj($res[0]['INSTANCE_ID']);
$busiData = $this->parseBusi($res[0]['INSTANCE_ID']);
$projData['proj_code'] = $proj_code;
$data = array_merge($projData, $busiData);
$map[] = ['project_code', '=', $project_code];
$datalist = $this->jzdb->table('jz_message')->field('project_code,jz_cur_dept')->where($map)->select();
return json([
'code' => 200,
'message' => 'SUCCESS',
'data' => $datalist,
'message' => 'success',
'data' => $data
]);
}
}
\ No newline at end of file
//根据接口返回项目数据
public function projects()
{
$condition = Request::param('keyword');
if ($condition == '' || strlen($condition) < 6)
return json([
'code' => 201,
'message' => '请输入更准确的信息',
'data' => ''
]);
$page = 0;
$size = 10000;
$fields = $this->getProjFields();
$subSql = 'select INSTANCE_ID from pms_instance_field where DEL_FLAG = 0 and FIELD_ID in (\'' . $fields[0]['BUSINESS_ID'] . '\',\'' . $fields[1]['BUSINESS_ID'] . '\') and
FIELD_VALUE like \'%' . $condition . '%\'';
$sql = 'select INSTANCE_ID,
max(case FIELD_ID when \'' . $fields[0]['BUSINESS_ID'] . '\' then FIELD_VALUE end) as proj_name,
max(case FIELD_ID when \'' . $fields[1]['BUSINESS_ID'] . '\' then FIELD_VALUE end) as proj_code
from pms_instance_field where FIELD_ID in (\'' . $fields[0]['BUSINESS_ID'] . '\',\'' . $fields[1]['BUSINESS_ID'] . '\')
and INSTANCE_ID in (' . $subSql . ') GROUP BY INSTANCE_ID ORDER BY CREATE_DATE DESC LIMIT ' . $page . ',' . $size;
$res = $this->pmsdb->query($sql);
return json([
'code' => 200,
'message' => 'success',
'data' => $res
]);
}
//通过business_id解析项目名称,区域,部门
public function parseProj($business_id)
{
$sql = 'select * from pms_instance where DEL_FLAG = 0 and BUSINESS_ID = \'' . $business_id . '\'';
$res = $this->pmsdb->query($sql);
$fields = $this->getFields($res[0]['TEMPLATE_ID'], 'projectName');
$data['region_id'] = $res[0]['REGION_ID'];
$data['dept_id'] = $res[0]['DEPT_ID'];
$sql = 'select FIELD_VALUE from pms_instance_field where DEL_FLAG = 0 and FIELD_ID=\'' . $fields[0]['BUSINESS_ID'] . '\' and INSTANCE_ID = \'' . $business_id . '\'';
$res = $this->pmsdb->query($sql);
$data['proj_name'] = $res[0]['FIELD_VALUE'];
return $data;
}
//通过business_id解析基站编码
public function parseBusi($business_id)
{
$sql = 'select * from pms_instance where DEL_FLAG = 0 and PARENT_ID = \'' . $business_id . '\'';
$res = $this->pmsdb->query($sql);
$fields = $this->getFields($res[0]['TEMPLATE_ID'], 'bsId');
$sql = 'select FIELD_VALUE from pms_instance_field where DEL_FLAG = 0 and FIELD_ID=\'' . $fields[0]['BUSINESS_ID'] . '\' and INSTANCE_ID = \'' . $res[0]['BUSINESS_ID'] . '\'';
$res = $this->pmsdb->query($sql);
$data['bs_id'] = $res[0]['FIELD_VALUE'];
return $data;
}
public function getFields($tempate_id, $spec_tags)
{
$sql = 'select BUSINESS_ID from pms_field where DEL_FLAG= 0 and SPECIAL_TAG in (\'' . $spec_tags . '\') and TEMPLATE_ID = \'' . $tempate_id . '\'';
$res = $this->pmsdb->query($sql);
return $res;
}
public function query($table, $condition = 'BUSINESS_ID', $business_id)
{
$sql = 'select * from ' . $table . ' where DEL_FLAG = 0 and ' . $condition . ' = ' . $business_id;
$res = $this->pmsdb->query($sql);
$fields = $this->getFields($res[0]['TEMPLATE_ID'], 'projectName,');
return $fields;
}
public function getProjFields()
{
//如果找的是编码
$sql = 'select * from pms_template where DEL_FLAG=0 and TEMPLATE_NAME="项目管理" order by CREATE_DATE DESC LIMIT 1';
$res = $this->pmsdb->query($sql);
$tag = "'projectName','projectNumber'";
$sql = 'select BUSINESS_ID from pms_field where DEL_FLAG = 0 and TEMPLATE_ID = \'' . $res[0]['BUSINESS_ID'] . '\' and SPECIAL_TAG in (' . $tag . ')';
$res = $this->pmsdb->query($sql);
return $res;
}
public function getProjectsFromApi()
{
if (Request::param('id')) $condtion = Request::param('id');
else $condtion = Request::param('email');
$authority = Provider::Container('Authority');
$authorities = $authority->authorities($condtion);
if ($authorities) {
$sql = 'SELECT concat(b.FIELD_VALUE,"(",a.FIELD_VALUE,")") AS `name`, b.FIELD_VALUE AS value
FROM pms_instance_field a, pms_instance_field b, pms_instance c
WHERE a.INSTANCE_ID = b.INSTANCE_ID and c.BUSINESS_ID = a.INSTANCE_ID AND a.FIELD_ID in
(
SELECT f.BUSINESS_ID FROM pms_template t, pms_field f
WHERE t.TEMPLATE_TYPE = \'project\' AND t.DEL_FLAG = 0 AND t.FLAG = 2 AND t.BUSINESS_ID = f.TEMPLATE_ID AND f.DEL_FLAG = 0 AND f.FIELD_NAME = \'项目名称\'
)
AND b.FIELD_ID in (
SELECT f.BUSINESS_ID
FROM pms_template t, pms_field f
WHERE t.TEMPLATE_TYPE = \'project\' AND t.DEL_FLAG = 0 AND t.FLAG = 2 AND t.BUSINESS_ID = f.TEMPLATE_ID AND f.DEL_FLAG = 0
AND f.FIELD_NAME = \'项目编号\'
)';
// if($authorities['department_id']) $sql .= ' and c.DEPT_ID in ('.$authorities['department_id'].')';
if ($authorities['department_id']) $sql .= ' and (c.DEPT_ID in (' . $authorities['department_id'] . ') or c.stage=\'guidang\')';
if ($authorities['region_id']) $sql .= ' and c.REGION_ID in (' . $authorities['region_id'] . ')';
$res = $this->pmsdb->query($sql);
if (!$res) {
return json([
'code' => 201,
'message' => 'no data',
'data' => []
]);
}
return json([
'code' => 200,
'message' => 'success',
'data' => $res
]);
}
}
public function checkContract()
{
$sql = 'select INSTANCE_ID,FIELD_VALUE from pms_instance_field where FIELD_ID="eab906dc41364f0aa368bd961db455cc" and FIELD_VALUE!="[]"';
$res = $this->pmsdb->query($sql);
$oalink = Db::connect([
'type' => config('pms.type'),
'hostname' => config('pms.host'),
'database' => 'oa',
'username' => 'oa',
'password' => 'ODKc0R35J2x#7Sfp',
'hostport' => config('pms.dbport'),
'charset' => config('pms.dbcharset'),
]);
$ins = '';
$start = 0;
if (Request::param('type') == 1) {
foreach ($res as $re) {
$temp = json_decode($re['FIELD_VALUE'], true);
if (is_array($temp)) {
foreach ($temp as $index => $item) {
$sql = 'select count(1) as num from oa_c_contract where status = 1 and numb = \'' . $item['number'] . '\'';
$result = $oalink->query($sql);
if ($result[0]['num'] !== 1) {
unset($temp[$index]);
$start = 1;
}
}
if ($start === 1) {
if ($temp != '[]') $temp = json_encode(array_values($temp), JSON_UNESCAPED_UNICODE);
$ins .= 'update pms_instance_field set FIELD_VALUE = \'' . $temp . '\' where INSTANCE_ID = \'' . $re['INSTANCE_ID'] . '\';<br>';
$start = 0;
}
}
}
echo $ins;
} else {
foreach ($res as $re) {
$temp = json_decode($re['FIELD_VALUE'], true);
if (is_array($temp)) {
foreach ($temp as $index => $item) {
$sql = 'select `status` as num from oa_c_contract where numb = \'' . $item['number'] . '\'';
$result = $oalink->query($sql);
if (!$result) {
echo $item['number'] . "<span style='color:red'>不存在</span><br>";
}
if (isset($result[0]['num']) && $result[0]['num'] != 1) {
echo $item['number'] . "<span style='color:orange'>合同状态不正常</span><br>";
}
}
}
}
echo $ins;
}
}
}
<?php
namespace app\api\controller\v2\em;
use app\api\controller\v2\common\Payment;
use app\em\controller\Account;
use app\em\controller\WriteOff;
use app\em\model\Em;
use app\em\model\EmCheckBill;
use app\em\model\EmInvoice;
use app\em\model\EmInvoiceUseage;
use app\em\model\Staff;
use app\em\model\UseageDetail;
use app\em\validate\UseageGeneralInfoValidate;
use think\facade\Request;
class Useage
{
public $uid;
public function index()
{
$data = request()->post();
$paymentObj = new Payment();
$res = $paymentObj->checkKey($data['key']);
if ($res !== true) return json([
'code' => 201,
'message' => $res,
'data' => ''
]);
return $this->saveUs();
}
public function saveUs(){
$data = request()->post();
$msg = '';
if(!isset($data['em_id']) || $data['em_id']=='') $msg .= 'em_id不存在';
if(!isset($data['last_date']) || $data['last_date']=='') $msg .= 'last_date不存在';
if(!isset($data['current_date']) || $data['current_date']=='') $msg .= 'current_date不存在';
if(!isset($data['last_numb']) || $data['last_numb']=='') $msg .= 'last_numb不存在';
if(!isset($data['current_numb']) || $data['current_numb']=='') $msg .= 'current_numb不存在';
if(!isset($data['amount']) || $data['amount']=='') $msg .= 'amount不存在';
if(!isset($data['price']) || $data['price']=='') $msg .= 'price不存在';
if(!isset($data['email']) || $data['email']=='') $msg .= 'email不存在';
if($msg!='') if(empty($u)) return json([
'code' => 201,
'message' => $msg,
'data' => ''
]);
$em = Em::with('rule')->find($data['em_id']);
$staff = Staff::where(['email'=>$data['email']])->find();
$uData = [];
$em = Em::get(['em_numb'=>$data['em_id']]);
$uData['em_id'] = $em->id;
$uData['charge_type'] = $em->rule->charge_type;
$uData['pricing_type'] = $em->rule->pricing_type;
$uData['last_date'] = $data['last_date'];
$uData['current_date'] = $data['current_date'];
$uData['last_numb'] = $data['last_numb'];
$uData['current_numb'] = $data['current_numb'];
$uData['repo_numb'] = ($uData['current_numb'] - $uData['last_numb']) * $em->rate;
$uData['amount'] = $data['amount'];
$uData['price'] = $data['price'];
$uData['staff_id'] = $staff->id;
$uData['photo_id'] = 9998;
return $this->store($uData);
}
public function store($data){
$useage_id = isset($data['useage_id']) ? $data['useage_id'] : '';
$action = '新增';
//数据验证
$validate = new UseageGeneralInfoValidate();
//根据计量模式 验证去表单数据
$sence = 's1';
if($data['pricing_type'] == 2){
$sence = 's2';
}
if(!$validate->scene($sence)->check($data)){
return json(['status'=>0,'message'=>$validate->getError()]);
}
//获取电表基本信息
$em = (new \app\em\model\Em)->getEmInfoById(['id'=>$data['em_id']],'rule');
if(empty($useage_id)) {
$uModel = new \app\em\model\Useage();
$uModel->useage_id = $this->getUId();
$uModel->uid = $data['staff_id'];
$uModel->last_sum_numb = $data['last_numb'];
$uModel->last_date = $data['last_date'];
$uModel->em_id = $data['em_id'];
$uModel->amount = isset($data['amount']) ? $data['amount'] : 0;
//峰谷类型
$uModel->type = $data['pricing_type'];
} else {
$this->checkEnd($useage_id);
$action = '修改';
$uModel = (new \app\em\model\Useage())->get(['useage_id' => $useage_id]);
$uModel->status = 1;
}
//更新
$uModel->staff_id = $data['staff_id'];
$uModel->current_date = $data['current_date'];
$uModel->current_sum_numb = $data['current_numb'];
$uModel->photo_id = $data['photo_id'];
//单价
$uModel->price = $data['price'];
$uModel->save(); //保存抄表记录
if(empty($useage_id)){
$udModel = new UseageDetail(); //抄表详情模型
$udModel->useage_id = $uModel->useage_id;
$udModel->type = $data['pricing_type'] == 1 ? 5 : 6;
$udModel->current_numb = $uModel->current_sum_numb;
$udModel->last_numb = $uModel->last_sum_numb;
} else {
$udModel = (new UseageDetail())->get(['useage_id' => $useage_id]); //抄表详情模型
}
$udModel->current_numb = $uModel->current_sum_numb;
$udModel->price = $uModel->price;
$udModel->save();
return json(['status'=>1,'message'=>$action.'抄表记录成功']);
}
public function check(){
$data = request()->post();
$paymentObj = new Payment();
$res = $paymentObj->checkKey($data['key']);
if ($res !== true) return json([
'code' => 201,
'message' => $res,
'data' => ''
]);
$useage_id = $data['useage_id'];
$this->uid = $uid = $data['uid'];
$useage = \app\em\model\Useage::get(['useage_id' => $useage_id]);
if($useage->status == 2) return json(['status'=>0,'message'=>'单据已经审核过,不能再次审核']);
//如果是驳回则记录驳回状态
$checkType = $data['checkType'];
$this->verify($uid,$useage_id,$checkType); //1是通过 2是驳回
if($checkType == 2) {
$res = $this->checkEnd($useage_id);
if($res !== true) return $res;
$useage->status = 3; //3代表被驳回
$useage->save();
return json(['status'=>1,'message'=>'单据已经驳回']);
}
$inv = $this->createInvoice($useage_id);
$useage->status = 2;
$useage->save();
//触发销账逻辑
$result = (new WriteOff())->writeOffFromInvoice($inv->invoice_id);
return json(['status'=>1,'message'=>"已审核,并生成账单,$result"]);
}
//审核
public function verify($uid,$usage_id,$status=2){
(new EmCheckBill)->check(Request::param('refuseInfo'),$uid,Request::controller(),$usage_id,$status);
}
private function getUId(){
$uModel = \app\em\model\Useage::field('id')->order('id desc,create_time desc')->find();
if(!$uModel) $id = 1;
else $id = $uModel->id + 1;
return "CB".date('Ymd').zero($id);
}
private function createInvoice($useage_id){
$um = (new \app\em\model\Useage)->getEmInfoByUseageId($useage_id)->toArray();
return $this->create($um);
}
private function create($um){
/// 如果是普通表 则
if($um['pricing_type'] == 1){
return $this->createInvoiceStdType($um);
} else if($um['pricing_type'] == 2){
return $this->createInvoiceSpecialType($um);
}
}
public function createInvoiceStdType($uData){
$inv = new EmInvoice();
$inv->type = 4;
$inv->rate = $uData['rate'];
$inv->repo_numb = round(($uData['current_sum_numb'] - $uData['last_sum_numb']) * $uData['rate'],3);
if(!$uData['amount']) {
$uData['amount'] =round($inv->repo_numb * $uData['pay_price'],3);
$useage = \app\em\model\Useage::get(['useage_id'=>$uData['useage_id']]);
if($useage) {
$useage->amount = $uData['amount'];
$useage->save();
}
}
$inv->payment_amount = $inv->payment_balance = $uData['amount'];
//结算信息
$inv->settle_amount = $inv->settle_balance = $inv->repo_numb * $uData['settle_price'];
$inv->status = '000';
$inv->invoice_id = $this->getInvoiceId();
//获取账户ID
$inv->account_id = (new Account())->getAccountId($uData['em_id']);
$inv->em_id = $uData['em_id'];
$inv->uid = $this->uid;
//保存 并且更新抄表单与账单关联表
if($inv->save()){
$eiu = new EmInvoiceUseage();
$eiu->invoice_id = $inv->invoice_id;
$eiu->useage_id = $uData['useage_id'];
$eiu->save();
}
//更新电表账户
$useage = \app\em\model\Useage::get(['useage_id' => $uData['useage_id']]);
if($uData['em_type_id'] == 2 || $uData['em_type_id'] == 4){
(new Account())->computerAmountFromInv($useage->em_id,$inv->payment_amount,$inv->invoice_id);
}
return $inv;
}
//峰谷表生成账单
public function createInvoiceSpecialType($uData){
$inv = new EmInvoice();
$inv->type = 1;
$inv->rate = $uData['rate'];
//获取峰谷表抄表明细
$uds = UseageDetail::where(['useage_id'=>$uData['useage_id']])->select()->toArray();
//计算总价信息
//需要计算4个属性 各分段上一次 档次 repo amount
$last_numb = 0;
$curr_numb = 0;
$amount = 0;
$repo_numb = 0;
foreach ($uds as $v){
$last_numb += $v['last_numb'];
$curr_numb += $v['current_numb'];
$amount += (int)($v['current_numb'] - $v['last_numb']) * $v['price'];
$repo_numb += (int)($v['current_numb'] - $v['last_numb']);
}
//曝移动电量
$inv->repo_numb = ($curr_numb - $last_numb) * $uData['rate'];
//缴费信息
$inv->payment_amount = $inv->payment_balance = $uData['amount'];
//结算信息
$inv->settle_amount = $inv->settle_balance = $repo_numb * $uData['rate'] *$uData['settle_price'];
$inv->status = '000';
$inv->invoice_id = $this->getInvoiceId();
$inv->account_id = (new Account())->getAccountId($uData['em_id']);
$inv->em_id = $uData['em_id'];
//更新抄表单的status
$useage = \app\em\model\Useage::get(['useage_id'=>$uData['useage_id']]);
$useage->status = 2;
$useage->save();
$inv->cert_id = $useage->photo_id;
//保存 并且更新抄表单与账单关联表
if($inv->save()){
$eiu = new EmInvoiceUseage();
$eiu->invoice_id = $inv->invoice_id;
$eiu->useage_id = $uData['useage_id'];
$eiu->save();
}
(new Account())->computerAmountFromInv($useage->em_id,$inv->payment_amount,$inv->invoice_id);
return $inv;
}
private function getInvoiceId(){
$inv = EmInvoice::field('id')->order('id desc,create_time desc')->find();
if(!$inv) $id = 1;
else $id = $inv->id + 1;
return "ZD".date('Ymd').zero($id);
}
}
<?php
/**
* 权限服务,用来提供权限查询
* 返回根据条件查询的权限数据
*/
namespace app\api\service;
use think\Db;
class Authority
{
/**
* 返回数据权限json字符串
* @param $param
* @return array|\PDOStatement|string|\think\Model|null
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function authorities($param){
$type = 0;
if(stripos($param,'@')) $type = 1;
$uid = $type === 0 ? $param : $this->parseIdFromEmail($param);
$data = db::name('permission_data')->field('permission_ids')->where(['s_id' => $uid])->find();
if (!$data) {
$staff = db::name('staff')->field('d_id')->where(['id' => $uid])->find();
if ($staff && $staff['d_id'] !== 0) {
$data['permission_ids'] = json_encode(['department_id', 'in', $staff['d_id']]); //返回标准数据格式
}
}
return json_decode($data['permission_ids'],true);
}
//通过email返回用户Id
public function parseIdFromEmail($email){
$staff = Db::name('staff')->field('id')->where('email','=',$email)->find();
return $staff['id'];
}
}
\ No newline at end of file
<?php
/**
* 项目服务
* 1.默认返回所有项目编码 名称 部门 区域
* 2.根据条件返回相关项目列表数据
* 3.根据权限返回相关列表数据
*/
namespace app\api\service;
class Project
{
/**
* @param array $conditions
* @param array $authority
* /**
* 查询项目列表
*/
protected function getProjectsByConditions($conditions = [],$authority = []){
}
/**
* 获取所有项目信息
*/
protected function getAllProjects($conditions = [],$authority = []){
}
/**
* 查询单个项目信息
*/
protected function getProject(){
}
/**
* 解析sql条件
* @param array $conditions
*/
protected function parseConditions($conditions = []){
if(empty($conditions) || !is_array($conditions)) return [];
}
}
\ No newline at end of file
......@@ -70,6 +70,8 @@ function curlGet($url=''){
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_HEADER, 0);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); // 跳过证书检查
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false); // 从证书中检查SSL加密算法是否存在
$tmpInfo = curl_exec($curl); //返回api的json对象
......@@ -79,6 +81,7 @@ function curlGet($url=''){
}
function httpPOST($url , $post_data = array()){
$post_data = http_build_query($post_data);
$headers = array('Content-Type: application/x-www-form-urlencoded');
$curl = curl_init(); // 启动一个CURL会话
curl_setopt($curl, CURLOPT_URL, $url); // 要访问的地址
......@@ -86,8 +89,8 @@ function httpPOST($url , $post_data = array()){
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1); // 使用自动跳转
curl_setopt($curl, CURLOPT_AUTOREFERER, 1); // 自动设置Referer
curl_setopt($curl, CURLOPT_POST, 1); // 发送一个常规的Post请求
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($post_data)); // Post提交的数据包
curl_setopt($curl, CURLOPT_TIMEOUT, 30); // 设置超时限制防止死循环
curl_setopt($curl, CURLOPT_POSTFIELDS, $post_data); // Post提交的数据包
curl_setopt($curl, CURLOPT_TIMEOUT, 300); // 设置超时限制防止死循环
curl_setopt($curl, CURLOPT_HEADER, 0); // 显示返回的Header区域内容
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); // 获取的信息以文件流的形式返回
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
......@@ -358,4 +361,20 @@ function check_ele_permission($path){
}
return false;
}
\ No newline at end of file
}
function getProjUrl($proj_code){
$pmsdb = Db::connect([
'type' => config('pms.type'),
'hostname' => config('pms.host'),
'database' => config('pms.dbname'),
'username' => config('pms.dbuser'),
'password' => config('pms.dbpasswd'),
'hostport' => config('pms.dbport'),
'charset' => config('pms.dbcharset'),
]);
$sql = 'select INSTANCE_ID from pms_instance_field where DEL_FLAG = 0 and FIELD_VALUE = \''.$proj_code.'\'';
$res = $pmsdb->query($sql);
if($res) $link = 'http://jz.gonn.com.cn/page/index.html#/instances/project/list/detail?pId='.$res[0]['INSTANCE_ID'].'&translation=detail';
return $res ? $link : '';
}
<?php
/**
* Created by PhpStorm.
* User: chouchou
* Date: 2021-1-3
* Time: 12:51
*/
namespace app\em\controller;
use app\admin\controller\Base;
use app\admin\model\ElectricMeter;
use app\em\model\EmPayment;
use app\em\model\Staff;
use think\facade\Request;
class Charge extends Base
{
public function index(){
$search_text = Request::get('search_text');
$search_type = Request::get('search_type');
$payment_status = Request::get('payment_status');
$map=[];
//权限检测
if(!$this->user['is_admin']) $map[]= check_data();
if($search_text){
switch ($search_type) {
case '1':
if(strstr($search_text,',')){
$searchArr = explode(',',$search_text);
$map[]=['pay.payment_id','in',$searchArr];
} else {
$map[]=['pay.payment_id','=',"$search_text"];
}
break;
case '2':
$map[]=['epi.invoice_id','like',"%$search_text%"];
break;
case '3':
$map[]=['em.em_numb','like',"%$search_text%"];
break;
case '4':
$map[]=['station.station_name','like',"%$search_text%"];
$this->assign('search_type',$search_type);
break;
}
}
$this->assign('search_type',$search_type ?: '');
$this->assign('search_text',$search_text ?: '');
//缴费状态
if($payment_status != '') $map[]=['pay.status','=',"$payment_status"];
$this->assign('payment_status',$payment_status ?: '');
//区域
$area_id = Request::get('area_id');
if($area_id) $map[] = ['station.area_id','=',$area_id];
$this->assign('area_id',$area_id ?: '');
//创建时间查询条件
$dateStart = strtotime(Request::get('date_start'));
$dateEnd = strtotime(Request::get('date_end'));
//区间查询
if( !empty($dateStart) && !empty($dateEnd) ){
$map[] = ['pay.create_time','between',[$dateStart,$dateEnd]];
$this->assign('date_start',Request::get('date_start'));
$this->assign('date_end',Request::get('date_end'));
} elseif (!empty($dateStart) && empty($dateEnd)){
$map[] = ['pay.create_time','>',$dateStart];
$this->assign('date_start',Request::get('date_start'));
$this->assign('date_end','');
} elseif (empty($dateStart) && !empty($dateEnd)){
$map[] = ['pay.create_time','<',$dateEnd];
$this->assign('date_end',Request::get('date_end'));
$this->assign('date_start','');
}else{
$this->assign('date_start','');
$this->assign('date_end','');
}
$page =Request::param('page')?Request::param('page'):1;
$limit = Request::param('limit')?Request::param('limit'):10;
$region=new ElectricMeter();
$paymentModel = new EmPayment();
$data = $paymentModel->getPaymentList($map,$page,$limit,$where='pay.payment_type in (2,4)');
$PaymentCount = (new EmPayment())->getPaymentCount($map,$where='pay.payment_type in (2,4)');
if(Request::param('page')){
return ['code'=>0,'msg'=>'','count'=>$PaymentCount,'data'=>$data];
}
$this->assign('regions',getTree($region->regions()));
return $this->fetch();
}
public function merge(){
$pids = Request::param('pids');
$pids = str_replace('_',',',$pids);
$payments = (new EmPayment)->getPaymentsByPids($pids);
$paymentCtl = new Payment();
$pidstr = '';
//查看是否已经下推过付款单
foreach ($payments as $payment){
if($paymentCtl->checkFkStatus($payment['payment_id'])) return json(['status'=>0,'message'=>'该缴费单已经创建付款单无法再次创建.']);
$pidstr .= $payment->payment_id .',';
}
//获取当前登录人信息
$staff = new Staff();
if($this->user['is_admin'] == 1){
$staff = $staff->get(['name' => $this->user['name']]);
} else {
$staff = $staff->get($this->uid);
}
$payway = $paymentCtl->getFkInfo(1);
$org = $paymentCtl->getFkInfo(2);
$this->assign('payments',$payments);
$this->assign('payee',$paymentCtl->getGys($staff->email));
$this->assign('org',$org);
$this->assign('date',date('Y-m-d H:i:s'));
$this->assign('payway',$payway);
$this->assign('pids',rtrim($pidstr,','));
return $this->fetch('payment/pay_merge');
}
}
\ No newline at end of file
......@@ -12,6 +12,7 @@ use app\admin\model\ElectricMeterType;
use app\admin\model\OperatorModel;
use app\admin\model\StaffModel;
use app\em\model\Dc;
use app\em\model\EmAccount;
use app\em\model\EmList;
use app\em\model\EmRule;
use app\em\validate\EmAddBaseInfoValidate;
......@@ -81,6 +82,11 @@ class Em extends Base
$emModel = new EmList();
$list = $emModel->getEmList($map,$page,$limit);
foreach ($list as $index => $item){
$list[$index]['projUrl'] = getProjUrl($item['proj_number']);
}
$emCount= $emModel->getEmListCount($map);
if(Request::param('page')){
return ['code'=>0,'msg'=>'','count'=>$emCount,'data'=>$list];
......@@ -163,6 +169,7 @@ class Em extends Base
//保存电表 缴费结算信息 与机房信息
private function storeAll($data){
//保存机房数据
$init_amount = $data['init_amount'];
$dcModel = New Dc();
if($dcModel->save($data)){
$data['dc_id'] = $dcModel->id;
......@@ -175,6 +182,9 @@ class Em extends Base
$emRuleModel = new EmRule();
if($emRuleModel->save($data)){
(new Account())->createAccount($emRuleModel->em_id);
$account = EmAccount::get(['em_id'=>$emRuleModel->em_id]);
$account->amount += $init_amount;
$account->save();
return json(['status'=>1,'message'=>'添加电表成功']);
} else {
$emModel->delete();
......@@ -252,15 +262,15 @@ class Em extends Base
if(!$em || !isset($em->rule)){
return false;
}
if($em->rule->charge_type == 1)
if(!isset($em->rule->settle_price) || empty($em->rule->settle_price) || !isset($em->rule->pay_price) || empty($em->rule->pay_price)){
if($em->rule->charge_type == 1) {
if (!is_numeric($em->rule->pay_price) || !is_numeric($em->rule->settle_price) || $em->rule->pay_price == 0 || $em->rule->settle_price == 0) {
return false;
} else {
return true;
}
}
else {
if(!isset($em->rule->settle_price) || empty($em->rule->settle_price)){
if(!is_numeric($em->rule->settle_price) || $em->rule->settle_price == 0){
return false;
} else {
return true;
......@@ -276,4 +286,4 @@ class Em extends Base
if(!$res) return json(['status'=>0,'msg'=>'电表基本信息不完整,请先补充信息再进行抄表']);
return json(['status'=>1,'message'=>'']);
}
}
\ No newline at end of file
}
......@@ -59,6 +59,11 @@ class Invoice extends Base
$map[]=['em.em_numb','like',"%$search_text%"];
$this->assign('search_type',$search_type);
break;
case '4':
$this->assign('search_text',$search_text);
$map[]=['station.proj_number','like',"%$search_text%"];
$this->assign('search_type',$search_type);
break;
}
}else{
$this->assign('search_type','');
......@@ -117,7 +122,7 @@ class Invoice extends Base
//查看账单信息
public function detail(){
$inv_id = Request::param('id');
$invInfo = (new EmInvoice)->getInvoiceDetail($inv_id);
$this->assign('inv',$invInfo);
return $this->fetch();
......@@ -286,13 +291,12 @@ class Invoice extends Base
$settle_amount = 0;
foreach ($data as $v){
$v->settle_amount = $v->settle_amount ?:0;
$v->payment_amount = is_numeric($v->payment_amount) ? $v->payment_amount : (float)$v->payment_amount;
$payment_amount += $v->payment_amount;
$payment_amount += $v->payment_balance;
$settle_amount += $v->settle_amount;
}
$this->assign('data',$data);
$this->assign('payment_amount',$payment_amount);
$this->assign('settle_amount',$settle_amount);
$this->assign('payment_amount',round($payment_amount,3));
$this->assign('settle_amount',round($settle_amount,3));
return $this->fetch('merge_list');
}
......@@ -429,4 +433,4 @@ class Invoice extends Base
$eModel->delete();
}
}
\ No newline at end of file
}
......@@ -22,7 +22,6 @@ use app\em\validate\AddFkInfoDetailsValidate;
use app\em\validate\AddFkInfoValidate;
use app\em\validate\AddPaymentValidate;
use think\Db;
use think\Exception;
use think\facade\Request;
class Payment extends Base
......@@ -34,6 +33,7 @@ class Payment extends Base
3 => '已付款',
4 => '已付款 缺发票',
5 => '已付款 发票已上传',
6 => '主动作废',
7 => '被驳回',
8 => '已确收',
9 => '审核失败',
......@@ -46,6 +46,7 @@ class Payment extends Base
3 => 'layui-color-green',
4 => 'layui-color-green',
5 => 'layui-color-green',
6 => 'layui-color-gray',
7 => 'layui-color-gray',
8 => 'layui-color-blue',
9 => 'layui-color-cyan',
......@@ -82,7 +83,7 @@ class Payment extends Base
}
break;
case '2':
$map[]=['epi.invoice_id','like',"%$search_text%"];
$map[]=['epib.invoice_id','like',"%$search_text%"];
break;
case '3':
$map[]=['em.em_numb','like',"%$search_text%"];
......@@ -140,98 +141,84 @@ class Payment extends Base
return $this->fetch();
}
//批量生成缴费单
//账单合并生成缴费单
public function createAll(){
$ids = Request::param('ids');
$pids = Request::param('pay_amount');
//总金额
$amount = 0;
//账单编号
$ids = [];
foreach ($pids as $k=>$v){
$ids[] = $k;
$amount += $v;
}
//首先查询这些账单是否具备生成条件
$eiModel = new EmInvoice();
$invs = $eiModel->alias('a')
//查询账单信息
$model = new EmInvoice();
$invs = $model->alias('a')
->field('a.*,b.em_type_id')
->join(['em'=>'b'],'a.em_id = b.id')
->where('a.payment_balance','neq',0)
->where(['a.invoice_id'=>$ids])->order('a.invoice_id asc')->select();
if($invs->isEmpty()) {
$invIds = implode(',',$ids);
return json(['status'=>0,'message'=>'账单号: '.$invIds.' 已缴清,不能重复生成缴费单!']);
}
$rInvs = [];
foreach ($invs as $inv){
if($inv->em_type_id == 2 || $inv->em_type_id ==4){
$rInvs[] = $inv['invoice_id'];
}
$res = $this->checkRepeatSubmit($ids);
if(!empty($res)){
$em_numbs = implode(',',$res['data']);
$msg = '创建缴费单失败,电表号 '.$em_numbs.' 存在在途单据,不能生成新的缴费单';
return json(['status'=>0,'message'=>$msg]);
}
if(!empty($rInvs)){
$rInvsStr = implode(',',$rInvs);
return json(['status'=>0,'message'=>'账单号: '.$rInvsStr.'未充值卡表账单,不能进行合并缴费']);
//验证各种情况
//账单与缴费单关系
//1.如果单据已经缴清,则不能生成
//2.如果已经挂起,则不能生成
//3.充值卡表不能合并账单
$payInvBlanceModel = new EmPaymentInvoiceBalance();
foreach ($invs as $k=>$v){
if($v->payment_balance == 0) return json(['status'=>0,'message'=>'账单号: '.$v->invoice_id.' 已缴清,不能重复生成缴费单!']);
if($v->em_type_id == 2 || $v->em_type_id ==4) return json(['status'=>0,'message'=>'账单号: '.$v->invoice_id.'为充值卡表账单,不能进行合并缴费']);
$payInvBlance = $payInvBlanceModel->get(['invoice_id'=>$v->invoice_id,'status'=>0]);
if($payInvBlance) return json(['status'=>0,'message'=>$payInvBlance->payment_id.' >>>> '.$payInvBlance->invoice_id.'存在未缴费记录,不能创建新的缴费单']);
}
//过滤不可以生成缴费单的账单ID
$idsArr = [];
$amount = 0;
$inv0 = null;
foreach ($invs as $inv){
if($inv0 === null) $inv0 = $inv;
//未生成缴费或已挂起
$amount += $inv->payment_balance;
//是否已挂起
$epiModel = EmPaymentInvoice::field('payment_id')
->where('invoice_id','=',$inv->invoice_id)
->order('create_time desc')->find();
if($epiModel){
//找到关联的缴费单
$payment = EmPayment::where('payment_id','=',$epiModel->payment_id)->find();
if(!$payment) return json(['status'=>0,'message'=>'单据:'.$epiModel->payment_id.'出现异常,单据与账单关系存在,但缴费单不存在!']);
//如果缴费单并未缴费
if($payment->balance > 0){
$message = '账单号: '.$inv->invoice_id.' 已经与缴费单:'.$payment->payment_id.'挂起,无法生成缴费单';
return json(['status'=>0,'message'=>$message]);
} else {
$idsArr[] = $inv->invoice_id;
}
} else {
$idsArr[] = $inv->invoice_id;
}
}
$ids = $idsArr;
//如果没有生成过缴费单,则生成缴费单
//创建账单与缴费单关联关系
//1.创建缴费号
$paymentId = $this->getPaymentId();
//2.将缴费号与账单号写入关联表
$paymentInvoiceArr = [];
//2.构建关联关系数据
$payInvs = $payInvbalances = [];
foreach ($ids as $inv_id){
$paymentInvoiceArr [] = [
$payInvs [] = [
'payment_id' => $paymentId,
'invoice_id' => $inv_id
];
$payInvbalances [] = [
'payment_id' => $paymentId,
'invoice_id' => $inv_id,
'balance' => $pids[$inv_id],
'status' => 0
];
}
$model = new EmPaymentInvoice();
if(!$model->saveAll($paymentInvoiceArr)){
throw new Exception('保存账单与缴费关联数据失败');
};
//填写一个账单信息作为缴费单的默认站名与表名
$inv = EmInvoice::get(['invoice_id'=>$ids[0]]);
$payment = new EmPayment();
//3.将账单数据汇总写入缴费表
$pData = [];
$pData['payment_id'] = $paymentId;
$pData['status'] = 1;
$pData['account_id'] = $inv0->account_id; //占位符,表示空的无效的
$pData['em_id'] = $inv0->em_id; //占位符,表示空的无效的
$pData['payment_type'] = 1;
$pData['balance'] = $pData['amount'] = round($amount,2);
$pData['uid'] = $this->uid;
if((new EmPayment())->save($pData)){
$payment->payment_id = $paymentId;
$payment->status = 1;
$payment->account_id = $inv->account_id; //占位符,表示空的无效的
$payment->em_id = $inv->em_id; //占位符,表示空的无效的
$payment->payment_type = 1;
$payment->amount = $payment->balance = $amount;
$payment->uid = $this->uid;
if($payment->save()){
//保存关联关系
$payInvModel = new EmPaymentInvoice();
if(!$payInvModel->saveAll($payInvs)) return json(['status'=>0,'message'=>'保存账单与缴费关联数据失败!']);
if(!$payInvBlanceModel->saveAll($payInvbalances)) return json(['status'=>0,'message'=>'保存账单与缴费明细数据失败!']);
return json(['status'=>1,'message'=>'已创建缴费单']);
} else {
throw new Exception('创建缴费信息失败');
return json(['status'=>0,'message'=>'创建缴费单失败']);
}
}
......@@ -263,16 +250,16 @@ class Payment extends Base
$payment = $epModel->where('payment_id','=',$payment_id)->find();
if($payment->status > 1 && $payment->status != 7){
$fkModel = EmPaymentFk::get(['payment_id'=>$payment->payment_id]);
$fkModel = EmPaymentFk::order('id desc')->get(['payment_id'=>$payment->payment_id]);
if(!$fkModel) {
$fkModel = new EmPaymentFk();
$fkModel->oafk_numb = '';
$fkModel->link = '';
$fkModel->oafk_id = '';
}
$fkModel->link = config('oafk.base_url').config('oafk.link') . $fkModel->oafk_id;
$fkModel->link = config('admin.link') . $fkModel->oafk_id;
} else if ($payment->status == 7) {
$fkModel = EmCheckBill::get(['mode_id'=>$payment->payment_id]);
$fkModel = EmCheckBill::order('id desc')->get(['mode_id'=>$payment->payment_id]);
$fkModel->oafk_numb = '';
$fkModel->link = '';
} else {
......@@ -287,18 +274,21 @@ class Payment extends Base
$payment->statusTitle = self::PAYMENT_STATUS[$payment->status];
$payment->checkNode = self::PAYMENT_STATUS_CHECK_NODE;
//审核单据按钮权限
$payment->eLePermission = check_ele_permission('payment/checkPayment');
//付款按钮权限
$payment->fkPermission = check_ele_permission('payment/payoa');
$this->assign('payment',$payment);
//查询账单信息
$invs = $epModel->getinvsInfo($payment->payment_id);
$invs = $epModel->getinvsBlanceInfo($payment->payment_id);
$amount = 0;
foreach ($invs as $inv){
if($inv->payment_balance == 0){
$inv->paid_amount = $inv->payment_amount;
} else {
$inv->paid_amount = $inv->payment_amount - $inv->payment_balance;
}
$amount += $inv->payment_balance;
foreach ($invs as $index => $inv){
$amount += $inv->balance;
$invs[$index]['projUrl'] = getProjUrl($inv['proj_number']);
}
$payment->amount = $payment->amount ?: round($amount,2);
......@@ -315,18 +305,20 @@ class Payment extends Base
}
$this->assign('payment_sum_amount',$amount);
//查询凭证信息
$receipts = (new EmPaymentReceipt)->getPaymentReceiptByPaymentId($payment_id);
/* $receipts = (new EmPaymentReceipt)->getPaymentReceiptByPaymentId($payment_id);
if(!$receipts) $receipts = [];
foreach ($receipts as &$receipt){
$receipt->file_src = trim($receipt->file_src,'.');
}
$this->assign('receipts',$receipts);
$this->assign('receipts',$receipts); */
$account = (new EmAccount())->get(['account_id'=>$payment->account_id]);
if($account){
$em = (new \app\em\model\Em())->field('em_type_id')->get(['id'=>$account->em_id]);
$em = (new \app\em\model\Em())->field('em_type_id,em_numb,station_id')->get(['id'=>$account->em_id]);
if($em->em_type_id == 2 || $em->em_type_id == 4){
$station_info =\app\em\model\Station::getBaseInfoById($em->station_id);
$em->station = $station_info;
$this->assign('em',$em);
$this->assign('account',$account);
}
......@@ -334,8 +326,6 @@ class Payment extends Base
$this->assign('em',[]);
$this->assign('account',[]);
}
return $this->fetch();
}
......@@ -395,23 +385,42 @@ class Payment extends Base
* 预交费审核
*/
public function checkPayment(){
$payment_id = Request::param('payment_id');
$payment = EmPayment::get(['payment_id'=>$payment_id]);
if($payment->status !== 0) return json(['status'=>0,'message'=>'单据已经审核过,不能再次审核']);
$payment = EmPayment::get(['payment_id'=>Request::param('payment_id')]);
//如果是驳回则记录驳回状态
$checkType = Request::param('checkType');
(new EmCheckBill)->check(Request::param('refuseInfo'),$this->uid,Request::controller(),$payment_id,$checkType);
$refuseInfo = Request::param('refuseInfo');
$state = Request::param('state');
if($payment->status !== 0 && $checkType !=2) return json(['status'=>0,'message'=>'单据已经审核过,不能再次审核']);
//如果是驳回则记录驳回状态
(new EmCheckBill)->check($refuseInfo,$this->uid,Request::controller(),$payment->payment_id,$checkType);
if($checkType == 2) {
$payment->status = 7; //7代表被驳回
$payment->status = $state; //7代表被驳回
$payment->save();
return json(['status'=>1,'message'=>'单据已经驳回']);
//保存驳回理由
$bill = new EmCheckBill();
$bill->mode_id = $payment->payment_id;
$bill->mode = 'payment';
$bill->uid = $this->uid;
$bill->info = $refuseInfo;
$bill->status = 2;
$bill->save();
//解除关联关系
(new EmPaymentInvoice())->where('payment_id', '=', $payment->payment_id)->delete();
//更新缴费明细为无效
(new EmPaymentInvoiceBalance())->where('payment_id', '=', $payment->payment_id)->update(['status' => 2]);
$resMsg = $state == 6 ? '单据已作废' : '单据已驳回';
return json(['status'=>1,'message'=>$resMsg]);
}
$payment->status = 1;
// $payment->is_check = 1;
$payment->save();
return json(['status'=>1,'message'=>'已审核']);
}
//审核通过开始销账
......@@ -446,7 +455,7 @@ class Payment extends Base
*/
public function payDetail(){
$invoice_id = Request::param('invoice_id');
$eibs = EmPaymentInvoiceBalance::where('invoice_id','=',$invoice_id)
$eibs = EmPaymentInvoiceBalance::where('invoice_id','=',$invoice_id)->where('status','=',1)
->order('payment_id asc')->select();
$this->assign('data',$eibs);
return $this->fetch();
......@@ -467,23 +476,14 @@ class Payment extends Base
if($payment->payment_type == 2 || $payment->payment_type == 4){
$invs[0]['invoice_id'] = '/';
$invs[0]['charge_type'] = "维护电费";
$invs[0]['payment_amount'] = $payment->amount;
$invs[0]['balance'] = $payment->amount;
$invs[0]['proj_number'] = $this->getCbzxIdByEmId($payment->em_id);
} else {
$invs = (new EmPayment())->getinvsInfo($payment_id);
foreach ($invs as $inv){
if($inv->payment_balance == 0){
$inv->paid_amount = $inv->payment_amount;
} else {
$inv->paid_amount = $inv->payment_balance;
}
}
$invs = (new EmPayment())->getinvsBlanceInfo($payment_id);
}
$payway = $this->getFkInfo(1);
$org = $this->getFkInfo(2);
$payway = $this->getFkInfo(1);
$org = $this->getFkInfo(2);
$this->assign('invs',$invs);
$this->assign('payment_id',$payment_id);
$this->assign('payee',$this->getGys($staff->email));
......@@ -497,37 +497,46 @@ $org = $this->getFkInfo(2);
public function docnumb(){
$staff = Staff::get($this->uid);
$dept = DepartmentModel::get($staff->d_id);
$post = Request::post();
$payment = EmPayment::get(['payment_id'=>$post['payment_id']]);
if($this->checkFkStatus($post['payment_id'])) return json(['status'=>0,'message'=>'该缴费单已经创建付款单无法再次创建.']);
if($this->user['is_admin']) $staffName = 'admin';
else $staffName = substr($staff->email,0,strpos($staff->email,'@'));
//普通缴费 非合并充值缴费
//明细
$details = [];
if($payment->payment_type == 2 || $payment->payment_type == 4){
$details[0]['charge_type'] = $post['fkitem'];
$details[0]['amount'] = $payment->amount;
$details[0]['cbzxid'] = $this->getCbzxIdByEmId($payment->em_id);
if(isset($post['payment_id'])){
$payment = EmPayment::get(['payment_id'=>$post['payment_id']]);
if($this->checkFkStatus($post['payment_id'])) return json(['status'=>0,'message'=>'该缴费单已经创建付款单无法再次创建.']);
if($payment->payment_type == 2 || $payment->payment_type == 4){
$details[0]['charge_type'] = $post['fkitem'];
$details[0]['amount'] = $payment->amount;
$details[0]['cbzxid'] = $this->getCbzxIdByEmId($payment->em_id);
$details[0]['payment_id'] = $post['payment_id'];
} else {
$payments = (new EmPayment())->getinvsBlanceInfo($payment->payment_id);
foreach ($payments as $k => $inv){
$details[$k]['charge_type'] = $post['fkitem'];
$details[$k]['amount'] = $inv->balance;
$details[$k]['cbzxid'] = $this->getDetailsFields($inv->account_id);
$details[$k]['invoice_id'] = $inv->invoice_id;
$details[$k]['payment_id'] = $payment->payment_id;
}
}
} else {
$invs = (new EmPayment())->getinvsInfo($payment->payment_id);
foreach ($invs as $k => $inv){
$pids = str_replace('_',',',Request::param('pids'));
$payments = (new EmPayment)->getPaymentsByPids($pids);
foreach ($payments as $k => $payment){
$details[$k]['charge_type'] = $post['fkitem'];
if($inv->payment_balance == 0){
$details[$k]['amount'] = 0;
} else if($inv->payment_amount == $inv->payment_balance){
$details[$k]['amount'] = $inv->payment_amount;
} else {
$details[$k]['amount'] = $inv->payment_balance;
}
$details[$k]['cbzxid'] = $this->getDetailsFields($inv->account_id);
$details[$k]['amount'] = $payment->balance;
$details[$k]['cbzxid'] = $payment->proj_number;
$details[$k]['payment_id'] = $payment->payment_id;
}
}
$staffName = substr($staff->email,0,strpos($staff->email,'@'));
$title = '充值合并缴费';
if( isset($post['payment_id']) && $post['payment_id'] != '') $title = $post['title'].' 缴费单据:'.$post['payment_id'];
$data = [
'title'=>$post['title'] . ' 缴费单据:'.$post['payment_id'],
'title'=>$title,
'uname'=>$staffName,
'payway'=>$post['payway'],
'dept'=>$dept->name,
......@@ -536,7 +545,7 @@ $org = $this->getFkInfo(2);
'info'=>$post['info'],
'cause'=>$post['cause'],
'date'=>$post['date'],
'payment_id' => $payment->payment_id,
'payment_id' => isset($post['pids']) ? $post['pids'] : $post['payment_id'],
'details'=> $details
];
......@@ -560,37 +569,63 @@ $org = $this->getFkInfo(2);
//创建结果
$result = false;
if(!empty($receipt['data'])){
$payment->status = 2;
$payModel = new EmPayment();
$fkModel = new EmPaymentFk();
$fkModel->payment_id = $payment->payment_id;
$fkModel->oafk_id = $receipt['data']['id'];
$fkModel->oafk_numb = $receipt['data']['numb'];
$fkModel->status = 1;
Db::startTrans();
try{
$payment->save();
$fkModel->save();
Db::commit();
$result = true;
} catch (\Exception $e){
$result = false;
Db::rollback();
if(!isset($post['payment_id'])){
$pids = str_replace('_',',',Request::param('pids'));
$payments = $payModel->getPaymentsByPids($pids);
$fkData = [];
foreach ($payments as $k=> $payment) {
$fkData[] = [
'payment_id' => $payment->payment_id,
'oafk_id' => $receipt['data']['id'],
'oafk_numb' => $receipt['data']['numb'],
'status' => 1
];
}
Db::startTrans();
try{
$payModel->where('payment_id','in',$pids)->update(['status'=>2]);
$fkModel->saveAll($fkData);
Db::commit();
$result = true;
} catch (\Exception $e){
$result = false;
Db::rollback();
}
} else {
$payment->status = 2;
$fkModel->payment_id = $payment->payment_id;
$fkModel->oafk_id = $receipt['data']['id'];
$fkModel->oafk_numb = $receipt['data']['numb'];
$fkModel->status = 1;
Db::startTrans();
try{
$payment->save();
$fkModel->save();
Db::commit();
$result = true;
} catch (\Exception $e){
$result = false;
Db::rollback();
}
}
}
if($result) return json(['status'=>1,'message'=>'创建单据成功']);
else return json(['status'=>0,'message'=>'创建单据失败']);
else return json(['status'=>0,'message'=>$receipt['msg']]);
}
public function apiKey(){
return md5(config('oafk.oa_key'));
return md5(config('admin.oa_key'));
}
public function getGys($email)
{
$url = config('oafk.base_url').config('oafk.gys') . $this->apiKey();
$data = ['email'=>$email,'count'=>'all'];
$res = httpPOST($url,$data);
$url = config('admin.oa_url').config('admin.gys') . $this->apiKey().'&email='.$email;
$res = curlGet($url);
$res = json_decode($res,true);
foreach ($res['data'] as $k => $v){
$temp = [];
......@@ -610,18 +645,21 @@ $org = $this->getFkInfo(2);
//获取付款所需信息
public function getFkInfo($type){
$url = config('oafk.base_url').config('oafk.type') . $this->apiKey();
$res = httpPOST($url,['type'=>$type]);
$url = config('admin.oa_url').config('admin.type') . $this->apiKey().'&type='.$type;
$res = curlGet($url);
$res = json_decode($res,true);
return $res['data'];
}
//创建付款编号
public function createFkNumb($data){
$url = config('oafk.base_url').config('oafk.fk') . $this->apiKey();
$data = ['data'=>$data];
$res = httpPOST($url, $data);
$url = config('admin.oa_url').config('admin.fk') . $this->apiKey();
$strdata = http_build_query($data);
//$data = ['data'=>$data];
//$res = httpPOST($url, $data);
$url .= '&'.$strdata;
$res = curlGet($url);
$res = json_decode($res,true);
return $res;
}
......@@ -649,4 +687,35 @@ $org = $this->getFkInfo(2);
$station = \app\station\model\Station::get(['station_id'=>$em->station_id]);
return $station->proj_number;
}
//检查是否存在未缴费缴费单
public function checkRepeatSubmit($ids=[]){
//查询账单信息
$model = new EmInvoice();
$invs = $model->alias('a')
->field('a.em_id,b.em_type_id')
->join(['em'=>'b'],'a.em_id = b.id')
->where(['a.invoice_id'=>$ids])->order('a.invoice_id asc')->select();
//通过epib找到
$emIds = [];
foreach ($invs as $inv) $emIds[] = $inv['em_id'];
$paymentInvoiceBalances = (new EmPaymentInvoiceBalance)->alias('a')
->field('a.invoice_id,a.status,c.em_numb')
->join(['em_invoice'=>'b'],'a.invoice_id=b.invoice_id')
->leftJoin(['em'=>'c'],'c.id=b.em_id')
->where('a.status = 0')
->where(['b.em_id'=>$emIds])
->select();
$res = [];
if(!$paymentInvoiceBalances->isEmpty()){
$res['status'] = true;
$res['data'] = [];
foreach ($paymentInvoiceBalances as $item){
array_push($res['data'],$item['em_numb']);
}
}
return $res;
}
}
......@@ -85,6 +85,10 @@ class Useage extends Base
$limit = Request::param('limit')?Request::param('limit'):10;
$data = (new \app\em\model\Useage)->getCopyList($map,$page,$limit);
foreach ($data as $index => $item){
$list[$index]['projUrl'] = getProjUrl($item['proj_number']);
}
$copyCount = (new \app\em\model\Useage)->getCopyListCount($map);
if(Request::param('page')){
return ['code'=>0,'msg'=>'','count'=>$copyCount,'data'=>$data];
......@@ -143,9 +147,10 @@ class Useage extends Base
}
//保存抄表单
public function store(){
public function store($data = null){
//获取表单数据
$data = Request::post();
if($data === null) $data = Request::post();
$useage_id = isset($data['useage_id']) ? $data['useage_id'] : '';
$action = '新增';
//数据验证
......@@ -269,8 +274,9 @@ class Useage extends Base
} else {
$this->assign('staffs',(new Staff())->getStaffs($user['is_admin']));
}
$useage->price = $useage->pricing_type == 1 ? $useage->pay_price : $useage->price;
//$useage->price = $useage->pricing_type == 1 ? $useage->pay_price : $useage->price;
$useage->price = $useage->price ?: $useage->pay_price;
$useage->repo_numb = round(round($useage->current_sum_numb - $useage->last_sum_numb,2) * $useage->rate,2);
$this->assign('em',$em);
......@@ -305,7 +311,7 @@ class Useage extends Base
//找出电表最后一条数据
$lastModel = (new \app\em\model\Useage())->where('em_id','=',$uModel->em_id)
->order('id desc')->find();
->order('current_date desc')->find();
if($lastModel->status == 2) return json(['status'=>0,'message'=>"单号不是最新的抄表记录且最新的抄表记录已经审核无法操作,请联系管理员"]);
if($uModel->id != $lastModel->id){
return json(['status'=>0,'message'=>"抄表单号不是最新的抄表记录无法操作,请联系管理员"]);
......@@ -318,4 +324,4 @@ class Useage extends Base
$user = Session::get('user');
(new EmCheckBill)->check(Request::param('refuseInfo'),$user['user_id'],Request::controller(),$usage_id,$status);
}
}
\ No newline at end of file
}
<?php
/**
* v2 抄表模块
*/
namespace app\em\controller;
use app\admin\controller\Base;
use app\em\model\Staff;
use app\em\model\Station;
use app\em\model\UseageDetail;
use app\em\validate\UseageGeneralInfoValidate;
use think\facade\Request;
use think\facade\Session;
class Useage extends Base
{
//获取抄表单列表
public function index(){
$map=[];
//权限检测
$user = Session::get('user');
if(!$user['is_admin']){
$permissionData=check_data();
if($permissionData){
$map[]=$permissionData;
}
}
$this->assign('admin',$user['is_admin']);
$search_text = Request::get('search_text');
$search_type = Request::get('search_type');
if($search_text){
switch ($search_type) {
case '1':
$this->assign('search_text',$search_text);
$map[]=['ue.useage_id','like',"%$search_text%"];
$this->assign('search_type',$search_type);
break;
case '2':
$this->assign('search_text',$search_text);
$map[]=['station.station_name','like',"%$search_text%"];
$this->assign('search_type',$search_type);
break;
case '3':
$this->assign('search_text',$search_text);
$map[]=['em.em_numb','like',"%$search_text%"];
$this->assign('search_type',$search_type);
break;
}
}else{
$this->assign('search_type','');
$this->assign('search_text','');
}
//抄表时间查询条件
$dateStart = strtotime(Request::get('date_start'));
$dateEnd = strtotime(Request::get('date_end'));
//区间查询
if( !empty($dateStart) && !empty($dateEnd) ){
$map[] = ['ue.current_date','between',[$dateStart,$dateEnd]];
$this->assign('date_start',Request::get('date_start'));
$this->assign('date_end',Request::get('date_end'));
} elseif (!empty($dateStart) && empty($dateEnd)){
$map[] = ['ue.current_date','>',$dateStart];
$this->assign('date_start',Request::get('date_start'));
$this->assign('date_end','');
} elseif (empty($dateStart) && !empty($dateEnd)){
$map[] = ['ue.current_date','<',$dateEnd];
$this->assign('date_end',Request::get('date_end'));
$this->assign('date_start','');
}else{
$this->assign('date_start','');
$this->assign('date_end','');
}
$page =Request::param('page')?Request::param('page'):1;
$limit = Request::param('limit')?Request::param('limit'):10;
$data = (new \app\em\model\Useage)->getCopyList($map,$page,$limit);
$copyCount = (new \app\em\model\Useage)->getCopyListCount($map);
if(Request::param('page')){
return ['code'=>0,'msg'=>'','count'=>$copyCount,'data'=>$data];
}
return $this->fetch();
}
//生成抄表单
public function create($detail=false){
$em_id = Request::param('id');
if(!(new Em())->checkEmComplete($em_id)){
$this->error('电表信息不完整,需要补充基础信息','/em');
}
$em = (new \app\em\model\Em)->getEmUseageInfoById($em_id,$detail);
//基站信息
$station_info = Station::getBaseInfoById($em->station_id);
$this->assign('station',$station_info);
//当前用户
$user = Session::get('user');
$this->assign('uid',$user['user_id']);
//员工列表
$this->assign('staffs',(new Staff())->getStaffs($user['is_admin'],'','useage'));
$this->assign('em',$em);
if($em->rule->pricing_type == 1){
$template = 'default';
} else {
$template = 'special';
}
$this->assign('detail',$detail);
return $this->fetch($template);
}
//保存抄表单
public function store(){
//获取表单数据
$data = Request::post();
//数据验证
$validate = new UseageGeneralInfoValidate();
//根据计量模式 验证去表单数据
if(!$validate->scene('s'.$data['pricing_type'])->check($data)){
return json(['status'=>0,'message'=>$validate->getError()]);
}
//获取电表基本信息
$em = (new \app\em\model\Em)->getEmInfoById(['id'=>$data['em_id']],'rule');
//保存抄表单
$uModel = new \app\em\model\Useage();
//如果是普通计量模式
if($data['pricing_type'] != 1){
$data['current_sum_numb'] = $data['current_numb'];
$data['last_sum_numb'] = $data['last_numb'];
}
//生成抄表单ID
$data['useage_id'] = $this->getUId();
$uModel->save($data);
//抄表详情更新
$udModel = new UseageDetail(); //抄表详情模型
//如果是普通计量模式
if($data['pricing_type'] == 1){
//添加抄表详情记录
$data['type'] = 5; //保存详情类型 5->default
$udModel->save($data);
//更新主表
$data['type'] = $data['pricing_type']; //保存峰谷信息
$data['last_sum_numb'] = $data['last_numb'];
$data['current_sum_numb'] = $data['current_numb'];
$uModel->save($data);
} else {
$typeArr = [];
$data['last_sum_numb'] = 0;
$data['current_sum_numb'] = 0;
for ($i=0;$i<4;$i++){
$temp = $data;
$last_key = 'uType'.($i+1).'_last_numb';
$curr_key = 'uType'.($i+1).'_current_numb';
$price_key = 'uType'.($i+1).'_price';
//组装峰谷信息
$temp['type'] = $i+1;
$temp['last_numb'] = $data[$last_key];
$temp['current_numb'] = $data[$curr_key];
$temp['price'] = $data[$price_key];
//抄表汇总记录
$data['last_sum_numb'] += $temp['last_numb'];
$data['current_sum_numb'] += $temp['current_numb'];
$typeArr[] = $temp;
}
$udModel->saveAll($typeArr);
//更新主表
$data['type'] = $data['pricing_type']; //保存峰谷信息
$uModel->save($data);
}
return json(['status'=>1,'message'=>'添加抄表记录成功']);
}
/**
* 审核抄表单并生成账单
*/
public function check(){
$useage_id = Request::param('useage_id');
$useage = \app\em\model\Useage::get(['useage_id' => $useage_id]);
if($useage->status == 2) return json(['status'=>0,'message'=>'该抄表单已经生成了账单']);
$inv = (new Invoice())->createInvoice($useage_id);
$useage->status = 2;
$useage->save();
//触发销账逻辑
$result = (new Invoice())->writeOffFromInvoice($inv->invoice_id,$inv->account_id);
return json(['status'=>1,'message'=>"已审核,并生成账单,$result"]);
//return json(['status'=>1,'message'=>"已审核,并生成账单"]);
}
//获取单号
private function getUId(){
$uModel = \app\em\model\Useage::field('id')->order('id desc,create_time desc')->find();
if(!$uModel) $id = 1;
else $id = $uModel->id + 1;
return "CB".date('Ymd').zero($id);
}
/**
* 通过useage_id获取抄表单详情
* 通过useage_id找到电表类型
* 通过电表类型判断是否是峰谷表
* 如果是峰谷表就显示峰谷的详情
* 如果不是峰谷表就显示单条记录
*/
public function detail(){
$uid = Request::param('useage_id');
$useage = (new \app\em\model\Useage)->alias('u')
->field('u.*,em.rate')
->field('emr.pricing_type')
->leftJoin(['em'],'em.id=u.em_id')
->leftJoin(['em_rule'=>'emr'],'emr.em_id=em.id')
->where('u.useage_id','=',$uid)
->find();
$em = (new \app\em\model\Em())->getBaseInfo($useage->em_id);
$user = Session::get('user');
if($useage){
$this->assign('staffs',(new Staff())->getStaffs($user['is_admin'],$useage->staff_id));
} else {
$this->assign('staffs',(new Staff())->getStaffs($user['is_admin']));
}
$useage->repo_numb = round(round($useage->current_sum_numb - $useage->last_sum_numb,2) * $useage->rate,2);
$this->assign('em',$em);
$this->assign('useage',$useage);
//判断是否是峰谷表
if($useage->pricing_type == 2){
//获取峰谷表详情
$useage_detail = (new UseageDetail())->where('useage_id','=',$uid)->select()->toArray();
foreach ($useage_detail as &$ud){
switch ($ud['type']){
case 1:
$ud['typeName'] = '尖峰段';
break;
case 2:
$ud['typeName'] = '峰段';
break;
case 3:
$ud['typeName'] = '谷段';
break;
case 4:
$ud['typeName'] = '平段';
break;
default:
$ud['typeName'] = '普通';
break;
}
}
$this->assign('useage_detail',$useage_detail);
return $this->fetch('detail_special');
} else {
return $this->fetch('detail');
}
}
public function del(){
$uid = Request::param('uid');
$useage = (new \app\em\model\Useage())->get(['useage_id'=>$uid]);
$useage_details = (new UseageDetail())->select(['useage_id'=>$uid]);
if(!$useage){
return json(['status'=>0,'message'=>"删除异常,未找到单据编号,请联系管理员"]);
}
if($useage->delete()){
if(!$useage_details->isEmpty()){
foreach ($useage_details as $k => $v){
unset($useage_details[$k]);
}
}
return json(['status'=>1,'message'=>"删除单据成功"]);
} {
return json(['status'=>0,'message'=>"删除异常,单据删除失败,请联系管理员"]);
}
}
}
\ No newline at end of file
......@@ -11,7 +11,64 @@ use think\facade\Log;
class WriteOff extends Controller
{
//新的预交费销账逻辑 支持部分销账
public function writeOffFromPaymentBalance($payment_id){
Log::info('触发销账:{$payment_id}');
//获取缴费单对象
$payment = EmPayment::where('payment_id','=',$payment_id)->find();
$invBalanceModel = new EmPaymentInvoiceBalance();
$invs = $invBalanceModel->alias('a')->field('a.*')
->join(['em_payment_invoice'=>'b'],'b.invoice_id = a.invoice_id')
->where('b.payment_id','=',$payment_id)
->where('a.balance','neq',0)
->where('a.status','eq',0)
->order('a.invoice_id asc')
->select();
if($invs->isEmpty()) {
if($payment->payment_type == 1 || $payment->payment_type == 3) return '销账异常,没有找到匹配的账单';
}
$result = 0;
foreach ($invs as $inv){
//查询账单信息
$invModel = EmInvoice::get(['invoice_id'=>$inv->invoice_id]);
//更新账单余额
$invModel->payment_balance = $invModel->payment_balance - $inv->balance;
//缴费状态 1默认缴费
$status = 1;
//已缴清
if($invModel->payment_balance == 0) $status = 2;
//更新缴费状态
$invModel->status = setInvoiceStatus($invModel->status,$status,0);
$invModel->save();
//更新缴费单余额
$payment->balance = $payment->balance - $inv->balance;
if($payment->balance == 0) $payment->status = 1;
$payment->save();
//更新缴费明细状态为生效
$inv->status = 1;
$inv->save();
$result ++ ;
}
return '已审核,成功销账 '.$result.' 笔账单.';
}
public function writeOffFromPayment($payment_id){
return $this->writeOffFromPaymentBalance($payment_id);
$invBalanceModel = new EmPaymentInvoiceBalance();
$invBalances = $invBalanceModel->alias('a')->field('a.invoice_id')
->join(['em_payment_invoice'=>'b'],'b.invoice_id = a.invoice_id')
->where('a.payment_id','=',$payment_id)
->where('a.balance','neq',0)
->where('a.status','eq',0)
->order('a.invoice_id asc')
->select();
Log::info('触发销账:{$payment_id}');
//获取缴费单对象
......@@ -74,6 +131,7 @@ class WriteOff extends Controller
->where('invoice_id','=',$invoice_id)->find();
//查询关系表中与当前invoice_id相关联的payment_id
/*
$model = new EmPaymentInvoice;
$payments = $model->alias('epi')->field('epi.payment_id')
->leftJoin(['em_payment'=>'ep'],'epi.payment_id = ep.payment_id')
......@@ -89,7 +147,13 @@ class WriteOff extends Controller
->order('payment_id asc')
->select();
if($payments->isEmpty()) return '没有找到可销账的缴费单!';
}
} */
$payments = EmPayment::field('payment_id')->where('account_id','=',$invoice->account_id)
->where('balance','>',0)
->whereIn('status','3,4,5')
->order('payment_id asc')
->select();
if($payments->isEmpty()) return '没有找到可销账的缴费单!';
$paymentIds = [];
foreach ($payments as $payment){
$paymentIds[] = $payment->payment_id;
......@@ -130,7 +194,7 @@ class WriteOff extends Controller
$balanceMode = new EmPaymentInvoiceBalance();
$balanceMode->payment_id = $payment->payment_id;
$balanceMode->invoice_id = $inv->invoice_id;
$balanceMode->status = 1;
//如果该缴费单可以完全消除当前账单额度
if ($payment->balance >= $inv->payment_balance) {
//单笔销账多少
......@@ -150,7 +214,6 @@ class WriteOff extends Controller
$inv->payment_balance = $inv->payment_balance - $payment->balance;
//缴费额度变化
$payment->balance = 0;
}
//更新账单状态
......
......@@ -6,4 +6,10 @@ use think\Model;
class Base extends Model
{
protected $autoWriteTimestamp = true;
public function getUidAttr($val){
if (empty($val)) return '';
$staff = Staff::field('name as uname')->find($val);
return $staff->uname;
}
}
\ No newline at end of file
......@@ -32,18 +32,18 @@ class EmInvoice extends Base
public function getInvoiceList($map,$Nowpage,$limits){
$data = self::alias('inv')
->field('inv.*')
->field('station.station_name,em.em_numb,em.em_type_id')
->field('eu.last_sum_numb,eu.current_sum_numb,eu.current_date,FROM_UNIXTIME(eu.current_date,"%Y-%m-%d %H:%i:%S") as now_date,eu.em_id')
->join(['em_invoice_useage'=>'eiu'],'eiu.invoice_id = inv.invoice_id')
->join(['em_useage'=>'eu'],'eu.useage_id = eiu.useage_id')
->join(['em_account'=>'ea'],'ea.account_id = inv.account_id')
->join(['em'],'em.id=ea.em_id')
->join(['station_info'=>'station'],'station.station_id=em.station_id')
->field('station.station_name,station.proj_number,em.em_numb,em.em_type_id')
->field('eu.last_sum_numb,eu.current_sum_numb,eu.current_date,FROM_UNIXTIME(eu.current_date,"%Y-%m-%d %H:%i:%S") as now_date,eu.em_id,eu.price')
->leftJoin(['em_invoice_useage'=>'eiu'],'eiu.invoice_id = inv.invoice_id')
->leftJoin(['em_useage'=>'eu'],'eu.useage_id = eiu.useage_id')
->leftJoin(['em'],'em.id=inv.em_id')
->leftJoin(['station_info'=>'station'],'station.station_id=em.station_id')
->where($map)
->page($Nowpage, $limits)
->order('inv.id desc')
->select()
->toarray();
->toArray();
$step = 100000;
......@@ -63,6 +63,7 @@ class EmInvoice extends Base
} else {
$item['sett_amount'] = round($item['settle_amount'] - $item['settle_balance'],3);
}
$item['projUrl'] = getProjUrl($item['proj_number']);
$item['repo_numb'] = ($item['current_sum_numb'] * $step - $item['last_sum_numb'] * $step ) * $item['rate'] / $step;
}
......@@ -100,37 +101,31 @@ class EmInvoice extends Base
//账单详情
public function getInvoiceDetail($id){
//当前账单对象
if(strstr($id,'ZD')){
$inv = self::alias('in')
->field('in.*,r.src')
->leftJoin(['receipt'=>'r'],'r.id = in.cert_id')
->get(['invoice_id'=>$id]);
} else {
$inv = self::alias('in')
->field('in.*,r.src')
->leftJoin(['receipt'=>'r'],'r.id = in.cert_id')
->get($id);
}
$where = null;
if(strstr($id,'ZD')) $where = ['invoice_id'=>$id];
else $where = $id;
$inv = self::alias('in')
->field('in.*,r.src')
->leftJoin(['receipt'=>'r'],'r.id = in.cert_id')
->get($where);
//查询抄表单ID
$eiu = EmInvoiceUseage::where(['invoice_id'=>$inv->invoice_id])->find();
//查询抄表信息
//查询对应抄表单
$uModel = Useage::get(['useage_id'=>$eiu->useage_id]);
if(isset($uModel->cert_id) && $uModel->cert_id != ''){
$useage = Useage::with('photo')->get(['useage_id'=>$eiu->useage_id]);
if($useage->photo_id) {
$receipt = Receipt::get(['id'=>$useage->photo_id]);
if($receipt) $useage['photo'] = $receipt;
}
} else {
$useage = $uModel;
$useage['photo'] = [];
$photo_id = $inv->cert_id ?: $uModel->photo_id;
//如果存在附件ID 则找到附件信息
if($photo_id) {
$receipt = Receipt::get($photo_id) ;
$inv->receipt = $receipt;
}
//获取电表信息
$em = Em::with('rule')->field('id,station_id,em_numb,em_type_id,rate')->where(['id'=>$useage->em_id])->find();
$em = Em::with('rule')->field('id,station_id,em_numb,em_type_id,rate')->where(['id'=>$inv->em_id])->find();
$emr = EmRule::field('charge_type,pay_price,settle_price')->where(['em_id'=>$em->id])->order('id desc,create_time desc')->find();
//电表类型
......@@ -150,80 +145,11 @@ class EmInvoice extends Base
$inv->em = $em;
$inv->em->emr = $emr;
$inv->station = $station;
$inv->useage = $useage;
$inv->useage = $uModel;
$inv->payStatus = getInvoicesStatusName($inv->status,0);
$inv->settleStatus = getInvoicesStatusName($inv->status,1);
//峰谷表
if($inv['type'] != 5){
$ud = UseageDetail::field('*,case type
when 1 then "尖峰段"
when 2 then "峰段"
when 3 then "谷段"
when 4 then "平段"
else "普通" end as typeName
')
->where(['useage_id'=>$useage->useage_id])->select();
$totle = [];
$totle['typeName'] = '汇总';
$totle['rate'] = $inv->rate;
$totle['last_numb'] = $inv->rate;
$totle['price'] = '/';
$totle['status'] = parseStatus($inv->status,1);
$totle['current_numb'] = 0;
$totle['repo_numb'] = 0;
$totle['amount'] = $totle['settle_amount'] = 0;
$totle['settle_price'] = ($inv->em->emr->settle_price?:0) * $inv->em->rate;
$totle['settle_status'] = parseStatus($inv->status,2);
//峰谷表与普通抄表
if($ud) {
foreach ($ud as $u){
$u->rate = $inv->rate;
$u->repo_numb = $u->current_numb - $u->last_numb;
$u->amount = $u->repo_numb * $u->price;
$totle['last_numb'] += $u->last_numb;
$totle['current_numb'] += $u->current_numb;
$totle['repo_numb'] += $u->repo_numb;
$totle['amount'] += $u->amount;
$totle['settle_amount'] += $u->repo_numb*$totle['settle_price'];
if($inv->em->emr->settle_price != ''){
$totle['settle_amount'] = $totle['repo_numb'] * $totle['settle_price'];
}
else{
$totle['settle_amount'] = $inv->settle_amount ?: 0;
}
}
$inv->useage->ud = $ud;
} else { //包年包月
$totle['price'] = $inv->em->emr->price;
$totle['settle_price'] = $inv->em->emr->settle_price;
$totle['last_numb'] = $inv->useage->last_numb;
$totle['current_numb'] = $inv->useage->current_numb;
$totle['repo_numb'] = $totle['current_numb']-$totle['last_numb'];
$totle['amount'] = $totle['repo_numb'] * $totle['price'];
if($inv->em->emr->settle_price != ''){
$totle['settle_amount'] = $totle['repo_numb'] * $totle['settle_price'];
}
else{
$totle['settle_amount'] = $inv->settle_amount ?: 0;
}
}
$inv->useage->totle = $totle;
} else {
$totle = [];
if($inv->em->emr->settle_price != ''){
$totle['settle_amount'] = $inv->em->emr->settle_price * $inv->repo_numb ;
$totle['settle_amount'] = round($totle['settle_amount'],3);
}
else{
$totle['settle_amount'] = 0;
}
}
if($inv->payment_balance == 0){
$inv->paid_amount = $inv->payment_amount;
} else {
......@@ -242,4 +168,4 @@ class EmInvoice extends Base
public function photo(){
return $this->belongsTo('Receipt','cert_id');
}
}
\ No newline at end of file
}
<?php
namespace app\em\model;
class EmInvoice extends Base
{
protected $table = 'em_invoice';
/**
* 首页列表
* @param int $page
* @return \think\Paginator
* @throws \think\exception\DbException
*/
public function getList($page = 0){
$config = !empty($config) ?: [
'list_rows'=>30,
'page'=> $page,
'type' => '\app\extend\PageLayUi',
'var_page' => 'page'
];
$data = self::alias('inv')
->field('inv.*')
->field('station.station_name')
->field('em.em_numb')
->leftJoin(['em_invoice_useage'=>'eiu'],'eiu.invoice_id=inv.invoice_id')
->leftJoin(['em_useage'=>'eu'],'eu.useage_id = eiu.useage_id')
->leftJoin(['em'],'em.id=eu.em_id')
->leftJoin(['station_info'=>'station'],'station.station_id=em.station_id')
->paginate($config);
return $data;
}
//账单查询+search
public function getInvoiceList($map,$Nowpage,$limits){
$data = self::alias('inv')
->field('inv.*')
->field('station.station_name,station.proj_number,em.em_numb,em.em_type_id')
->field('eu.last_sum_numb,eu.current_sum_numb,eu.current_date,FROM_UNIXTIME(eu.current_date,"%Y-%m-%d %H:%i:%S") as now_date,eu.em_id,eu.price')
->join(['em_invoice_useage'=>'eiu'],'eiu.invoice_id = inv.invoice_id')
->join(['em_useage'=>'eu'],'eu.useage_id = eiu.useage_id')
->join(['em_account'=>'ea'],'ea.account_id = inv.account_id')
->join(['em'],'em.id=ea.em_id')
->join(['station_info'=>'station'],'station.station_id=em.station_id')
->where($map)
->page($Nowpage, $limits)
->order('inv.id desc')
->select()
->toArray();
$step = 100000;
foreach ($data as &$item){
if($item['payment_balance'] == 0){
$item['paid_amount'] = $item['payment_amount'] ;
} else {
if(!is_numeric($item['payment_amount']) || !is_numeric($item['payment_balance'])){
$item['payment_amount'] = (float)$item['payment_amount'];
$item['payment_balance'] = (float)$item['payment_balance'];
}
$item['paid_amount'] = round($item['payment_amount'] - $item['payment_balance'],3);
}
if($item['settle_balance'] == 0){
$item['sett_amount'] = $item['settle_amount'] ;
} else {
$item['sett_amount'] = round($item['settle_amount'] - $item['settle_balance'],3);
}
$item['projUrl'] = getProjUrl($item['proj_number']);
$item['repo_numb'] = ($item['current_sum_numb'] * $step - $item['last_sum_numb'] * $step ) * $item['rate'] / $step;
}
return $data;
}
public function getInvoiceCount($map){
$data = self::alias('inv')
->field('inv.*')
->field('station.station_name,em.em_numb')
->field('eu.last_sum_numb,eu.current_sum_numb,eu.current_date')
->join(['em_account'=>'ea'],'ea.account_id = inv.account_id')
->join(['em'],'em.id=ea.em_id')
->join(['em_invoice_useage'=>'eiu'],'eiu.invoice_id = inv.invoice_id')
->join(['em_useage'=>'eu'],'eu.useage_id = eiu.useage_id')
->join(['station_info'=>'station'],'station.station_id=em.station_id')
->where($map)
->count();
return $data;
}
//通过invoice_id查询列表数据
public function getListByInvIds($ids){
$data = self::alias('inv')
->field('inv.*')
->field('station.station_name')
->field('em.em_numb,em.em_type_id')
->join(['em_account'=>'ea'],'ea.account_id = inv.account_id')
->join(['em'],'em.id=ea.em_id')
->join(['station_info'=>'station'],'station.station_id=em.station_id')
->where(['inv.invoice_id'=>$ids])
->whereNotIn('em.em_type_id','2,4')
->where('inv.payment_balance','neq',0)
->select();
return $data;
}
//账单详情
public function getInvoiceDetail($id){
//当前账单对象
$where = null;
if(strstr($id,'ZD')) $where = ['invoice_id'=>$id];
else $where = $id;
$inv = self::alias('in')
->field('in.*,r.src')
->leftJoin(['receipt'=>'r'],'r.id = in.cert_id')
->get($where);
$eiu = EmInvoiceUseage::where(['invoice_id'=>$inv->invoice_id])->find();
//查询对应抄表单
$uModel = Useage::get(['useage_id'=>$eiu->useage_id]);
$photo_id = $inv->cert_id ?: $uModel->photo_id;
//如果存在附件ID 则找到附件信息
if($photo_id) {
$receipt = Receipt::get($photo_id) ;
$inv->receipt = $receipt;
}
//获取电表信息
$em = Em::with('rule')->field('id,station_id,em_numb,em_type_id,rate')->where(['id'=>$inv->em_id])->find();
$emr = EmRule::field('charge_type,pay_price,settle_price')->where(['em_id'=>$em->id])->order('id desc,create_time desc')->find();
//电表类型
$emt = EmType::field('name as typeName')->where(['id'=>$em->em_type_id])->find();
$em->typeName = $emt['typeName'];
if($emr->charge_type == 1){
$em->chargeType = '读表';
} else if($emr->charge_type == 2){
$em->chargeType = '包月';
} else if($emr->charge_type == 3){
$em->chargeType = '包年';
}
//获取基站信息
$station = Station::field('station_name,station_sp_code')->where(['station_id'=>$em->station_id])->find();
//组合
$inv->em = $em;
$inv->em->emr = $emr;
$inv->station = $station;
$inv->useage = $uModel;
$inv->payStatus = getInvoicesStatusName($inv->status,0);
$inv->settleStatus = getInvoicesStatusName($inv->status,1);
if($inv->payment_balance == 0){
$inv->paid_amount = $inv->payment_amount;
} else {
$inv->paid_amount = $inv->payment_amount - $inv->payment_balance;
}
if($inv->settle_balance == 0){
$inv->sett_amount = $inv->settle_amount;
} else {
$inv->sett_amount = $inv->settle_amount - $inv->settle_balance;
}
return $inv;
}
public function photo(){
return $this->belongsTo('Receipt','cert_id');
}
}
<?php
namespace app\em\model;
class EmInvoice extends Base
{
protected $table = 'em_invoice';
/**
* 首页列表
* @param int $page
* @return \think\Paginator
* @throws \think\exception\DbException
*/
public function getList($page = 0){
$config = !empty($config) ?: [
'list_rows'=>30,
'page'=> $page,
'type' => '\app\extend\PageLayUi',
'var_page' => 'page'
];
$data = self::alias('inv')
->field('inv.*')
->field('station.station_name')
->field('em.em_numb')
->leftJoin(['em_invoice_useage'=>'eiu'],'eiu.invoice_id=inv.invoice_id')
->leftJoin(['em_useage'=>'eu'],'eu.useage_id = eiu.useage_id')
->leftJoin(['em'],'em.id=eu.em_id')
->leftJoin(['station_info'=>'station'],'station.station_id=em.station_id')
->paginate($config);
return $data;
}
//账单查询+search
public function getInvoiceList($map,$Nowpage,$limits){
$data = self::alias('inv')
->field('inv.*')
->field('station.station_name,em.em_numb,em.em_type_id')
->field('eu.last_sum_numb,eu.current_sum_numb,eu.current_date,FROM_UNIXTIME(eu.current_date,"%Y-%m-%d %H:%i:%S") as now_date,eu.em_id')
->join(['em_invoice_useage'=>'eiu'],'eiu.invoice_id = inv.invoice_id')
->join(['em_useage'=>'eu'],'eu.useage_id = eiu.useage_id')
->join(['em_account'=>'ea'],'ea.account_id = inv.account_id')
->join(['em'],'em.id=ea.em_id')
->join(['station_info'=>'station'],'station.station_id=em.station_id')
->where($map)
->page($Nowpage, $limits)
->order('inv.id desc')
->select()
->toarray();
$step = 100000;
foreach ($data as &$item){
if($item['payment_balance'] == 0){
$item['paid_amount'] = $item['payment_amount'] ;
} else {
if(!is_numeric($item['payment_amount']) || !is_numeric($item['payment_balance'])){
$item['payment_amount'] = (float)$item['payment_amount'];
$item['payment_balance'] = (float)$item['payment_balance'];
}
$item['paid_amount'] = round($item['payment_amount'] - $item['payment_balance'],3);
}
if($item['settle_balance'] == 0){
$item['sett_amount'] = $item['settle_amount'] ;
} else {
$item['sett_amount'] = round($item['settle_amount'] - $item['settle_balance'],3);
}
$item['repo_numb'] = ($item['current_sum_numb'] * $step - $item['last_sum_numb'] * $step ) * $item['rate'] / $step;
}
return $data;
}
public function getInvoiceCount($map){
$data = self::alias('inv')
->field('inv.*')
->field('station.station_name,em.em_numb')
->field('eu.last_sum_numb,eu.current_sum_numb,eu.current_date')
->join(['em_account'=>'ea'],'ea.account_id = inv.account_id')
->join(['em'],'em.id=ea.em_id')
->join(['em_invoice_useage'=>'eiu'],'eiu.invoice_id = inv.invoice_id')
->join(['em_useage'=>'eu'],'eu.useage_id = eiu.useage_id')
->join(['station_info'=>'station'],'station.station_id=em.station_id')
->where($map)
->count();
return $data;
}
//通过invoice_id查询列表数据
public function getListByInvIds($ids){
$data = self::alias('inv')
->field('inv.*')
->field('station.station_name')
->field('em.em_numb,em.em_type_id')
->join(['em_account'=>'ea'],'ea.account_id = inv.account_id')
->join(['em'],'em.id=ea.em_id')
->join(['station_info'=>'station'],'station.station_id=em.station_id')
->where(['inv.invoice_id'=>$ids])
->whereNotIn('em.em_type_id','2,4')
->where('inv.payment_balance','neq',0)
->select();
return $data;
}
//账单详情
public function getInvoiceDetail($id){
//当前账单对象
if(strstr($id,'ZD')){
$inv = self::alias('in')
->field('in.*,r.src')
->leftJoin(['receipt'=>'r'],'r.id = in.cert_id')
->get(['invoice_id'=>$id]);
} else {
$inv = self::alias('in')
->field('in.*,r.src')
->leftJoin(['receipt'=>'r'],'r.id = in.cert_id')
->get($id);
}
//查询抄表单ID
$eiu = EmInvoiceUseage::where(['invoice_id'=>$inv->invoice_id])->find();
//查询抄表信息
$uModel = Useage::get(['useage_id'=>$eiu->useage_id]);
if(isset($uModel->cert_id) && $uModel->cert_id != ''){
$useage = Useage::with('photo')->get(['useage_id'=>$eiu->useage_id]);
if($useage->photo_id) {
$receipt = Receipt::get(['id'=>$useage->photo_id]);
if($receipt) $useage['photo'] = $receipt;
}
} else {
$useage = $uModel;
$useage['photo'] = [];
}
//获取电表信息
$em = Em::with('rule')->field('id,station_id,em_numb,em_type_id,rate')->where(['id'=>$useage->em_id])->find();
$emr = EmRule::field('charge_type,pay_price,settle_price')->where(['em_id'=>$em->id])->order('id desc,create_time desc')->find();
//电表类型
$emt = EmType::field('name as typeName')->where(['id'=>$em->em_type_id])->find();
$em->typeName = $emt['typeName'];
if($emr->charge_type == 1){
$em->chargeType = '读表';
} else if($emr->charge_type == 2){
$em->chargeType = '包月';
} else if($emr->charge_type == 3){
$em->chargeType = '包年';
}
//获取基站信息
$station = Station::field('station_name,station_sp_code')->where(['station_id'=>$em->station_id])->find();
//组合
$inv->em = $em;
$inv->em->emr = $emr;
$inv->station = $station;
$inv->useage = $useage;
$inv->payStatus = getInvoicesStatusName($inv->status,0);
$inv->settleStatus = getInvoicesStatusName($inv->status,1);
//峰谷表
if($inv['type'] != 5){
$ud = UseageDetail::field('*,case type
when 1 then "尖峰段"
when 2 then "峰段"
when 3 then "谷段"
when 4 then "平段"
else "普通" end as typeName
')
->where(['useage_id'=>$useage->useage_id])->select();
$totle = [];
$totle['typeName'] = '汇总';
$totle['rate'] = $inv->rate;
$totle['last_numb'] = $inv->rate;
$totle['price'] = '/';
$totle['status'] = parseStatus($inv->status,1);
$totle['current_numb'] = 0;
$totle['repo_numb'] = 0;
$totle['amount'] = $totle['settle_amount'] = 0;
$totle['settle_price'] = ($inv->em->emr->settle_price?:0) * $inv->em->rate;
$totle['settle_status'] = parseStatus($inv->status,2);
//峰谷表与普通抄表
if($ud) {
foreach ($ud as $u){
$u->rate = $inv->rate;
$u->repo_numb = $u->current_numb - $u->last_numb;
$u->amount = $u->repo_numb * $u->price;
$totle['last_numb'] += $u->last_numb;
$totle['current_numb'] += $u->current_numb;
$totle['repo_numb'] += $u->repo_numb;
$totle['amount'] += $u->amount;
$totle['settle_amount'] += $u->repo_numb*$totle['settle_price'];
if($inv->em->emr->settle_price != ''){
$totle['settle_amount'] = $totle['repo_numb'] * $totle['settle_price'];
}
else{
$totle['settle_amount'] = $inv->settle_amount ?: 0;
}
}
$inv->useage->ud = $ud;
} else { //包年包月
$totle['price'] = $inv->em->emr->price;
$totle['settle_price'] = $inv->em->emr->settle_price;
$totle['last_numb'] = $inv->useage->last_numb;
$totle['current_numb'] = $inv->useage->current_numb;
$totle['repo_numb'] = $totle['current_numb']-$totle['last_numb'];
$totle['amount'] = $totle['repo_numb'] * $totle['price'];
if($inv->em->emr->settle_price != ''){
$totle['settle_amount'] = $totle['repo_numb'] * $totle['settle_price'];
}
else{
$totle['settle_amount'] = $inv->settle_amount ?: 0;
}
}
$inv->useage->totle = $totle;
} else {
$totle = [];
if($inv->em->emr->settle_price != ''){
$totle['settle_amount'] = $inv->em->emr->settle_price * $inv->repo_numb ;
$totle['settle_amount'] = round($totle['settle_amount'],3);
}
else{
$totle['settle_amount'] = 0;
}
}
if($inv->payment_balance == 0){
$inv->paid_amount = $inv->payment_amount;
} else {
$inv->paid_amount = $inv->payment_amount - $inv->payment_balance;
}
if($inv->settle_balance == 0){
$inv->sett_amount = $inv->settle_amount;
} else {
$inv->sett_amount = $inv->settle_amount - $inv->settle_balance;
}
return $inv;
}
public function photo(){
return $this->belongsTo('Receipt','cert_id');
}
}
\ No newline at end of file
......@@ -21,17 +21,19 @@ class EmPayment extends Base
}
//缴费单+search
public function getPaymentList($map,$Nowpage,$limits){
public function getPaymentList($map,$Nowpage,$limits,$where=''){
if($where == '') $where = 'pay.payment_type in (1,3)';
$data = self::alias('pay')
->field('pay.*')
->field('em.em_numb,r.region_name,station.station_name')
->field('em.em_numb,r.region_name,station.station_name,station.proj_number')
->leftJoin(['em_payment_invoice_balance'=>'epib'],'epib.payment_id=pay.payment_id')
->leftJoin(['em'],'em.id=pay.em_id')
->leftJoin(['station_info'=>'station'],'station.station_id=em.station_id')
->leftJoin(['region'=>'r'],'station.area_id = r.id')
->where($map)
->where($where)
->order('pay.id desc')
->group('pay.payment_id')
->page($Nowpage, $limits)
->select()
->toarray();
......@@ -39,29 +41,42 @@ class EmPayment extends Base
$sortKey = [];
foreach ($data as $k=>$item){
if(($item['payment_type'] == 2 || $item['payment_type'] == 4) && $item['status'] == 1){
$data[$k]['disabled'] = false;
} else {
$data[$k]['disabled'] = true;
}
$data[$k]['projUrl'] = getProjUrl($item['proj_number']);
$data[$k]['state'] = Payment::PAYMENT_STATUS[$item['status']];
$data[$k]['style'] = Payment::PAYMENT_STAUS_STYLE[$item['status']];
$data[$k]['payment_type'] = Payment::PAYMENT_TYPE[$item['payment_type']];
$sortKey[$k] = $item['create_time'];
foreach ($item as $i=>$j){
if($i == 'amount') $data[$k]['amount'] = round($j,2);
}
}
array_multisort($sortKey, SORT_DESC, $data);
return $data;
}
public function getPaymentCount($map){
public function getPaymentCount($map,$where=''){
if($where == '') $where = 'pay.payment_type in (1,3)';
//先找到账单
$data = self::alias('pay')
->field('pay.*')
->field('em.em_numb,r.region_name,station.station_name')
->leftJoin(['em_payment_invoice_balance'=>'epib'],'epib.payment_id=pay.payment_id')
->leftJoin(['em'],'em.id=pay.em_id')
->leftJoin(['station_info'=>'station'],'station.station_id=em.station_id')
->leftJoin(['region'=>'r'],'station.area_id = r.id')
->where($map)
->where($where)
->group('pay.payment_id')
->count();
return $data;
}
//通过缴费单id返回缴费单关联账单信息
public function getinvsInfo($payment_id){
//1.获取所关联账单的账单id,通过账单id查询账单信息
......@@ -69,23 +84,40 @@ class EmPayment extends Base
//降维
$invArr = [];
foreach ($invIdArr as $inv){
$invArr[] = $inv['invoice_id'];
}
foreach ($invIdArr as $inv) $invArr[] = $inv['invoice_id'];
$invModel = new EmInvoice();
$invs = $invModel->alias('inv')
->field('inv.*')
->field('station.station_name,station.proj_number')
->field('station.station_name,station.proj_number,station.area_id,r.region_name')
->field('em.em_numb')
->leftJoin(['em_invoice_useage'=>'eiu'],'eiu.invoice_id=inv.invoice_id')
->leftJoin(['em_useage'=>'eu'],'eu.useage_id = eiu.useage_id')
->leftJoin(['em'],'em.id=eu.em_id')
->leftJoin(['station_info'=>'station'],'station.station_id=em.station_id')
->leftJoin(['region'=>'r'],'r.id=station.area_id')
->where(['inv.invoice_id'=>$invArr])
->select();
return $invs;
}
public function getinvsBlanceInfo($payment_id){
$invModel = new EmPaymentInvoiceBalance();
$invs = $invModel->alias('invB')
->field('invB.*')
->field('ei.account_id,ei.em_id,station.station_name,station.proj_number,station.area_id,r.region_name')
->field('em.em_numb')
->leftJoin(['em_invoice'=>'ei'],'ei.invoice_id=invB.invoice_id')
->leftJoin(['em_invoice_useage'=>'eiu'],'eiu.invoice_id=ei.invoice_id')
->leftJoin(['em_useage'=>'eu'],'eu.useage_id = eiu.useage_id')
->leftJoin(['em'],'em.id=eu.em_id')
->leftJoin(['station_info'=>'station'],'station.station_id=em.station_id')
->leftJoin(['region'=>'r'],'r.id=station.area_id')
->where(['invB.payment_id'=>$payment_id])
->select();
return $invs;
}
//获取所有缴费类型
public static function getAllType(){
$data = EmPaymentType::field('id,title')->select()->toArray();
......@@ -101,4 +133,15 @@ class EmPayment extends Base
}
}
}
}
\ No newline at end of file
public function getPaymentsByPids($pids){
$payments = self::alias('p')
->field('p.payment_id,p.status,p.balance,s.proj_number')
->leftJoin(['em'],'em.id=p.em_id')
->leftJoin(['station_info'=>'s'],'s.station_id=em.station_id')
->where('p.payment_type in (2,4) and p.status = 1')
->whereIn('payment_id',$pids)
->select();
return $payments;
}
}
<?php
/**
* Created by PhpStorm.
* User: chouchou
* Date: 2020-10-29
* Time: 22:33
*/
namespace app\em\model;
class EmStation extends Base
{
protected $connection = 'db_config';
}
\ No newline at end of file
<?php
/**
* v2 账单模块
*/
namespace app\em\controller;
use app\admin\controller\Base;
use app\em\model\EmInvoice;
use app\em\model\EmInvoiceHistory;
use app\em\model\EmInvoiceUseage;
use app\em\model\EmPayment;
use app\em\model\EmPaymentHistory;
use app\em\model\EmPaymentInvoice;
use app\em\model\EmPaymentInvoiceBalance;
use app\em\model\EmSettle;
use app\em\model\EmSettleInvoice;
use app\em\model\EmSettleInvoiceBalance;
use app\em\model\UseageDetail;
use think\facade\Request;
use think\facade\Session;
class Invoice extends Base
{
//账单列表
public function index(){
$map=[];
//权限检测
$user = Session::get('user');
if(!$user['is_admin']){
$permissionData=check_data();
if($permissionData){
$map[]=$permissionData;
}
}
$search_text = Request::get('search_text');
$search_type = Request::get('search_type');
if($search_text){
switch ($search_type) {
case '1':
$this->assign('search_text',$search_text);
$map[]=['inv.invoice_id','like',"%$search_text%"];
$this->assign('search_type',$search_type);
break;
case '2':
$this->assign('search_text',$search_text);
$map[]=['station.station_name','like',"%$search_text%"];
$this->assign('search_type',$search_type);
break;
case '3':
$this->assign('search_text',$search_text);
$map[]=['em.em_numb','like',"%$search_text%"];
$this->assign('search_type',$search_type);
break;
}
}else{
$this->assign('search_type','');
$this->assign('search_text','');
}
$page =Request::param('page')?Request::param('page'):1;
$limit = Request::param('limit')?Request::param('limit'):10;
$data = (new EmInvoice)->getInvoiceList($map,$page,$limit);
foreach ( $data as $key => &$v) {
$v['status']=parseStatus($v['status']);
}
$InvoiceCount = (new EmInvoice)->getInvoiceCount($map);
if(Request::param('page')){
return ['code'=>0,'msg'=>'','count'=>$InvoiceCount,'data'=>$data];
}
return $this->fetch();
// $data = (new EmInvoice)->getList();
//
// $page = $data->render();
//
// $this->assign('data',$data);
// $this->assign('page',$page);
// return $this->fetch();
}
//查看账单信息
public function detail(){
$inv_id = Request::param('id');
$invInfo = (new EmInvoice)->getInvoiceDetail($inv_id);
$this->assign('inv',$invInfo);
return $this->fetch();
}
//创建一个账单
public function createInvoice($useage_id){
$um = (new \app\em\model\Useage)->getEmInfoByUseageId($useage_id)->toArray();
return $this->create($um);
}
//创建账单
public function create($um){
/// 如果是普通表 则
if($um['pricing_type'] == 1){
return $this->createInvoiceStdType($um);
} else if($um['pricing_type'] == 2){
return $this->createInvoiceSpecialType($um);
}
}
/**
* 生成账单号
* @return string
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
private function getInvoiceId(){
$inv = EmInvoice::field('id')->order('id desc,create_time desc')->find();
if(!$inv) $id = 1;
else $id = $inv->id + 1;
return "ZD".date('Ymd').zero($id);
}
//普通读表生成账单
public function createInvoiceStdType($uData){
$inv = new EmInvoice();
$inv->type = 4;
$inv->rate = $uData['rate'];
$inv->repo_numb = ($uData['current_sum_numb'] - $uData['last_sum_numb']) * $uData['rate'];
$inv->payment_amount = $inv->payment_balance = $inv->repo_numb * $uData['pay_price'];
//结算信息
$inv->settle_amount = $inv->settle_balance = $inv->repo_numb * $uData['settle_price'];
$inv->status = '000';
$inv->invoice_id = $this->getInvoiceId();
//获取账户ID
$inv->account_id = (new Account())->getAccountId($uData['em_id']);
//保存 并且更新抄表单与账单关联表
if($inv->save()){
$eiu = new EmInvoiceUseage();
$eiu->invoice_id = $inv->invoice_id;
$eiu->useage_id = $uData['useage_id'];
$eiu->save();
}
//更新电表账户
$useage = \app\em\model\Useage::get(['useage_id' => $uData['useage_id']]);
$account = new Account();
$account->updateAmount($useage->em_id,$inv->payment_amount,0);
return $inv;
}
//峰谷表生成账单
public function createInvoiceSpecialType($uData){
$inv = new EmInvoice();
$inv->type = 1;
$inv->rate = $uData['rate'];
//获取峰谷表抄表明细
$uds = UseageDetail::where(['useage_id'=>$uData['useage_id']])->select()->toArray();
//计算总价信息
//需要计算4个属性 各分段上一次 档次 repo amount
$last_numb = 0;
$curr_numb = 0;
$amount = 0;
$repo_numb = 0;
foreach ($uds as $v){
$last_numb += $v['last_numb'];
$curr_numb += $v['current_numb'];
$amount += (int)($v['current_numb'] - $v['last_numb']) * $v['price'];
$repo_numb += (int)($v['current_numb'] - $v['last_numb']);
}
//曝移动电量
$inv->repo_numb = ($curr_numb - $last_numb) * $uData['rate'];
//缴费信息
$inv->payment_amount = $inv->payment_balance = $amount * $uData['rate'];
//结算信息
$inv->settle_amount = $inv->settle_balance = $repo_numb * $uData['settle_price'];
$inv->status = '000';
$inv->invoice_id = $this->getInvoiceId();
$inv->account_id = (new Account())->getAccountId($uData['em_id']);
//更新抄表单的status
$useage = \app\em\model\Useage::get(['useage_id'=>$uData['useage_id']]);
$useage->status = 2;
$useage->save();
$inv->cert_id = $useage->photo_id;
//保存 并且更新抄表单与账单关联表
if($inv->save()){
$eiu = new EmInvoiceUseage();
$eiu->invoice_id = $inv->invoice_id;
$eiu->useage_id = $uData['useage_id'];
$eiu->save();
}
return $inv;
}
public function updatePayment(){
$data = Request::param();
$inv = EmInvoice::get(['id'=>$data['id']]);
if(!$inv) return json(['status'=>0,'message'=>'不存在抄表单ID,无法更新缴费金额']);
if($data['amount'] > 0 && $inv->is_add_condition != 1){
$inv->payment_amount = $data['amount'];
$inv->payment_balance = $data['amount'];
$inv->is_add_condition = 1;
}
if($inv->save()){
return json(['status'=>1,'message'=>'缴费金额已经更新']);
}
}
//账单合并列表
public function mergeList(){
$ids = Request::param('ids');
$idsArr = [];
if(!empty($ids)){
$idsArr= explode('_',$ids);
}
$data = (new EmInvoice)->getListByInvIds($idsArr);
$payment_amount = 0;
$settle_amount = 0;
foreach ($data as $v){
$v->settle_amount = $v->settle_amount ?:0
$payment_amount += $v->payment_amount;
$settle_amount += $v->settle_amount;
}
$this->assign('data',$data);
$this->assign('payment_amount',$payment_amount);
$this->assign('settle_amount',$settle_amount);
return $this->fetch('merge_list');
}
/**
* 账单触发销账,invoice_id 1:n payment_id
* @param $account_id
* @param $invoice_id
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @return mixed
*/
public function writeOffFromInvoice($invoice_id,$account_id){
$paymentIdsArr = [];
//获取账单对象
$invoice = EmInvoice::field('id,invoice_id,payment_amount,payment_balance')
->where('invoice_id','=',$invoice_id)->find();
//查询关系表中与当前invoice_id相关联的payment_id
$model = new EmPaymentInvoice;
$payments = $model->alias('epi')->field('epi.payment_id')
->leftJoin(['em_payment'=>'ep'],'epi.payment_id = ep.payment_id')
->leftJoin(['em_payment_invoice_balance'=>'epib'],'epib.invoice_id=epi.invoice_id')
->where('epib.balance','>',0)
->where('epi.invoice_id','=',$invoice_id)->select();
//如果没有找到记录 证明并没有形成对应关系
if($payments->isEmpty()) return '账单未缴费';
$paymentIdsArr = $payments->toArray();
//查询可消的额度
$payments_balance = (new EmPayment)->whereIn('payment_id',array_values($paymentIdsArr))->sum('balance');
//如果该账单可以完全被缴费单销账
if($payments_balance < $invoice->payment_balance){
$payments = EmPayment::field('payment_id')->where('account_id','=',$account_id)
->where('balance','neq',0)
->order('payment_id asc')
->select();
if(!$payments->isEmpty())
$paymentIdsArr = array_merge($paymentIdsArr,$payments->toArray());
}
foreach ($paymentIdsArr as $payment){
$paymentIds[] = [
'payment_id' => $payment->payment_id
];
}
$invsIds = [
'invoice_id' => $invoice->invoice_id
];
//开始销账
return $this->writeOff($paymentIds,$invsIds,$account_id);
}
//从缴费单消账单
public function writeOffFromPayment($account_id,$payment_id){
//获取缴费单对象
$payment = EmPayment::where('payment_id','=',$payment_id)->find();
//获取关联的账单对象
$invs = (new EmInvoice())->alias('ei')->field('ei.invoice_id')
->leftJoin(['em_payment_invoice'=>'epi'],'epi.invoice_id = ei.invoice_id')
->where('epi.payment_id','=',$payment_id)
->where('ei.payment_balance','neq',0)
->order('ei.invoice_id asc')
->select();
$invsArr = [];
if(!$invs->isEmpty()) {
foreach ($invs as $inv){
$invsArr[] = $inv->invoice_id;
}
}
//查询可消的额度
$payments_balance = (new EmInvoice)->where('invoice_id','in',$invsArr)->sum('payment_balance');
//如果可以完全销账 则继续销账
if($payment->balance > $payments_balance){
$invs = (new EmInvoice())->field('invoice_id')
->where('account_id','=',$account_id)
->where('payment_balance','neq',0)
->order('invoice_id asc')
->select();
if(!$invs->isEmpty()) {
foreach ($invs as $inv){
$invsArr[] = $inv->invoice_id;
}
}
}
$paymentIds[] = $payment->payment_id;
//处理账户金额
return $this->writeOff($paymentIds,$invsArr);
}
/**
* @param $account_id
* @param $invoiceIds
* @param $paymentIds
* @return mixed
*/
private function writeOff($paymentIds,$invoiceIds){
//获取可销账缴费单
$payments = EmPayment::where('payment_id','in',$paymentIds)->select();
//获取可销账账单
$invs = EmInvoice::where('invoice_id','in',$invoiceIds)->select();
$result = 0;
foreach ($payments as $key => $payment){
if($payment->balance == 0)
continue;
foreach ($invs as $index => $inv) {
$balanceMode = new EmPaymentInvoiceBalance();
$balanceMode->payment_id = $payment->payment_id;
if ($inv->payment_balance == 0)
continue;
$balanceMode->invoice_id = $inv->invoice_id;
//如果该缴费单可以完全消除当前账单额度
if ($payment->balance >= $inv->payment_balance) {
//单笔销账多少
$balanceMode->balance = $inv->payment_balance;
//缴费额度变化
if(($payment->balance - $inv->payment_balance) == 0){
$payment->status = 4;
} else {
$payment->status = 4; //缴费部分销账
}
$payment->balance = $payment->balance - $inv->payment_balance;
//账单额度变化
$inv->payment_balance = 0;
//更新账户status 首字母 = 2
$inv->status = setInvoiceStatus($inv->status, 2);
} else {
//单笔销账多少
$balanceMode->balance = $payment->balance;
//账单额度变化
$inv->status = setInvoiceStatus($inv->status, 1);
$inv->payment_balance = $inv->payment_balance - $payment->balance;
//缴费额度变化
$payment->balance = 0;
$payment->status = 4; //缴费已经完全销账
}
$result++;
//更新账单状态
$inv->save();
//todo::history; 保存历史记录
$invData = $inv->toArray();
$invData['id'] = null;
$invData['create_time'] = strtotime($invData['create_time']);
$invData['update_time'] = strtotime($invData['update_time']);
//EmInvoiceHistory::create($invData);
unset($invs[$index]); //从结果集中去掉无效的数据
//更新状态
$payment->save();
//todo::history;保存历史记录
$payData = $payment->toArray();
$payData['id'] = null;
$payData['create_time'] = strtotime($payData['create_time']);
$payData['update_time'] = strtotime($payData['update_time']);
$payData['pay_date'] = strtotime($payData['pay_date']);
//EmPaymentHistory::create($payData);
unset($payments[$key]);
$balanceMode->isUpdate(false)->save();
}
}
$msg = $result == 0 ? '已审核,没有可销账的账单.' : '已审核,成功销账 '.$result.' 笔账单.';
return $msg;
}
public function writeOffFromSettle($account_id,$settle_id){
//获取缴费单对象
$settle = EmSettle::where('settle_id','=',$settle_id)->find();
//获取关联的账单对象
$invs = (new EmInvoice())->alias('ei')->field('ei.invoice_id')
->leftJoin(['em_settle_invoice'=>'esi'],'esi.invoice_id = ei.invoice_id')
->where('esi.settle_id','=',$settle_id)
->where('ei.settle_balance','neq',0)
->order('ei.invoice_id asc')
->select();
$invsArr = [];
if(!$invs->isEmpty()) {
foreach ($invs as $inv){
$invsArr[] = $inv->invoice_id;
}
}
//查询可消的额度
$settles_balance = (new EmInvoice)->where('invoice_id','in',$invsArr)->sum('settle_balance');
//如果可以完全销账 则继续销账
if($settle->balance > $settles_balance){
$invs = (new EmInvoice())->field('invoice_id')
->where('account_id','=',$account_id)
->where('settle_balance','neq',0)
->order('invoice_id asc')
->select();
if(!$invs->isEmpty()) {
foreach ($invs as $inv){
$invsArr[] = $inv->invoice_id;
}
}
}
$settleIds[] = $settle->settle_id;
//处理账户金额
return $this->writeOffSettle($settleIds,$invsArr);
}
private function writeOffSettle($settleIds,$invoiceIds,$associate = false){
//获取可销账结算单
$settles = EmSettle::where('settle_id','in',$settleIds)->select();
//获取可销账账单
$invs = EmInvoice::where('invoice_id','in',$invoiceIds)->select();
$result = 0;
foreach ($settles as $key => $settle){
if($settle->balance == 0)
continue;
foreach ($invs as $index => $inv) {
$balanceMode = new EmSettleInvoiceBalance();
$balanceMode->settle_id = $settle->settle_id;
if ($inv->settle_balance == 0)
continue;
$balanceMode->invoice_id = $inv->invoice_id;
//如果该结算单可以完全消除当前账单额度
if ($settle->balance >= $inv->settle_balance) {
//单笔销账多少
$balanceMode->balance = $inv->settle_balance;
//结算额度变化
if(($settle->balance - $inv->settle_balance) == 0){
$settle->status = 4;
} else {
$settle->status = 4; //结算部分销账
}
$settle->balance = $settle->balance - $inv->settle_balance;
//账单额度变化
$inv->settle_balance = 0;
//更新账户status 首字母 = 2
$inv->status = setInvoiceStatus($inv->status, 2,1);
} else {
//单笔销账多少
$balanceMode->balance = $settle->balance;
//账单额度变化
$inv->status = setInvoiceStatus($inv->status, 1,1);
$inv->settle_balance = $inv->settle_balance - $settle->balance;
//结算额度变化
$settle->balance = 0;
$settle->status = 3; //结算已经完全销账
}
if($associate == true){
$model = new EmSettleInvoice();
$model->settle_id = $settle->settle_id;
$model->invoice_id = $inv->invoice_id;
$model->save();
}
$result++;
//更新账单状态
$inv->save();
//todo::history; 保存历史记录
$invData = $inv->toArray();
$invData['id'] = null;
$invData['create_time'] = strtotime($invData['create_time']);
$invData['update_time'] = strtotime($invData['update_time']);
//EmInvoiceHistory::create($invData);
unset($invs[$index]); //从结果集中去掉无效的数据
//更新状态
$settle->save();
//todo::history;保存历史记录
$payData = $settle->toArray();
$payData['id'] = null;
$payData['create_time'] = strtotime($payData['create_time']);
$payData['update_time'] = strtotime($payData['update_time']);
$payData['settle_date'] = strtotime($payData['settle_date']);
//EmSettleHistory::create($payData);
unset($settles[$key]);
$balanceMode->isUpdate(false)->save();
}
}
$msg = $result == 0 ? '没有结算成功' : '成功结算: '.$result.'笔';
return $msg;
}
}
\ No newline at end of file
......@@ -41,7 +41,7 @@ class Useage extends Base
$data = self::alias('ue')
->field('ue.*')
->field('station.station_name')
->field('station.station_name,station.proj_number')
->field('em.em_numb,em.rate')
->join(['em'],'em.id=ue.em_id')
->join(['station_info'=>'station'],'station.station_id=em.station_id')
......@@ -58,6 +58,8 @@ class Useage extends Base
$info = (new EmCheckBill())->field('info')->get(['mode_id'=>$v['useage_id']]);
$data[$k]['info'] = $info['info'];
}
$data[$k]['projUrl'] = getProjUrl($v['proj_number']);
}
return $data;
}
......@@ -81,7 +83,8 @@ class Useage extends Base
er.cycle_start_time,er.cycle_amount,er.cycle_finish_time,
er.settle_price,er.settle_type,er.pricing_type
')
->leftJoin(['em'],'em.id=ue.em_id')
->leftJoin(['em_account'=>'ea'],'ea.account_id = ue.account_id')
->leftJoin(['em'],'em.id=ea.em_id')
->leftJoin(['em_rule'=>'er'],'er.em_id=em.id')
->where('ue.status=1 and ue.photo_id!=""')
->select()
......@@ -116,4 +119,4 @@ class Useage extends Base
public function info(){
return $this->HasOne('EmCheckBill','useage_id','useage_id');
}
}
\ No newline at end of file
}
......@@ -7,13 +7,15 @@ class AddFkInfoValidate extends Validate
protected $rule = [
'title' => 'require',
'info' => 'require',
'date' => 'require|date'
'date' => 'require|date',
'info' => 'require|max:200'
];
protected $message = [
'title.require' => '标题不能为空',
'info.require' => '付款信息不能为空,请选择收款方之后自动补充付款信息,如果选择收款方之后付款信息依然为空,则需要通过OA补充收款方的付款信息',
'date.require' => '日期不能为空',
'date.date' => '日期格式不正确'
'date.date' => '日期格式不正确i',
'info.max' => '付款信息只能选择一条,其他付款信息请删除'
];
}
\ No newline at end of file
}
......@@ -29,10 +29,6 @@ class EmAddBaseInfoValidate extends Validate
// 'receive' => 'require',
// 'rent' => 'require',
'dc_remark' => 'max:255',
'contract_numb' => 'require',
'contract_confirm_date' => 'require',
'period' => 'require|max:3',
'protocol_id' => 'require'
......@@ -48,19 +44,16 @@ class EmAddBaseInfoValidate extends Validate
'pay_numb.require' => '请填写缴费号',
'rate.require' => '请填写倍率',
'rate.integer' => '倍率只能填写正整数',
'rate.integer' => '倍率必须是整数',
'rate.max' => '倍率值不合法',
'pricing_type.require' => '请选择计价方式',
'init_numb.require' => '请填写初始读数',
'init_amount.require' => '请填写初始读数',
'init_date.require' => '请填写首次查表日期',
'photo_id.require' => '请上传电表照片',
'staff_id.require' => '请选择业务员',
'charge_type.require' => '请填写计量模式',
'pay_price.require' => '请填写缴费单价',
'pay_cycle.require' => '请填写缴费周期',
......@@ -83,26 +76,29 @@ class EmAddBaseInfoValidate extends Validate
'receive.require' => '请填写实际收款单位',
'rent.require' => '请填写出租单位信息',
'dc_remark.max' => '机房备注信息不能超过80个汉字',
'contract_numb.require' => '请填写合同编号',
];
protected $scene = [
//供电局普通表 需要缴费号 不需要初始余额
's1' => 'station_id,em_type_id,em_numb,pay_numb,rate,pricing_type,init_numb,init_date,photo_id,staff_id,charge_type,
contact,contact_tel,room_position,property_position,receive,rent,dc_remark,
contract_numb',
contact,contact_tel,room_position,property_position,receive,rent,dc_remark',
//供电局插卡表 需要缴费号 需要初始余额
's2' => 'station_id,em_type_id,em_numb,pay_numb,rate,pricing_type,init_numb,init_amount,init_date,photo_id,staff_id,charge_type,contact,contact_tel,room_position,property_position,receive,rent,dc_remark,
contract_numb',
's2' => 'station_id,em_type_id,em_numb,pay_numb,rate,pricing_type,init_numb,init_amount,init_date,photo_id,
staff_id,charge_type,contact,contact_tel,room_position,property_position,receive,rent,dc_remark',
//非供电局普通表 不需要缴费号 不需要初始余额
's3' => 'station_id,em_type_id,em_numb,rate,pricing_type,init_numb,init_date,photo_id,staff_id,charge_type,
contact,contact_tel,room_position,property_position,receive,rent,dc_remark,
contract_numb',
contact,contact_tel,room_position,property_position,receive,rent,dc_remark',
//非供电局插卡表 不需要缴费号 需要初始余额
's4' => 'station_id,em_type_id,em_numb,rate,pricing_type,init_numb,init_amount,init_date,photo_id,staff_id,charge_type,
contact,contact_tel,room_position,property_position,receive,rent,dc_remark,
contract_numb'
contact,contact_tel,room_position,property_position,receive,rent,dc_remark'
];
}
\ No newline at end of file
protected function isRate($value,$rule,$data=[]){
$pattern = '/^\d+\.?\d*$/';
if(preg_match($pattern, $value)){
return true;
} else {
return '倍率只能填写数字或小数';
}
}
}
<?php
namespace app\em\validate;
use think\Validate;
use app\em\model\Useage;
class UseageGeneralInfoValidate extends Validate
{
......@@ -37,7 +38,11 @@ class UseageGeneralInfoValidate extends Validate
protected function checkDate($value,$rule,$data=[]){
$curr = strtotime($value);
$last = strtotime($data['last_date']);
$useage = Useage::where('em_id','=',$data['em_id'])->order('id desc')->find();
if($useage){
if($useage->current_date >= $value) return '本次抄表日期必须大于上次抄表日期';
}
return $curr > $last ? true : '本次抄表日期必须大于上次抄表日期';
}
......@@ -48,5 +53,4 @@ class UseageGeneralInfoValidate extends Validate
protected function checkAmount($value,$rule,$data=[]){
return $value > 0 ? true : '实缴电费未填写';
}
}
\ No newline at end of file
}
......@@ -493,6 +493,8 @@
</div>
</div>
</div>
<!--
<div class="layui-form-box">
<div class="layui-form-head">
<div class="layui-form-item">
......@@ -517,6 +519,8 @@
</div>
</div>
</div>
-->
<div class="layui-form-item text-center">
<button class="layui-btn" lay-filter="add" lay-submit="">
保存
......
......@@ -59,12 +59,12 @@
<table class="layui-table" lay-data="{ url:'/em', page:true, id:'idTest',where:{search_type:document.getElementById('search_type').value,search_text:document.getElementById('search_text').value,operator:document.getElementById('operator').value,area_id:document.getElementById('area_id').value} }">
<thead>
<tr>
<th lay-data="{templet: '#em_numb'}">电表识别号</th>
<th lay-data="{field:'station_sp_code'}" >电表所属基站号</th>
<th lay-data="{field:'station_name'}">电表所属站名</th>
<th lay-data="{templet: '#station_name'}">站名</th>
<th lay-data="{templet: '#proj_number'}">项目编码</th>
<th lay-data="{field:'station_sp_code'}" >站号</th>
<th lay-data="{templet: '#em_numb'}">电表号</th>
<th lay-data="{field:'region_name',sort: true} ">区域</th>
<th lay-data="{field:'operator_name',sort: true}">运营商</th>
<th lay-data="{field:'proj_number'}">项目编号</th>
<th lay-data="{templet: '#account'}">插卡表余额</th>
<th lay-data="{field:'create_time',sort: true}">创建时间</th>
<th lay-data="{fixed: 'right', width:'180', align:'center', toolbar: '#barDemo'}">操作</th>
......@@ -79,6 +79,12 @@
</div>
</div>
</body>
<script type="text/html" id="station_name">
<a class="layui-link" onclick="xadmin.add_tab('{{d.station_name}}','{{d.projUrl}}',true,true)">{{d.station_name}}</a>
</script>
<script type="text/html" id="proj_number">
<a class="layui-link" onclick="xadmin.add_tab('{{d.station_name}}','{{d.projUrl}}',true,true)">{{d.proj_number}}</a>
</script>
<script type="text/html" id="em_numb">
<a class="layui-link" href="/em_edit/{{d.id}}">{{d.em_numb}}</a>
</script>
......
......@@ -65,6 +65,7 @@
<form class="layui-form">
<input type="hidden" name="em_id" value="{$info.id}">
<input type="hidden" name="emt" id="emt" value="{$info.em_type_id}">
<!--新增电表信息-->
<div class="layui-form-box">
<input type="hidden" name="station_id" value='{$station.station_id}'>
......@@ -502,6 +503,7 @@
</div>
</div>
</div>
<!--
<div class="layui-form-box">
<div class="layui-form-head">
<div class="layui-form-item">
......@@ -526,6 +528,7 @@
</div>
</div>
</div>
-->
<div class="layui-form-item text-center">
{if isset($info.edit)}
<button class="layui-btn" lay-filter="add" lay-submit="">
......@@ -618,6 +621,15 @@
return false;
});
var eMt = $('#emt').val();
console.log(eMt)
if(eMt == 1 || eMt == 3)
$('#init_amount').parents('.layui-col-md5').addClass('layui-hide');
else
$('#init_amount').parents('.layui-col-md5').removeClass('layui-hide');
//供电局表字段隐藏
form.on('select(change)', function (data) {
//类型与字段隐藏
......
......@@ -6,10 +6,12 @@
<form class="layui-form">
<div class="layui-form-box">
<div class="layui-form-head">
<div class="layui-form-item">
<label class="layui-form-label">
基本信息
</label>
<div class="layui-col-md10">
<div class="layui-form-item">
<label class="layui-form-label">
基本信息
</label>
</div>
</div>
</div>
<div class="layui-form-body">
......@@ -71,12 +73,6 @@
<label class="layui-form-label">
账单信息
</label>
<!-- <div class="layui-pay-model">
<label class="layui-form-label">
缴费模式 :
</label>
<span>{$inv.em.chargeType}</span>
</div> -->
</div>
</div>
</div>
......@@ -93,6 +89,28 @@
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
倍率
</label>
<div class="layui-input-inline">
<input type="text"
class="layui-input" value="{$inv.rate}" disabled="disabled">
</div>
</div>
</div>
<!--<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
创建人
</label>
<div class="layui-input-inline">
<input type="text" id="uid" name="uid"
autocomplete="off" class="layui-input" value="{$inv.uid}" disabled="disabled">
</div>
</div>
</div> -->
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
......@@ -115,17 +133,72 @@
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
上次抄表度数
</label>
<div class="layui-input-inline">
<input type="text"
autocomplete="off" class="layui-input" value="{$inv.useage.last_sum_numb}" disabled="disabled">
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
本次抄表度数
</label>
<div class="layui-input-inline">
<input type="text"
autocomplete="off" class="layui-input" value="{$inv.useage.current_sum_numb}" disabled="disabled">
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
缴费单价
</label>
<div class="layui-input-inline">
<input type="text"
autocomplete="off" class="layui-input" value="{$inv.useage.price ?: $inv.em.emr.pay_price}" disabled="disabled">
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
结算单价
</label>
<div class="layui-input-inline">
<input type="text"
autocomplete="off" class="layui-input" value="{$inv.em.emr.settle_price ?: ''}" disabled="disabled">
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
用电量
</label>
<div class="layui-input-inline">
<input type="text"
autocomplete="off" class="layui-input" value="{$inv.repo_numb}" disabled="disabled">
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
<span class="x-red">*</span>抄表单照片
</label>
<div class="layui-input-inline">
{if !isset($inv.useage.photo.src) }
{if !isset($inv.receipt.src) }
<input type="text"
autocomplete="off" class="layui-input layui-no-border" value="未上传抄表照片" disabled="disabled">
{else /}
<a href="{$inv.useage.photo.src}" class='layui-btn' target="_blank" >
<a href="{$inv.receipt.src}" class='layui-btn' target="_blank" >
<i class="layui-icon">&#xe64a;</i>预览
</a>
{/if}
......@@ -162,12 +235,9 @@
</label>
<div class="layui-input-inline">
<input type="text" id="settle_amount" name="settle_amount" autocomplete="off" class="layui-input" value="{$inv.settle_amount|round=3}" disabled="disabled">
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
......@@ -205,44 +275,17 @@
</div>
</div>
</div>
<div class="layui-col-md10" style="padding:0 130px 0 30px;margin-bottom: 20px;">
<table class="layui-table layui-form">
<thead>
<tr>
<th>阶段</th>
<th>上期表数</th>
<th>本期表数</th>
<th>单价</th>
<th>倍率</th>
<th>报运营商电量</th>
</thead>
<tbody>
{volist name="inv.useage.ud" id="item"}
<tr>
<td>{$item.typeName}</td>
<td>{$item.last_numb}</td>
<td>{$item.current_numb}</td>
<td>{$item.price ?: $inv.em.rule.pay_price}</td>
<td>{$item.rate}</td>
<td>{$item.repo_numb * $item.rate}</td>
</tr>
{/volist}
<tr>
<td>合计:</td>
<td colspan="4"></td>
<td>{$inv.useage.totle.repo_numb * $inv.useage.totle.rate}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div></div>
<div class="layui-form-item layui-col-md-offset4">
<a class="layui-btn" href="/invoice">
返回列表
</a>
<button class="layui-btn" lay-filter="close">
关闭
</button>
</div>
<!--账单结束-->
</form>
</div>
</div>
......@@ -251,7 +294,6 @@
{block name="js"}
<script>
//限制输入长度
function sliceDom(dom,len){
if(dom.value.length>len)
......@@ -263,18 +305,8 @@
function () {
$ = layui.jquery;
var form = layui.form,
layer = layui.layer,
laydate = layui.laydate,
upload = layui.upload;
layer = layui.layer;
//消息提示
function layMsg(msg,type=6,time=1000){
layer.msg(msg,{
icon: type,
time: time,
});
}
//查看缴费详情
form.on('submit(paymentsDetail)',
......@@ -293,58 +325,6 @@
return false;
}
);
form.on('submit(update_payment_amount)',
function (data) {
var $data = {
id : $("#invoice_id").val(),
amount : $("#payment_amount").val()
};
$.ajax({
url: '/invoice/update/payment',
method: "POST",
data: $data,
dataType: "json",
success: function (data) {
if (data.status == 1) {
layer.msg(data.message,{icon: 6,time: 1000})
} else {
layer.msg(data.message,{icon: 5,time: 1000 })
}
}
});
return false;
});
//上传电表照片
var upPhoto = upload.render({
elem: '#up_photo' ,
url: '/up_photo',
field: 'cp_photo',
done: function (res) {
if(res.status == 1){
layMsg(res.message)
//将电表照片的ID填写
var $photoId = $("input[name='photo_id']")
$photoId.val(res.data.id)
var $a = $photoId.next('a');
$a.removeClass('layui-hide')
$a.attr('href',res.data.src);
}
else {
layMsg(res.message,5)
return;
}
}
});
});
</script>
{/block}
\ No newline at end of file
{/block}
{extend name="public:base" /}
{block name="body"}
<div class="layui-row">
<div class="layui-col-md12">
<div class="layui-card">
<form class="layui-form">
<div class="layui-form-box">
<div class="layui-form-head">
<div class="layui-form-item">
<label class="layui-form-label">
基本信息
</label>
</div>
</div>
<div class="layui-form-body">
<div class="layui-row">
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
基站编号
</label>
<div class="layui-input-inline">
<input type="text" name="station_sp_code" autocomplete="off"
class="layui-input" value="{$inv.station.station_sp_code|default=''}" disabled="disabled">
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
基站名称
</label>
<div class="layui-input-inline">
<input type="text" name="station_name" autocomplete="off" class="layui-input" value="{$inv.station.station_name|default=''}"
disabled="disabled">
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
电表类型
</label>
<div class="layui-input-inline">
<input type="text" name="project_number" autocomplete="off"
class="layui-input" value="{$inv.em['typeName']}" disabled="disabled">
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
电表编号
</label>
<div class="layui-input-inline">
<input type="text" name="project_number" autocomplete="off"
class="layui-input" value="{$inv.em.em_numb}" disabled="disabled">
</div>
</div>
</div>
</div>
</div>
</div>
</form>
<form class="layui-form">
<!--账单详情-->
<div class="layui-form-box">
<div class="layui-form-head">
<div class="layui-col-md10">
<div class="layui-form-item">
<label class="layui-form-label">
账单信息
</label>
<!-- <div class="layui-pay-model">
<label class="layui-form-label">
缴费模式 :
</label>
<span>{$inv.em.chargeType}</span>
</div> -->
</div>
</div>
</div>
<div class="layui-form-body">
<div class="layui-row">
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
账单号
</label>
<div class="layui-input-inline">
<input type="text" name="last_numb" autocomplete="off"
class="layui-input" value="{$inv.invoice_id}" disabled="disabled">
</div>
</div>
</div>
<!--<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
创建人
</label>
<div class="layui-input-inline">
<input type="text" id="uid" name="uid"
autocomplete="off" class="layui-input" value="{$inv.uid}" disabled="disabled">
</div>
</div>
</div> -->
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
上次抄表日期
</label>
<div class="layui-input-inline">
<input type="text" id="last_date" name="last_date"
autocomplete="off" class="layui-input" value="{$inv.useage.last_date}" disabled="disabled">
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
本次抄表日期
</label>
<div class="layui-input-inline">
<input type="text" id="current_data" name="current_data"
autocomplete="off" class="layui-input" value="{$inv.useage.current_date}" disabled="disabled">
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
<span class="x-red">*</span>抄表单照片
</label>
<div class="layui-input-inline">
{if !isset($inv.useage.photo.src) }
<input type="text"
autocomplete="off" class="layui-input layui-no-border" value="未上传抄表照片" disabled="disabled">
{else /}
<a href="{$inv.useage.photo.src}" class='layui-btn' target="_blank" >
<i class="layui-icon">&#xe64a;</i>预览
</a>
{/if}
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
应缴金额:
</label>
<div class="layui-input-inline">
<input type="text" id="payment_amount" name="payment_amount" autocomplete="off" class="layui-input" value="{$inv.payment_amount|round=3}" disabled="disabled">
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
已缴金额:
</label>
<div class="layui-input-inline">
<input type="text" id="paid_amount" name="paid_amount" autocomplete="off" class="layui-input" value="{$inv.paid_amount|round=3}" disabled="disabled">
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
应结金额:
</label>
<div class="layui-input-inline">
<input type="text" id="settle_amount" name="settle_amount" autocomplete="off" class="layui-input" value="{$inv.settle_amount|round=3}" disabled="disabled">
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
已结金额:
</label>
<div class="layui-input-inline">
<input type="text" id="sett_amount" name="sett_amount" autocomplete="off" class="layui-input" value="{$inv.sett_amount|round=3}" disabled="disabled">
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
缴费状态:
</label>
<div class="layui-input-inline">
<input type="text" autocomplete="off" class="layui-input no-border layui-width-auto" value="{$inv.status|getInvoicesStatusName}" disabled="disabled">
<button class="layui-btn layui-btn-normal layui-right" lay-submit lay-filter="paymentsDetail" οnclick="return false;"><i class="layui-icon layui-icon-add-circle-fine"></i>缴费详情</button>
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
结算状态:
</label>
<div class="layui-input-inline">
<input type="text" autocomplete="off" class="layui-input no-border layui-width-auto" value="{$inv.status|getInvoicesStatusName='1'}" disabled="disabled">
<button class="layui-btn layui-btn-normal layui-right" lay-submit lay-filter="settlesDetail" οnclick="return false;"><i class="layui-icon layui-icon-add-circle-fine"></i>结算详情</button>
</div>
</div>
</div>
<div class="layui-form-head">
<div class="layui-col-md10">
<div class="layui-form-item">
<label class="layui-form-label">
抄表信息
</label>
<!-- <div class="layui-pay-model">
<label class="layui-form-label">
缴费模式 :
</label>
<span>{$inv.em.chargeType}</span>
</div> -->
</div>
</div>
</div>
<div class="layui-col-md10" style="padding:0 130px 0 30px;margin-bottom: 20px;">
<table class="layui-table layui-form">
<thead>
<tr>
<th>阶段</th>
<th>上期表数</th>
<th>本期表数</th>
<th>单价</th>
<th>倍率</th>
<th>报运营商电量</th>
</thead>
<tbody>
{volist name="inv.useage.ud" id="item"}
<tr>
<td>{$item.typeName}</td>
<td>{$item.last_numb}</td>
<td>{$item.current_numb}</td>
<td>{$item.price ?: $inv.em.rule.pay_price}</td>
<td>{$item.rate}</td>
<td>{$item.repo_numb * $item.rate}</td>
</tr>
{/volist}
<tr>
<td>合计:</td>
<td colspan="4"></td>
<td>{$inv.useage.totle.repo_numb * $inv.useage.totle.rate}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<!--账单结束-->
</form>
</div>
</div>
</div>
{/block}
{block name="js"}
<script>
//限制输入长度
function sliceDom(dom,len){
if(dom.value.length>len)
return dom.value = dom.value.slice(0,len)
}
//初始化Layui控件
layui.use(['form', 'layer', 'laydate', 'upload'],
function () {
$ = layui.jquery;
var form = layui.form,
layer = layui.layer;
//查看缴费详情
form.on('submit(paymentsDetail)',
function (data) {
$url = '/payment/payDetail/{$inv.invoice_id}'
xadmin.open('查看缴费详情',$url)
return false;
}
);
//查看结算详情
form.on('submit(settlesDetail)',
function (data) {
$url = '/settle/settleDetail/{$inv.invoice_id}'
xadmin.open('查看结算详情',$url)
return false;
}
);
});
</script>
{/block}
\ No newline at end of file
......@@ -14,8 +14,10 @@
<div class="layui-input-inline" style="width:150px;">
<select name="search_type" id="search_type" >
<option value="1" selected="selected" {if $search_type eq 1 } selected {/if}>账单号</option>
<option value="2" {if $search_type eq 2 } selected {/if}>所属基站名</option>
<option value="3" {if $search_type eq 3 } selected {/if}>所属电表号</option>
<option value="2" {if $search_type eq 2 } selected {/if}>站名</option>
<option value="3" {if $search_type eq 3 } selected {/if}>电表号</option>
<option value="4" {if $search_type eq 4 } selected {/if}>项目编号</option>
</select>
</div>
<div class="layui-input-inline">
......@@ -66,15 +68,32 @@
</div>
<table class="layui-table" lay-filter="demo" lay-data="{ url:'/invoice', page:true, initSort: {field:'wealth', type:'desc'}, id:'idTest',where:{search_type:document.getElementById('search_type').value,search_text:document.getElementById('search_text').value,date_start:document.getElementById('date_start').value,date_end:document.getElementById('date_end').value,settle_status:document.getElementById('settle_status').value,payment_status:document.getElementById('payment_status').value}
<table class="layui-table" lay-filter="demo" lay-data="{ url:'/invoice', page:true, initSort: {field:'wealth', type:'desc'}, id:'idTest',where:{search_type:document.getElementById('search_type').value,search_text:document.getElementById('search_text').value,date_start:document.getElementById('date_start').value,date_end:document.getElementById('date_end').value,settle_status:document.getElementById('settle_status').value,payment_status:document.getElementById('payment_status').value},
parseData: function(res){
if(sessionStorage.getItem('invs') != null){
var invsArr = sessionStorage.getItem('invs').split(',');
for(var i=0;i<res.data.length;i++) {
for(var j=0;j<invsArr.length;j++){
if(invsArr[j] == res.data[i].invoice_id) {
res.data[i]['LAY_CHECKED'] = true;
}
}
}
}
return res;
}
}"> <thead>
<tr>
<th lay-data="{type: 'checkbox', fixed: 'left'} "></th>
<th lay-data="{templet: '#invoice_id',sort: true} ">账单号</th>
<th lay-data="{field:'station_name',sort: true}">所属基站名</th>
<th lay-data="{templet:'#em_numb',sort: true} ">所属电表号</th>
<th lay-data="{templet: '#station_name'}">站名</th>
<th lay-data="{templet: '#proj_number'} ">项目编号</th>
<th lay-data="{templet:'#em_numb',sort: true} ">电表号</th>
<th lay-data="{templet: '#useage'}">抄表度数</th>
<th lay-data="{field: 'price'}">缴费单价</th>
<th lay-data="{field: 'rate'}">倍率</th>
<th lay-data="{field: 'repo_numb'}">用电量</th>
<th lay-data="{templet:'#payment'}">缴费金额</th>
<th lay-data="{templet:'#settle'}">结算金额</th>
......@@ -94,6 +113,12 @@
</body>
{/block}
{block name="js"}
<script type="text/html" id="station_name">
<a class="layui-link" onclick="xadmin.add_tab('{{d.station_name}}','{{d.projUrl}}',true,true)">{{d.station_name}}</a>
</script>
<script type="text/html" id="proj_number">
<a class="layui-link" onclick="xadmin.add_tab('{{d.station_name}}','{{d.projUrl}}',true,true)">{{d.proj_number}}</a>
</script>
<script type="text/html" id="invoice_id">
<a class="layui-link" title="查看" href="/invoice/{{d.id}}">{{d.invoice_id}}</a>
</script>
......@@ -124,6 +149,7 @@
laydate = layui.laydate,
table = layui.table;
table.on('checkbox(demo)', function(obj){
if(obj.data.em_type_id == 2) {
layer.msg('预付费表无法进行账单合并', {
......@@ -132,6 +158,36 @@
}
});
//监听单选
table.on('checkbox(demo)', function(obj){
//console.log(obj.checked); //当前是否选中状态
//console.log(obj.data); //选中行的相关数据
//console.log(obj.type); //如果触发的是全选,则为:all,如果触发的是单选,则为:one
if(obj.checked) {
if(!sessionStorage.getItem('invs')) {
sessionStorage.setItem('invs',obj.data.invoice_id);
} else {
var invs = sessionStorage.getItem('invs');
invs += ','+ obj.data.invoice_id;
sessionStorage.setItem('invs',invs);
}
} else {
var invs = sessionStorage.getItem('invs');
console.log("Aaa")
var invsArr = invs.split(",");
for (var i =0; i<invsArr.length; i++) {
if(invsArr[i] == obj.data.invoice_id) invsArr.splice(i,1);
sessionStorage.setItem('invs',invsArr.join(","))
}
}
console.log(sessionStorage.getItem('invs'))
});
laydate.render({
elem:'#date_end',
trigger:'click',
......@@ -141,29 +197,30 @@
trigger:'click',
})
var $ = layui.$, active = {
getCheckData: function(){ //获取选中数据
var ids = [];
var checkStatus = table.checkStatus('idTest')
,data = checkStatus.data;
if(sessionStorage.getItem('invs') == null) {
layer.msg('请选择账单', {time: 2000})
return;
}
var data = sessionStorage.getItem('invs').split(',');
var iDs = '';
var count = 0;
data.forEach(
function($value,$key){
iDs += $value.invoice_id + '_'
count ++
}
)
if(count > 0) {
url = '/invoice/merge/list/'+iDs;
url = url.substr(0,(url.length -1))
xadmin.open('合并账单',url)
} else {
layer.msg('请选择账单', {
time: 2000,
});
for(var i = 0;i<data.length;i++) {
iDs += data[i] + '_'
}
console.log(iDs);
url = '/invoice/merge/list/'+iDs;
url = url.substr(0,(url.length -1))
xadmin.open('合并账单',url,'','','',function(index,layno){
location.reload()
})
}
};
......@@ -185,7 +242,10 @@
)
url = '/invoice/merge/list/'+iDs;
url = url.substr(0,(url.length -1))
xadmin.open('合并账单',url)
xadmin.open('合并账单',url,'','','',function(index,layno){
//layer.close(index)
xadmin.father_reload()
})
}
}
</script>
......
{extend name="public:base" /}
{block name="body"}
<style type="text/css">
.layui-table-page{
text-align: right;
}
</style>
<div class="layui-fluid">
<div class="layui-row layui-col-space15">
<div class="layui-col-md12">
<div class="layui-card">
<div class="layui-card-body">
<form class="layui-form">
<div class="layui-input-inline" style="width:150px;">
<select name="search_type" id="search_type" >
<option value="1" selected="selected" {if $search_type eq 1 } selected {/if}>账单号</option>
<option value="2" {if $search_type eq 2 } selected {/if}>所属基站名</option>
<option value="3" {if $search_type eq 3 } selected {/if}>所属电表号</option>
</select>
</div>
<div class="layui-input-inline">
<input type="text" name="search_text"
style="width:150px;" placeholder="搜索内容" autocomplete="off" id="search_text" class="layui-input" value="{$search_text}">
</div>
<div class="layui-input-inline">
<button class="layui-btn" lay-submit="" lay-filter="search">
<i class="layui-icon">&#xe615;</i></button>
</div>
</form>
</div>
<div class="layui-card-body ">
<div>
<a href="javascript:;" class="layui-btn" id="merge_add">添加到合并列表</a>
<button class="layui-btn" onclick="merge_list()">
合并账单<span class="layui-badge layui-bg-orange" id="merge_list">0</span>
</button>
</div>
<table class="layui-table" lay-data="{ url:'/invoice', page:true, id:'idTest',where:{search_type:document.getElementById('search_type').value,search_text:document.getElementById('search_text').value} }"> <thead>
<tr>
<th lay-data="{type: 'checkbox', fixed: 'left'} "></th>
<th lay-data="{templet: '#invoice_id'} ">账单号</th>
<th lay-data="{field:'station_name'}">所属基站名</th>
<th lay-data="{field:'em_numb'} ">所属电表号</th>
<th lay-data="{field:'payment_amount'}">应费金额</th>
<th lay-data="{field: 'settle_amount'}">应结金额</th>
<th lay-data="{field: 'status'}">账单状态</th>
<!--<th lay-data="{fixed: 'right', align:'center', toolbar: '#barDemo'}">操作</th>-->
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>
</div>
</body>
{/block}
{block name="js"}
<script type="text/html" id="invoice_id">
<a class="layui-link" title="查看" href="/invoice/{{d.id}}">{{d.invoice_id}}</a>
</script>
<script type="text/javascript">
var $list = new Set();
layui.use(['form', 'layer', 'laydate', 'upload','table'],
function () {
$ = layui.jquery;
var form = layui.form,
layer = layui.layer,
laydate = layui.laydate,
table = layui.table,
upload = layui.upload;
laydate.render({
elem:'#date_end',
trigger:'click',
})
laydate.render({
elem:'#date_start',
trigger:'click',
})
var $ma = $("#merge_add");
var $ml = $("#merge_list");
//添加合并单号到列表
$ma.on('click',function(){
var $mi = $('.merge_item');
$mi.each(function(i){
if(this.checked){
$list.add($(this).val())
}
})
$ml.text($list.size)
})
table.on('toolbar(idTest)', function(obj){
var checkStatus = table.checkStatus(obj.config.id);
switch(obj.event){
case 'getCheckData':
var data = checkStatus.data;
layer.alert(JSON.stringify(data));
break;
case 'getCheckLength':
var data = checkStatus.data;
layer.msg('选中了:'+ data.length + ' 个');
break;
case 'isAll':
layer.msg(checkStatus.isAll ? '全选': '未全选');
break;
//自定义头工具栏右侧图标 - 提示
case 'LAYTABLE_TIPS':
layer.alert('这是工具栏右侧自定义的一个图标按钮');
break;
};
});
})
function merge_list()
{
var iDs = '';
if($list.size != 0){
$list.forEach(
function($value,$key){
iDs += $value + '_'
}
)
url = '/invoice/merge/list/'+iDs;
url = url.substr(0,(url.length -1))
xadmin.open('合并账单',url)
}
}
function del(obj,id){
layer.confirm('确认要删除吗?',function(index){
$.ajax({
url: '/copy_del',
method: "POST",
data: {id:id},
dataType: "json",
success: function (data) {
if(data.status == 1){
layer.msg(data.message,{icon:1,time:1000});
location.reload()
} else {
layer.alert(data.message, {
icon: 5
});
}
}
});
});
}
</script>
{/block}
......@@ -15,8 +15,9 @@
<th>账单号</th>
<th>所属基站名</th>
<th>所属电表号</th>
<th>缴费金额</th>
<th>结算金额</th>
<th>账单金额</th>
<th>已缴金额</th>
<th>当前应缴金额</th>
<th>账单状态</th>
<th>操作</th>
</thead>
......@@ -28,7 +29,8 @@
<td>{$item.station_name}</td>
<td>{$item.em_numb}</td>
<td class="payment_amount">{$item.payment_amount}</td>
<td>{$item.settle_amount}</td>
<td>{$item.payment_amount-$item.payment_balance}</td>
<td><input type="text" autocomplete="off" class="layui-input no-border-bottom pay_amount" name="pay_amount[{$item.invoice_id}]" data-amount="{$item.payment_balance}" value="{$item.payment_balance}"></td>
<td>{$item.status|parseStatus}</td>
<td><button class="layui-btn layui-btn-danger del-inv">删除</button></td>
</tr>
......@@ -39,14 +41,15 @@
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
缴费总额
实缴总额
</label>
<div class="layui-input-inline">
<input type="text" autocomplete="off"
class="layui-input" id="payment_sum_amount" value="{$payment_amount}" disabled="disabled">
class="layui-input no-border" id="payment_sum_amount" value="{$payment_amount}" disabled="disabled">
</div>
</div>
</div>
<!--
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
......@@ -58,16 +61,16 @@
</div>
</div>
</div>
-->
</div>
<div class="layui-form-item layui-col-md-offset4">
<button class="layui-btn" lay-filter="payment" lay-submit="">
生成缴费单
</button>
<button class="layui-btn" lay-filter="settle" lay-submit="">
<!--<button class="layui-btn" lay-filter="settle" lay-submit="">
生成结算单
</button>
</button> -->
</div>
</div>
</div>
<!--缴费结束-->
......@@ -89,6 +92,9 @@
//生成缴费单
form.on('submit(payment)',
function (data) {
if(Object.keys(data.field).length==0) {
layer.msg('未选择账单',{icon: 5,time: 4000 });
} else {
$.ajax({
url: '/payment/createAll',
method: "POST",
......@@ -107,6 +113,7 @@
}
}
});
}
return false;
});
......@@ -131,17 +138,50 @@
return false;
});
var invs = sessionStorage.getItem('invs');
var invsArr = invs.split(",");
//删除时重新计算
$(".del-inv").each(function(){
$(this).click(function(){
var $invoice_id = $(this).parent('td').parent('tr').find('td').eq(0).find('input').eq(0).val();
for (var i =0; i<invsArr.length; i++) {
if(invsArr[i] == $invoice_id) invsArr.splice(i,1);
sessionStorage.setItem('invs',invsArr.join(","))
}
$(this).parent().parent().remove();
//更新总价
var $sum = 0;
$('.payment_amount').each(function(){
$sum += Number($(this).text());
})
$('.pay_amount').each(function(){
$sum += Number($(this).val());
});
$('#payment_sum_amount').val($sum);
})
})
});
$(".pay_amount").each(function(){
$(this).change(function(){
//更新总价
computeAmount($(this));
})
});
function computeAmount($obj) {
$val = $obj.val();
$amt = $obj.data("amount");
if($val < 0 || parseFloat($val).toString() == "NaN") $obj.val(0);
else if(parseFloat($val) > parseFloat($amt)) $obj.val($amt);
var $sum = 0;
$(".pay_amount").each(function(index,el){
$sum += parseFloat($(el).val());
});
$('#payment_sum_amount').val($sum);
}
});
</script>
{/block}
\ No newline at end of file
......@@ -45,7 +45,7 @@
缴费员:
</label>
<div class="layui-input-inline">
<select name="staff_id">
<select name="staff_id" lay-search=''>
{foreach $staffs as $u}
<option value="{$u['id']}"}>{$u['name']}</option>
{/foreach}
......@@ -53,30 +53,6 @@
</div>
</div>
</div>
<!-- <div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
缴费凭证:
</label>
<div class="layui-input-inline">
<a class="layui-btn layui-btn-normal layui-right" lay-submit lay-filter="showCert" οnclick="return false;">查看</a>
<button class="layui-btn layui-btn-normal layui-right" lay-submit lay-filter="addCert" οnclick="return false;"><i class="layui-icon layui-icon-add-circle-fine"></i></button>
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
发票凭证:
</label>
<div class="layui-input-inline">
<a class="layui-btn layui-btn-normal layui-right" lay-submit lay-filter="showReceipt" οnclick="return false;">查看</a>
<button class="layui-btn layui-btn-normal layui-right" lay-submit lay-filter="addReceipt" οnclick="return false;"><i class="layui-icon layui-icon-add-circle-fine"></i></button>
</div>
</div>
</div> -->
</div>
<div class="layui-form-item layui-col-md-offset4">
......
{extend name="public:base" /}
{block name="body"}
<div class="layui-row">
<div class="layui-col-md12">
<div class="layui-card">
<div class="layui-card-body">
<form class="layui-form">
<!--缴费-->
<div class="layui-form-box">
<div class="layui-form-head">
<div class="layui-form-item">
<label class="layui-form-label">
填写缴费信息
</label>
</div>
</div>
<div class="layui-form-body">
<div class="layui-row">
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
缴费金额:
</label>
<div class="layui-input-inline">
<input type="text" name="amount" id="paid_totle"
class="layui-input no-border" disabled="disabled">
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
缴费员:
</label>
<div class="layui-input-inline">
<select name="staff_id">
{foreach $staffs as $u}
<option value="{$u['id']}"}>{$u['name']}</option>
{/foreach}
</select>
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
缴费凭证:
</label>
<div class="layui-input-inline">
<a class="layui-btn layui-btn-normal layui-right" lay-submit lay-filter="showCert" οnclick="return false;">查看</a>
<button class="layui-btn layui-btn-normal layui-right" lay-submit lay-filter="addCert" οnclick="return false;"><i class="layui-icon layui-icon-add-circle-fine"></i></button>
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
发票凭证:
</label>
<div class="layui-input-inline">
<a class="layui-btn layui-btn-normal layui-right" lay-submit lay-filter="showReceipt" οnclick="return false;">查看</a>
<button class="layui-btn layui-btn-normal layui-right" lay-submit lay-filter="addReceipt" οnclick="return false;"><i class="layui-icon layui-icon-add-circle-fine"></i></button>
</div>
</div>
</div>
</div>
<div class="layui-form-item layui-col-md-offset4">
<button class="layui-btn" lay-filter="save" lay-submit="">保存</button>
</div>
</div>
</div>
<!--缴费结束-->
</form>
</div>
</div>
</div>
</div>
{/block}
{block name="js"}
<script>
//限制输入长度
function sliceDom(dom,len){
if(dom.value.length>len)
return dom.value = dom.value.slice(0,len)
}
//初始化Layui控件
layui.use(['form', 'layer', 'laydate', 'upload'],
function () {
$ = layui.jquery;
var form = layui.form,
layer = layui.layer,
laydate = layui.laydate,
upload = layui.upload;
//消息提示
function layMsg(msg,type=6,time=1000){
layer.msg(msg,{
icon: type,
time: time,
});
}
form.on('submit(submit)',
function (data) {
$.ajax({
url: '/payment/update',
method: "POST",
data: data.field,
dataType: "json",
success: function (data) {
if (data.status == 1) {
layer.msg(data.message,{icon: 6,time: 1000})
} else {
layer.msg(data.message,{icon: 5,time: 1000 })
}
}
});
return false;
});
//保存信息
form.on('submit(save)',
function (data) {
$.ajax({
url: '/payment/save',
method: "POST",
data: data.field,
dataType: "json",
success: function (data) {
if (data.status == 1) {
layer.msg(data.message,{icon: 6,time: 1000})
} else {
layer.msg(data.message,{icon: 5,time: 1000 })
}
}
});
return false;
});
//上传电表照片
var upPhoto = upload.render({
elem: '#up_photo' ,
url: '/up_photo',
field: 'cp_photo',
done: function (res) {
if(res.status == 1){
layMsg(res.message)
//将电表照片的ID填写
var $photoId = $("input[name='photo_id']")
$photoId.val(res.data.id)
var $a = $photoId.next('a');
$a.removeClass('layui-hide')
$a.attr('href',res.data.src);
}
else {
layMsg(res.message,5)
return;
}
}
});
});
</script>
{/block}
\ No newline at end of file
{extend name="public:base" /}
{block name="body"}
<div class="layui-row">
<div class="layui-col-md12">
<div class="layui-card">
<div class="layui-card-body">
<form class="layui-form">
<!--缴费-->
<div class="layui-form-box">
<div class="layui-form-head">
<div class="layui-form-item">
<label class="layui-form-label">
缴费详情
</label>
</div>
</div>
<div class="layui-form-body">
<div class="layui-row">
<input type="hidden" name="em_id" value="{$em.id}">
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
电表号:
</label>
<div class="layui-input-inline">
<input type="text" name="em_numb" autocomplete="off"
class="layui-input no-border" value="{$em.em_numb}" disabled="disabled">
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
缴费单号:
</label>
<div class="layui-input-inline">
<input type="text" name="payment_id" autocomplete="off"
class="layui-input no-border" value="{$payment.payment_id}" disabled="disabled">
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
缴费金额:
</label>
<div class="layui-input-inline">
<input type="text" name="amount" id="amount"
class="layui-input" >
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
缴费日期:
</label>
<div class="layui-input-inline">
<input type="text" name="pay_date" id="pay_date"
class="layui-input" >
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
缴费员:
</label>
<div class="layui-input-inline">
<select name="staff_id">
{foreach $staffs as $u}
<option value="{$u['id']}"}>{$u['name']}</option>
{/foreach}
</select>
</div>
</div>
</div>
</div>
<div class="layui-form-item layui-col-md-offset4">
<button class="layui-btn" lay-filter="save" lay-submit="">
保存
</button>
</div>
</div>
</div>
<!--缴费结束-->
</form>
</div>
</div>
</div>
</div>
{/block}
{block name="js"}
<script>
//限制输入长度
function sliceDom(dom,len){
if(dom.value.length>len)
return dom.value = dom.value.slice(0,len)
}
//初始化Layui控件
layui.use(['form', 'layer', 'laydate', 'upload'],
function () {
$ = layui.jquery;
var form = layui.form,
layer = layui.layer,
laydate = layui.laydate,
upload = layui.upload;
//消息提示
function layMsg(msg,type=6,time=1000){
layer.msg(msg,{
icon: type,
time: time,
});
}
laydate.render({
elem:'#pay_date',
trigger:'click',
})
//审核通过
form.on('submit(save)',
function (data) {
$.ajax({
url: '/payment/save',
method: "POST",
data: data.field,
dataType: "json",
success: function (data) {
if (data.status == 1) {
layer.msg(data.message,{icon: 6,time: 1000})
} else {
layer.msg(data.message,{icon: 5,time: 1000 })
}
}
});
return false;
});
//上传电表照片
var upPhoto = upload.render({
elem: '#up_photo' ,
url: '/up_photo',
field: 'cp_photo',
done: function (res) {
if(res.status == 1){
layMsg(res.message)
//将电表照片的ID填写
var $photoId = $("input[name='photo_id']")
$photoId.val(res.data.id)
var $a = $photoId.next('a');
$a.removeClass('layui-hide')
$a.attr('href',res.data.src);
}
else {
layMsg(res.message,5)
return;
}
}
});
});
</script>
{/block}
\ No newline at end of file
......@@ -10,12 +10,52 @@
<div class="layui-form-head">
<div class="layui-form-item">
<label class="layui-form-label">
缴费详情
详情
</label>
</div>
</div>
<div class="layui-form-body">
<div class="layui-row">
{if isset($em->station) }
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
站名:
</label>
<div class="layui-input-inline">
<input type="text" name="station_name" autocomplete="off"
class="layui-input no-border" value="{$em.station.station_name}"
disabled="disabled">
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
项目编号:
</label>
<div class="layui-input-inline">
<input type="text" name="proj_number" autocomplete="off"
class="layui-input no-border" value="{$em.station.proj_number}"
disabled="disabled">
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
表号:
</label>
<div class="layui-input-inline">
<input type="text" name="em_numb" autocomplete="off"
class="layui-input no-border" value="{$em.em_numb}"
disabled="disabled">
</div>
</div>
</div>
{/if}
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
......@@ -118,22 +158,24 @@
<thead>
<tr>
<th>账单号</th>
<th>所属基站名</th>
<th>电表识别号</th>
<th>站名</th>
<th>项目编号</th>
<th>电表号</th>
<th>区域</th>
<th>应付金额</th>
<th>已付金额</th>
</thead>
<tbody>
{volist name="invs" id="item"}
<tr>
<td><a class="layui-link" title="查看账单" href="/invoice/{$item.invoice_id}">{$item.invoice_id}</a>
</td>
<td>{$item.station_name}</td>
<td><a class="layui-link" onclick="xadmin.add_tab('{$item.station_name}','{$item.projUrl}',true,true)">{$item.station_name}</a>
</td>
<td><a class="layui-link" onclick="xadmin.add_tab('{$item.station_name}','{$item.projUrl}',true,true)">{$item.proj_number}</a>
</td>
<td>{$item.em_numb}</td>
<td>{$item.payment_amount|round=3}</td>
<td><input name="paid[{$item.invoice_id}][paid_amount]" type="text"
class="layui-input no-border paid_amount"
value="{$item.paid_amount|round=3}" disabled="disabled"></td>
<td>{$item.region_name}</td>
<td>{$item.balance|round=3}</td>
</tr>
{/volist}
</tbody>
......@@ -158,16 +200,7 @@
{/if}
</div>
<div class="layui-form-item layui-col-md-offset4">
{if $payment.status == $payment.checkNode && check_ele_permission('payment/confirm')}
<button class="layui-btn" lay-filter="confirm" lay-submit="">
审核
</button>
{/if}
{if $fk.oafk_numb == '' && check_ele_permission('payment/payoa') && $payment.status == 1}
<button class="layui-btn" lay-filter="pay" lay-submit="">
付款
</button>
{elseif check_ele_permission('payment/checkPayment') && $payment.status == 0 /}
{if $payment->eLePermission === true && $payment.status == 0 /}
<button class="layui-btn" lay-filter="pass" lay-submit="">
通过
</button>
......@@ -175,6 +208,18 @@
驳回
</button>
{/if}
{if $fk.oafk_numb == '' && $payment.status < 2 && $payment->eLePermission === false}
<button class="layui-btn" lay-filter="drop" lay-submit="">
作废
</button>
{/if}
{if $fk.oafk_numb == '' && $payment->fkPermission === true && $payment.status == 1}
<button class="layui-btn" lay-filter="pay" lay-submit="">
付款
</button>
{/if}
</div>
</div>
</div>
......@@ -232,27 +277,6 @@
}
);
//审核通过
form.on('submit(confirm)',
function (data) {
$.ajax({
url: '/payment/confirm',
method: "POST",
data: data.field,
dataType: "json",
success: function (data) {
if (data.status == 1) {
layer.msg(data.message, {icon: 6, time: 2000}, function () {
window.location.reload()
})
} else {
layer.msg(data.message || data.msg, {icon: 5, time: 1000})
}
}
});
return false;
});
form.on('submit(pass)',
function (data) {
$(this).addClass('layui-disabled');
......@@ -290,6 +314,7 @@
yes: function () {
$data.field.checkType = 2;
$data.field.refuseInfo = $('#refuseInfo').val();
$data.field.state = 7;
$.ajax({
url: '/payment/checkPayment',
method: "POST",
......@@ -314,6 +339,33 @@
});
return false;
});
form.on('submit(drop)',
function (data) {
var $that = $(this)
var $data = data;
$that.addClass('layui-disabled');
$that.attr('disabled', 'disabled');
$data.field.checkType = 2;
$data.field.refuseInfo = '主动作废';
$data.field.state = 6;
$.ajax({
url: '/payment/checkPayment',
method: "POST",
data: $data.field,
dataType: "json",
success: function (data) {
if (data.status == 1) {
layer.msg(data.message, {icon: 6, time: 4000}, function () {
window.location.reload()
})
} else {
layer.msg(data.message || data.msg, {icon: 5, time: 5000})
}
}
});
return false;
});
});
</script>
{/block}
\ No newline at end of file
......@@ -66,22 +66,31 @@
</div>
<div class="layui-card-body ">
<table class="layui-table" lay-data="{ url:'/payment', page:true, id:'idTest',where:{search_type:document.getElementById('search_type').value,search_text:document.getElementById('search_text').value,area_id:document.getElementById('area_id').value,date_start:document.getElementById('date_start').value,date_end:document.getElementById('date_end').value,payment_status:document.getElementById('payment_status').value} }"> <thead>
<tr>
<th lay-data="{templet: '#payment_id',sort: true} ">缴费单号</th>
<th lay-data="{field:'station_name',sort: true} ">站名</th>
<th lay-data="{field:'em_numb',sort: true} ">表号</th>
<th lay-data="{field:'payment_type',sort: true}">缴费类型</th>
<th lay-data="{field:'amount',sort: true}">应付金额</th>
<th lay-data="{templet: '#state'}">状态</th>
<th lay-data="{field: 'create_time',sort: true}">创建日期</th>
<th lay-data="{fixed: 'right', align:'center', toolbar: '#barDemo'}">操作</th>
</tr>
<table class="layui-table" lay-filter="payment" lay-data="{
url:'/payment',
page:true,
id:'idTest',
where:{search_type:document.getElementById('search_type').value,
search_text:document.getElementById('search_text').value,
area_id:document.getElementById('area_id').value,
date_start:document.getElementById('date_start').value,
date_end:document.getElementById('date_end').value,
payment_status:document.getElementById('payment_status').value}
}">
<thead>
<tr>
<th lay-data="{templet: '#payment_id',sort: true} ">缴费单号</th>
<th lay-data="{field:'station_name',sort: true} ">站名</th>
<th lay-data="{field:'em_numb',sort: true} ">表号</th>
<th lay-data="{field:'payment_type',sort: true}">缴费类型</th>
<th lay-data="{field:'amount',sort: true}">应付金额</th>
<th lay-data="{templet: '#state'}">状态</th>
<th lay-data="{field: 'create_time',sort: true}">创建日期</th>
<th lay-data="{fixed: 'right', align:'center', toolbar: '#barDemo'}">操作</th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>
......@@ -99,7 +108,6 @@
<script>
layui.use(['laydate','form','table'], function(){
var laydate = layui.laydate,
form = layui.form,
table = layui.table;
laydate.render({
elem:'#date_end',
......@@ -110,27 +118,14 @@
elem:'#date_start',
trigger:'click',
})
});
function del(obj,id){
layer.confirm('确认要删除吗?',function(index){
$.ajax({
url: '/copy_del',
method: "POST",
data: {id:id},
dataType: "json",
success: function (data) {
if(data.status == 1){
layer.msg(data.message,{icon:1,time:1000});
location.reload()
} else {
layer.alert(data.message, {
icon: 5
});
}
}
});
$('.demoTable .layui-btn').on('click', function(){
var type = $(this).data('type');
active[type] ? active[type].call(this) : '';
});
}
});
</script>
{/block}
......
{extend name="public:base" /}
{block name="body"}
<div class="layui-row">
<div class="layui-col-md12">
<div class="layui-card">
<form class="layui-form">
<!--添加结算凭证-->
<div class="layui-form-box">
<div class="layui-form-body">
<div class="layui-row">
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
单据抬头:
</label>
<div class="layui-input-inline">
<input type="text" name="title" autocomplete="off"
class="layui-input" value="电费付款">
<input type="hidden" name="pids" value="{$pids}">
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
汇款方式:
</label>
<div class="layui-input-inline">
<select name="payway" id="payway">
{volist name="payway" id="item"}
{if $item.name == '电汇'}
<option value="{$item.name}" selected="selected">{$item.name}</option>
{else /}
<option value="{$item.name}">{$item.name}</option>
{/if}
{/volist}
</select>
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
付款组织:
</label>
<div class="layui-input-inline">
<select name="org" id="org">
{volist name="org" id="item"}
<option value="{$item.name}">{$item.name}</option>
{/volist}
</select>
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
收款方:
</label>
<div class="layui-input-inline">
<select name="payee" id="payee" lay-search='' lay-filter="change">
{volist name="payee" id="item"}
<option value="{$item.name}" data-info='{$item.bankInfo|default=""}'>{$item.name}</option>
{/volist}
</select>
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
申请日期:
</label>
<div class="layui-input-inline">
<input type="text" name="date" id="date" autocomplete="off" class="layui-input" disabled="disabled" value="{$date}">
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
付款信息:
</label>
<div class="layui-input-inline">
<select name="info" id="info" >
</select>
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
款项类型:
</label>
<div class="layui-input-inline">
<select name='fkitem' id="fkitem" >
<option value="维护电费" selected="selected">维护电费</option>
<option value="服务费-电费">服务费-电费</option>
</select>
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
付款事由:
</label>
<div class="layui-input-inline">
<textarea class="layui-textarea" name="cause" id="remark">电费付款</textarea>
</div>
</div>
</div>
</div>
<div class="layui-col-md10">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
款项明细:
</label>
</div>
</div>
<div class="layui-col-md10">
<table class="layui-table layui-form">
<thead>
<tr>
<th>缴费单号</th>
<th>应缴金额</th>
<th>成本中心</th>
</thead>
<tbody>
{volist name="payments" id="item"}
<tr>
<td>{$item.payment_id}</td>
<td>{$item.balance}</td>
<td>{$item.proj_number}</td>
</tr>
{/volist}
</tbody>
</table>
</div>
<div class="layui-form-item layui-col-md-offset4">
<button class="layui-btn" lay-filter="submit" lay-submit="">
提交
</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
{/block}
{block name="js"}
<script type="text/javascript">
//初始化Layui控件
layui.use(['form', 'layer', 'laydate', 'upload'],
function () {
$ = layui.jquery;
var form = layui.form,
layer = layui.layer;
form.on('select(change)', function (data) {
var that = $(data.elem);
var info = that.find('option:selected').data('info');
if(info == 'undefind' || info == '' || info.length == 0) {
console.log('info null');
return;
}
var strs = '';
var dls = '';
var _selected = '';
for(var i=0;i<info.length;i++){
if(i == 0) _selected = " selected='selected'";
else _selected = " selected='' ";
strs += "<option value='"+info[i]+"'" + _selected +">"+info[i]+"</option>";
}
$("#info").html(strs);
form.render('select');
console.log(info);
//$("#info").text(info);
});
//生成缴费单
form.on('submit(submit)',
function (data) {
$.ajax({
url: '/payment/docnumb',
method: "POST",
data: data.field,
dataType: "json",
success: function (data) {
if (data.status == 1) {
layer.msg(data.message, {icon: 6, time: 3000}, function () {
xadmin.close();
// 可以对父窗口进行刷新
xadmin.father_reload();
})
} else {
layer.msg(data.message, {icon: 5, time: 3000})
}
}
});
return false;
});
});
</script>
{/block}
......@@ -37,9 +37,13 @@
</label>
<div class="layui-input-inline">
<select name="payway" id="payway">
{volist name="payway" id="item"}
<option value="{$item.name}">{$item.name}</option>
{/volist}
{volist name="payway" id="item"}
{if $item.name == '电汇'}
<option value="{$item.name}" selected="selected">{$item.name}</option>
{else /}
<option value="{$item.name}">{$item.name}</option>
{/if}
{/volist}
</select>
</div>
</div>
......@@ -66,7 +70,7 @@
收款方:
</label>
<div class="layui-input-inline">
<select name="payee" id="payee" lay-filter="change">
<select name="payee" id="payee" lay-search='' lay-filter="change">
{volist name="payee" id="item"}
<option value="{$item.name}" data-info='{$item.bankInfo|default=""}'>{$item.name}</option>
{/volist}
......@@ -78,10 +82,10 @@
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
付款日期:
申请日期:
</label>
<div class="layui-input-inline">
<input type="text" name="date" id="date" autocomplete="off" class="layui-input">
<input type="text" name="date" id="date" autocomplete="off" class="layui-input" disabled="disabled" value="{$date}">
</div>
</div>
</div>
......@@ -91,11 +95,26 @@
付款信息:
</label>
<div class="layui-input-inline">
<textarea class="layui-textarea" name="info" id="info"></textarea>
<select name="info" id="info" >
</select>
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
款项类型:
</label>
<div class="layui-input-inline">
<select name='fkitem' id="fkitem" >
<option value="维护电费" selected="selected">维护电费</option>
<option value="服务费-电费">服务费-电费</option>
</select>
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label layui-text-left">
付款事由:
......@@ -121,16 +140,14 @@
<thead>
<tr>
<th>账单号</th>
<th>款项类型</th>
<th>金额</th>
<th>应缴金额</th>
<th>成本中心</th>
</thead>
<tbody>
{volist name="invs" id="item"}
<tr>
<td>{$item.invoice_id}</td>
<td>维护电费</td>
<td>{$item.payment_amount}</td>
<td>{$item.invoice_id}</td>
<td>{$item.balance}</td>
<td>{$item.proj_number}</td>
</tr>
{/volist}
......@@ -168,11 +185,22 @@
form.on('select(change)', function (data) {
var that = $(data.elem);
var info = that.find('option:selected').data('info');
$("#info").text(info);
});
laydate.render({
elem: '#date',
trigger: 'click',
if(info == 'undefind' || info == '' || info.length == 0) return;
var strs = '';
var dls = '';
var _selected = '';
for(var i=0;i<info.length;i++){
if(i == 0) _selected = " selected='selected'";
else _selected = " selected='' ";
strs += "<option value='"+info[i]+"'" + _selected +">"+info[i]+"</option>";
}
$("#info").html(strs);
form.render('select');
console.log(info);
//$("#info").text(info);
});
//生成缴费单
......
......@@ -188,7 +188,7 @@
<span class="x-red">*</span>抄表员
</label>
<div class="layui-input-inline">
<select name="staff_id" {if $detail==true} disabled="disabled" {/if}>
<select name="staff_id" lay-search='' {if $detail==true} disabled="disabled" {/if}>
{foreach $staffs as $u}
<option value="{$u['id']}" {if $u['id'] == $uid} selected {/if}>{$u['name']}</option>
{/foreach}
......@@ -332,7 +332,7 @@
}
} else {
var $amount = $num * $('#price').val();
$('#amount').val($amount);
$('#amount').val($amount.toFixed(2));
}
});
......@@ -349,4 +349,4 @@
})
});
</script>
{/block}
\ No newline at end of file
{/block}
......@@ -193,7 +193,17 @@
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
创建人
</label>
<div class="layui-input-inline">
<input type="text" id="uid" name="uid"
autocomplete="off" class="layui-input" value="{$useage.uid}" disabled="disabled">
</div>
</div>
</div>
<div class="layui-col-md5">
<div class="layui-form-item">
<label class="layui-form-label">
......
......@@ -58,13 +58,16 @@
<thead>
<tr>
<th lay-data="{templet: '#useage_id',sort: true,width:'12%'} ">抄表单号</th>
<th lay-data="{field:'station_name',width:'12%'}">所属基站名</th>
<th lay-data="{field:'em_numb',width:'8%'} ">所属电表号</th>
<th lay-data="{templet: '#station_name',width:'12%'}">所属基站名</th>
<th lay-data="{templet: '#em_numb',width:'8%'}">电表号</th>
<th lay-data="{field:'last_date',sort: true,width:'9%'}">上次日期</th>
<th lay-data="{field:'current_date',sort: true,width:'9%'}">本次日期</th>
<th lay-data="{field:'last_sum_numb',width:'7%'}">上次度数</th>
<th lay-data="{field:'current_sum_numb',width:'7%'}">本次度数</th>
<th lay-data="{field:'rate',width:'3%'}">倍率</th>
<th lay-data="{field:'repo_numb',width:'7%'}">用电量</th>
<th lay-data="{templet: '#status',sort: true,width:'5%'}">状态</th>
......@@ -81,9 +84,15 @@
</div>
</div>
</body>
<script type="text/html" id="station_name">
<a class="layui-link" onclick="xadmin.add_tab('{{d.station_name}}','{{d.projUrl}}',true,true)">{{d.station_name}}</a>
</script>
<script type="text/html" id="useage_id">
<a class="layui-link" title="查看" href="/useage/{{d.useage_id}}">{{d.useage_id}}</a>
</script>
<script type="text/html" id="em_numb">
<a class="layui-link" href="/em_edit/{{d.em_id}}">{{d.em_numb}}</a>
</script>
<script type="text/html" id="photo_id">
{{# if(d.photo_id >0){ }}
已上传
......
......@@ -12,7 +12,12 @@ return [
'files_dir' => './static/uploads/files',
'search_area' => '1', //1按部门搜索,2全局
'order_per' =>'ZD',
'redis_host' => '192.168.1.70',
'redis_host' => '172.17.209.175',
'redis_port' => 6379,
'base_url' => 'http://oa.gonn.com.cn/'
'oa_url' => 'http://oa.gonn.com.cn/',
'oa_key' => '5bdfcedb618e1e03abf18e391278c1f4',
'gys' => 'api.php?m=opensupplier&a=list&openkey=',
'type' => 'api.php?m=openfkinfo&a=fkinfor&openkey=',
'fk' => 'api.php?m=openemfk&a=create&openkey=',
'link' => 'http://oa.gonn.com.cn/task.php?a=p&num=emfk&mid='
];
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
// +----------------------------------------------------------------------
// | Cookie设置
// +----------------------------------------------------------------------
return [
// cookie 名称前缀
'prefix' => '',
// cookie 保存时间
'expire' => 0,
// cookie 保存路径
'path' => '/',
// cookie 有效域名
'domain' => 'gonn.com.cn',
// cookie 启用安全传输
'secure' => false,
// httponly设置
'httponly' => '',
// 是否使用 setcookie
'setcookie' => true,
];
<?php
return [
'oa_key' => '5bdfcedb618e1e03abf18e391278c1f4',
'base_url' => 'http://oa.gonn.com.cn/',
'base_url' => 'https://oa.gonn.com.cn/',
'gys' => 'api.php?m=opensupplier&a=list&openkey=',
'type' => 'api.php?m=openfkinfo&a=fkinfor&openkey=',
'fk' => 'api.php?m=openemfk&a=create&openkey=',
......
<?php
return [
'type' => 'mysql',
'host' => '101.200.87.54',
'dbname' => 'pms',
'dbuser' => 'pms',
'dbpasswd' => 'CWib^nygsUeA4ay1',
'dbport' => '10036',
'dbcharset' => 'utf8'
];
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
// +----------------------------------------------------------------------
// | 会话设置
// +----------------------------------------------------------------------
return [
'id' => '',
// SESSION_ID的提交变量,解决flash上传跨域
'var_session_id' => '',
// SESSION 前缀
'prefix' => 'think',
// 驱动方式 支持redis memcache memcached
'type' => '',
// 是否自动开启 SESSION
'auto_start' => false,
];
......@@ -201,4 +201,7 @@ Route::get('certSettle/certs/:settle_id','em/CertSettle/certs');
Route::post('certSettle/save','em/CertSettle/store');
Route::any('region_data','em/region/region_list');
\ No newline at end of file
Route::any('region_data','em/region/region_list');
Route::get('charge','em/Charge/index');
Route::get('charge/merge/:pids','em/charge/merge');
......@@ -32,7 +32,21 @@ Route::get('/v1/basestate','api/v1.supplier.Assign/getBasestate'); //基站状
Route::get('/v1/permission','api/v1.supplier.Assign/getDataPermission'); //获取项目数据权限
Route::get('/v1/email','api/v1.supplier.Assign/getJzDataEmail'); //通过email获取用户权限
//电费
Route::get('/v2/payment','api/v2.common.Payment/index'); //缴费接口
Route::get('/v2/payment/test','api/v2.common.Payment/test'); //缴费test接口
Route::get('/v2/project/list','api/v2.common.Project/project_list'); //缴费test接口
\ No newline at end of file
Route::get('/v2/project/list','api/v2.common.Project/project_list'); //缴费test接口
Route::post('/v2/useage/index','api/v2.em.Useage/index'); //抄表单接口
Route::post('/v2/useage/check','api/v2.em.Useage/check'); //审核抄表单
Route::get('/v2/project','api/v2.common.Project/detail'); //项目详情
Route::get('/v2/proj_detail','api/v2.common.Project/detailAll'); //项目详情
Route::get('/v2/proinfo','api/v2.common.Project/info'); //项目详情
Route::get('/v2/projects','api/v2.common.Project/projects'); //项目详情
Route::get('/v2/contract/proj','api/v2.common.Contract/proj'); //项目详情
Route::get('/v2/projs','api/v2.common.Project/getProjectsFromApi'); //项目详情
Route::get('/v2/checkContract','api/v2.common.Project/checkContract'); //项目详情
deny from all
\ No newline at end of file
如何贡献我的源代码
===
此文档介绍了 ThinkPHP 团队的组成以及运转机制,您提交的代码将给 ThinkPHP 项目带来什么好处,以及如何才能加入我们的行列。
## 通过 Github 贡献代码
ThinkPHP 目前使用 Git 来控制程序版本,如果你想为 ThinkPHP 贡献源代码,请先大致了解 Git 的使用方法。我们目前把项目托管在 GitHub 上,任何 GitHub 用户都可以向我们贡献代码。
参与的方式很简单,`fork`一份 ThinkPHP 的代码到你的仓库中,修改后提交,并向我们发起`pull request`申请,我们会及时对代码进行审查并处理你的申请并。审查通过后,你的代码将被`merge`进我们的仓库中,这样你就会自动出现在贡献者名单里了,非常方便。
我们希望你贡献的代码符合:
* ThinkPHP 的编码规范
* 适当的注释,能让其他人读懂
* 遵循 Apache2 开源协议
**如果想要了解更多细节或有任何疑问,请继续阅读下面的内容**
### 注意事项
* 本项目代码格式化标准选用 [**PSR-2**](http://www.kancloud.cn/thinkphp/php-fig-psr/3141)
* 类名和类文件名遵循 [**PSR-4**](http://www.kancloud.cn/thinkphp/php-fig-psr/3144)
* 对于 Issues 的处理,请使用诸如 `fix #xxx(Issue ID)` 的 commit title 直接关闭 issue。
* 系统会自动在 PHP 5.4 5.5 5.6 7.0 和 HHVM 上测试修改,其中 HHVM 下的测试容许报错,请确保你的修改符合 PHP 5.4 ~ 5.6 和 PHP 7.0 的语法规范;
* 管理员不会合并造成 CI faild 的修改,若出现 CI faild 请检查自己的源代码或修改相应的[单元测试文件](tests)
## GitHub Issue
GitHub 提供了 Issue 功能,该功能可以用于:
* 提出 bug
* 提出功能改进
* 反馈使用体验
该功能不应该用于:
* 提出修改意见(涉及代码署名和修订追溯问题)
* 不友善的言论
## 快速修改
**GitHub 提供了快速编辑文件的功能**
1. 登录 GitHub 帐号;
2. 浏览项目文件,找到要进行修改的文件;
3. 点击右上角铅笔图标进行修改;
4. 填写 `Commit changes` 相关内容(Title 必填);
5. 提交修改,等待 CI 验证和管理员合并。
**若您需要一次提交大量修改,请继续阅读下面的内容**
## 完整流程
1. `fork`本项目;
2. 克隆(`clone`)你 `fork` 的项目到本地;
3. 新建分支(`branch`)并检出(`checkout`)新分支;
4. 添加本项目到你的本地 git 仓库作为上游(`upstream`);
5. 进行修改,若你的修改包含方法或函数的增减,请记得修改[单元测试文件](tests)
6. 变基(衍合 `rebase`)你的分支到上游 master 分支;
7. `push` 你的本地仓库到 GitHub;
8. 提交 `pull request`
9. 等待 CI 验证(若不通过则重复 5~7,GitHub 会自动更新你的 `pull request`);
10. 等待管理员处理,并及时 `rebase` 你的分支到上游 master 分支(若上游 master 分支有修改)。
*若有必要,可以 `git push -f` 强行推送 rebase 后的分支到自己的 `fork`*
*绝对不可以使用 `git push -f` 强行推送修改到上游*
### 注意事项
* 若对上述流程有任何不清楚的地方,请查阅 GIT 教程,如 [这个](http://backlogtool.com/git-guide/cn/)
* 对于代码**不同方面**的修改,请在自己 `fork` 的项目中**创建不同的分支**(原因参见`完整流程`第9条备注部分);
* 变基及交互式变基操作参见 [Git 交互式变基](http://pakchoi.me/2015/03/17/git-interactive-rebase/)
## 推荐资源
### 开发环境
* XAMPP for Windows 5.5.x
* WampServer (for Windows)
* upupw Apache PHP5.4 ( for Windows)
或自行安装
- Apache / Nginx
- PHP 5.4 ~ 5.6
- MySQL / MariaDB
*Windows 用户推荐添加 PHP bin 目录到 PATH,方便使用 composer*
*Linux 用户自行配置环境, Mac 用户推荐使用内置 Apache 配合 Homebrew 安装 PHP 和 MariaDB*
### 编辑器
Sublime Text 3 + phpfmt 插件
phpfmt 插件参数
```json
{
"autocomplete": true,
"enable_auto_align": true,
"format_on_save": true,
"indent_with_space": true,
"psr1_naming": false,
"psr2": true,
"version": 4
}
```
或其他 编辑器 / IDE 配合 PSR2 自动格式化工具
### Git GUI
* SourceTree
* GitHub Desktop
或其他 Git 图形界面客户端
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
namespace think;
// 载入Loader类
require __DIR__ . '/library/think/Loader.php';
// 注册自动加载
Loader::register();
// 注册错误和异常处理机制
Error::register();
// 实现日志接口
if (interface_exists('Psr\Log\LoggerInterface')) {
interface LoggerInterface extends \Psr\Log\LoggerInterface
{}
} else {
interface LoggerInterface
{}
}
// 注册类库别名
Loader::addClassAlias([
'App' => facade\App::class,
'Build' => facade\Build::class,
'Cache' => facade\Cache::class,
'Config' => facade\Config::class,
'Cookie' => facade\Cookie::class,
'Db' => Db::class,
'Debug' => facade\Debug::class,
'Env' => facade\Env::class,
'Facade' => Facade::class,
'Hook' => facade\Hook::class,
'Lang' => facade\Lang::class,
'Log' => facade\Log::class,
'Request' => facade\Request::class,
'Response' => facade\Response::class,
'Route' => facade\Route::class,
'Session' => facade\Session::class,
'Url' => facade\Url::class,
'Validate' => facade\Validate::class,
'View' => facade\View::class,
]);
{
"name": "topthink/framework",
"description": "the new thinkphp framework",
"type": "think-framework",
"keywords": [
"framework",
"thinkphp",
"ORM"
],
"homepage": "http://thinkphp.cn/",
"license": "Apache-2.0",
"authors": [
{
"name": "liu21st",
"email": "liu21st@gmail.com"
},
{
"name": "yunwuxin",
"email": "448901948@qq.com"
}
],
"require": {
"php": ">=5.6.0",
"topthink/think-installer": "2.*"
},
"require-dev": {
"phpunit/phpunit": "^5.0|^6.0",
"johnkary/phpunit-speedtrap": "^1.0",
"mikey179/vfsStream": "~1.6",
"phploc/phploc": "2.*",
"sebastian/phpcpd": "2.*",
"squizlabs/php_codesniffer": "2.*",
"phpdocumentor/reflection-docblock": "^2.0"
}
}
<?php
return [
// +----------------------------------------------------------------------
// | 应用设置
// +----------------------------------------------------------------------
'app' => [
// 应用名称
'app_name' => '',
// 应用地址
'app_host' => '',
// 应用调试模式
'app_debug' => false,
// 应用Trace
'app_trace' => false,
// 应用模式状态
'app_status' => '',
// 是否HTTPS
'is_https' => false,
// 入口自动绑定模块
'auto_bind_module' => false,
// 注册的根命名空间
'root_namespace' => [],
// 默认输出类型
'default_return_type' => 'html',
// 默认AJAX 数据返回格式,可选json xml ...
'default_ajax_return' => 'json',
// 默认JSONP格式返回的处理方法
'default_jsonp_handler' => 'jsonpReturn',
// 默认JSONP处理方法
'var_jsonp_handler' => 'callback',
// 默认时区
'default_timezone' => 'Asia/Shanghai',
// 是否开启多语言
'lang_switch_on' => false,
// 默认验证器
'default_validate' => '',
// 默认语言
'default_lang' => 'zh-cn',
// +----------------------------------------------------------------------
// | 模块设置
// +----------------------------------------------------------------------
// 自动搜索控制器
'controller_auto_search' => false,
// 操作方法前缀
'use_action_prefix' => false,
// 操作方法后缀
'action_suffix' => '',
// 默认的空控制器名
'empty_controller' => 'Error',
// 默认的空模块名
'empty_module' => '',
// 默认模块名
'default_module' => 'index',
// 是否支持多模块
'app_multi_module' => true,
// 禁止访问模块
'deny_module_list' => ['common'],
// 默认控制器名
'default_controller' => 'Index',
// 默认操作名
'default_action' => 'index',
// 是否自动转换URL中的控制器和操作名
'url_convert' => true,
// 默认的访问控制器层
'url_controller_layer' => 'controller',
// 应用类库后缀
'class_suffix' => false,
// 控制器类后缀
'controller_suffix' => false,
// +----------------------------------------------------------------------
// | URL请求设置
// +----------------------------------------------------------------------
// 默认全局过滤方法 用逗号分隔多个
'default_filter' => '',
// PATHINFO变量名 用于兼容模式
'var_pathinfo' => 's',
// 兼容PATH_INFO获取
'pathinfo_fetch' => ['ORIG_PATH_INFO', 'REDIRECT_PATH_INFO', 'REDIRECT_URL'],
// HTTPS代理标识
'https_agent_name' => '',
// IP代理获取标识
'http_agent_ip' => 'HTTP_X_REAL_IP',
// URL伪静态后缀
'url_html_suffix' => 'html',
// 域名根,如thinkphp.cn
'url_domain_root' => '',
// 表单请求类型伪装变量
'var_method' => '_method',
// 表单ajax伪装变量
'var_ajax' => '_ajax',
// 表单pjax伪装变量
'var_pjax' => '_pjax',
// 是否开启请求缓存 true自动缓存 支持设置请求缓存规则
'request_cache' => false,
// 请求缓存有效期
'request_cache_expire' => null,
// 全局请求缓存排除规则
'request_cache_except' => [],
// +----------------------------------------------------------------------
// | 路由设置
// +----------------------------------------------------------------------
// pathinfo分隔符
'pathinfo_depr' => '/',
// URL普通方式参数 用于自动生成
'url_common_param' => false,
// URL参数方式 0 按名称成对解析 1 按顺序解析
'url_param_type' => 0,
// 是否开启路由延迟解析
'url_lazy_route' => false,
// 是否强制使用路由
'url_route_must' => false,
// 合并路由规则
'route_rule_merge' => false,
// 路由是否完全匹配
'route_complete_match' => false,
// 使用注解路由
'route_annotation' => false,
// 默认的路由变量规则
'default_route_pattern' => '\w+',
// 是否开启路由缓存
'route_check_cache' => false,
// 路由缓存的Key自定义设置(闭包),默认为当前URL和请求类型的md5
'route_check_cache_key' => '',
// 路由缓存的设置
'route_cache_option' => [],
// +----------------------------------------------------------------------
// | 异常及错误设置
// +----------------------------------------------------------------------
// 默认跳转页面对应的模板文件
'dispatch_success_tmpl' => __DIR__ . '/tpl/dispatch_jump.tpl',
'dispatch_error_tmpl' => __DIR__ . '/tpl/dispatch_jump.tpl',
// 异常页面的模板文件
'exception_tmpl' => __DIR__ . '/tpl/think_exception.tpl',
// 错误显示信息,非调试模式有效
'error_message' => '页面错误!请稍后再试~',
// 显示错误信息
'show_error_msg' => false,
// 异常处理handle类 留空使用 \think\exception\Handle
'exception_handle' => '',
],
// +----------------------------------------------------------------------
// | 模板设置
// +----------------------------------------------------------------------
'template' => [
// 默认模板渲染规则 1 解析为小写+下划线 2 全部转换小写
'auto_rule' => 1,
// 模板引擎类型 支持 php think 支持扩展
'type' => 'Think',
// 视图基础目录,配置目录为所有模块的视图起始目录
'view_base' => '',
// 当前模板的视图目录 留空为自动获取
'view_path' => '',
// 模板后缀
'view_suffix' => 'html',
// 模板文件名分隔符
'view_depr' => DIRECTORY_SEPARATOR,
// 模板引擎普通标签开始标记
'tpl_begin' => '{',
// 模板引擎普通标签结束标记
'tpl_end' => '}',
// 标签库标签开始标记
'taglib_begin' => '{',
// 标签库标签结束标记
'taglib_end' => '}',
],
// +----------------------------------------------------------------------
// | 日志设置
// +----------------------------------------------------------------------
'log' => [
// 日志记录方式,内置 file socket 支持扩展
'type' => 'File',
// 日志保存目录
//'path' => LOG_PATH,
// 日志记录级别
'level' => [],
// 是否记录trace信息到日志
'record_trace' => false,
// 是否JSON格式记录
'json' => false,
],
// +----------------------------------------------------------------------
// | Trace设置 开启 app_trace 后 有效
// +----------------------------------------------------------------------
'trace' => [
// 内置Html Console 支持扩展
'type' => 'Html',
'file' => __DIR__ . '/tpl/page_trace.tpl',
],
// +----------------------------------------------------------------------
// | 缓存设置
// +----------------------------------------------------------------------
'cache' => [
// 驱动方式
'type' => 'File',
// 缓存保存目录
//'path' => CACHE_PATH,
// 缓存前缀
'prefix' => '',
// 缓存有效期 0表示永久缓存
'expire' => 0,
],
// +----------------------------------------------------------------------
// | 会话设置
// +----------------------------------------------------------------------
'session' => [
'id' => '',
// SESSION_ID的提交变量,解决flash上传跨域
'var_session_id' => '',
// SESSION 前缀
'prefix' => 'think',
// 驱动方式 支持redis memcache memcached
'type' => '',
// 是否自动开启 SESSION
'auto_start' => true,
'httponly' => true,
'secure' => false,
],
// +----------------------------------------------------------------------
// | Cookie设置
// +----------------------------------------------------------------------
'cookie' => [
// cookie 名称前缀
'prefix' => '',
// cookie 保存时间
'expire' => 0,
// cookie 保存路径
'path' => '/',
// cookie 有效域名
'domain' => '',
// cookie 启用安全传输
'secure' => false,
// httponly设置
'httponly' => '',
// 是否使用 setcookie
'setcookie' => true,
],
// +----------------------------------------------------------------------
// | 数据库设置
// +----------------------------------------------------------------------
'database' => [
// 数据库类型
'type' => 'mysql',
// 数据库连接DSN配置
'dsn' => '',
// 服务器地址
'hostname' => '127.0.0.1',
// 数据库名
'database' => '',
// 数据库用户名
'username' => 'root',
// 数据库密码
'password' => '',
// 数据库连接端口
'hostport' => '',
// 数据库连接参数
'params' => [],
// 数据库编码默认采用utf8
'charset' => 'utf8',
// 数据库表前缀
'prefix' => '',
// 数据库调试模式
'debug' => false,
// 数据库部署方式:0 集中式(单一服务器),1 分布式(主从服务器)
'deploy' => 0,
// 数据库读写是否分离 主从式有效
'rw_separate' => false,
// 读写分离后 主服务器数量
'master_num' => 1,
// 指定从服务器序号
'slave_no' => '',
// 是否严格检查字段是否存在
'fields_strict' => true,
// 数据集返回类型
'resultset_type' => 'array',
// 自动写入时间戳字段
'auto_timestamp' => false,
// 时间字段取出后的默认时间格式
'datetime_format' => 'Y-m-d H:i:s',
// 是否需要进行SQL性能分析
'sql_explain' => false,
// 查询对象
'query' => '\\think\\db\\Query',
],
//分页配置
'paginate' => [
'type' => 'bootstrap',
'var_page' => 'page',
'list_rows' => 15,
],
//控制台配置
'console' => [
'name' => 'Think Console',
'version' => '0.1',
'user' => null,
'auto_path' => '',
],
// 中间件配置
'middleware' => [
'default_namespace' => 'app\\http\\middleware\\',
],
];
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
//------------------------
// ThinkPHP 助手函数
//-------------------------
use think\Container;
use think\Db;
use think\exception\HttpException;
use think\exception\HttpResponseException;
use think\facade\Cache;
use think\facade\Config;
use think\facade\Cookie;
use think\facade\Debug;
use think\facade\Env;
use think\facade\Hook;
use think\facade\Lang;
use think\facade\Log;
use think\facade\Request;
use think\facade\Route;
use think\facade\Session;
use think\facade\Url;
use think\Response;
use think\route\RuleItem;
if (!function_exists('abort')) {
/**
* 抛出HTTP异常
* @param integer|Response $code 状态码 或者 Response对象实例
* @param string $message 错误信息
* @param array $header 参数
*/
function abort($code, $message = null, $header = [])
{
if ($code instanceof Response) {
throw new HttpResponseException($code);
} else {
throw new HttpException($code, $message, null, $header);
}
}
}
if (!function_exists('action')) {
/**
* 调用模块的操作方法 参数格式 [模块/控制器/]操作
* @param string $url 调用地址
* @param string|array $vars 调用参数 支持字符串和数组
* @param string $layer 要调用的控制层名称
* @param bool $appendSuffix 是否添加类名后缀
* @return mixed
*/
function action($url, $vars = [], $layer = 'controller', $appendSuffix = false)
{
return app()->action($url, $vars, $layer, $appendSuffix);
}
}
if (!function_exists('app')) {
/**
* 快速获取容器中的实例 支持依赖注入
* @param string $name 类名或标识 默认获取当前应用实例
* @param array $args 参数
* @param bool $newInstance 是否每次创建新的实例
* @return mixed|\think\App
*/
function app($name = 'think\App', $args = [], $newInstance = false)
{
return Container::get($name, $args, $newInstance);
}
}
if (!function_exists('behavior')) {
/**
* 执行某个行为(run方法) 支持依赖注入
* @param mixed $behavior 行为类名或者别名
* @param mixed $args 参数
* @return mixed
*/
function behavior($behavior, $args = null)
{
return Hook::exec($behavior, $args);
}
}
if (!function_exists('bind')) {
/**
* 绑定一个类到容器
* @access public
* @param string $abstract 类标识、接口
* @param mixed $concrete 要绑定的类、闭包或者实例
* @return Container
*/
function bind($abstract, $concrete = null)
{
return Container::getInstance()->bindTo($abstract, $concrete);
}
}
if (!function_exists('cache')) {
/**
* 缓存管理
* @param mixed $name 缓存名称,如果为数组表示进行缓存设置
* @param mixed $value 缓存值
* @param mixed $options 缓存参数
* @param string $tag 缓存标签
* @return mixed
*/
function cache($name, $value = '', $options = null, $tag = null)
{
if (is_array($options)) {
// 缓存操作的同时初始化
Cache::connect($options);
} elseif (is_array($name)) {
// 缓存初始化
return Cache::connect($name);
}
if ('' === $value) {
// 获取缓存
return 0 === strpos($name, '?') ? Cache::has(substr($name, 1)) : Cache::get($name);
} elseif (is_null($value)) {
// 删除缓存
return Cache::rm($name);
}
// 缓存数据
if (is_array($options)) {
$expire = isset($options['expire']) ? $options['expire'] : null; //修复查询缓存无法设置过期时间
} else {
$expire = is_numeric($options) ? $options : null; //默认快捷缓存设置过期时间
}
if (is_null($tag)) {
return Cache::set($name, $value, $expire);
} else {
return Cache::tag($tag)->set($name, $value, $expire);
}
}
}
if (!function_exists('call')) {
/**
* 调用反射执行callable 支持依赖注入
* @param mixed $callable 支持闭包等callable写法
* @param array $args 参数
* @return mixed
*/
function call($callable, $args = [])
{
return Container::getInstance()->invoke($callable, $args);
}
}
if (!function_exists('class_basename')) {
/**
* 获取类名(不包含命名空间)
*
* @param string|object $class
* @return string
*/
function class_basename($class)
{
$class = is_object($class) ? get_class($class) : $class;
return basename(str_replace('\\', '/', $class));
}
}
if (!function_exists('class_uses_recursive')) {
/**
*获取一个类里所有用到的trait,包括父类的
*
* @param $class
* @return array
*/
function class_uses_recursive($class)
{
if (is_object($class)) {
$class = get_class($class);
}
$results = [];
$classes = array_merge([$class => $class], class_parents($class));
foreach ($classes as $class) {
$results += trait_uses_recursive($class);
}
return array_unique($results);
}
}
if (!function_exists('config')) {
/**
* 获取和设置配置参数
* @param string|array $name 参数名
* @param mixed $value 参数值
* @return mixed
*/
function config($name = '', $value = null)
{
if (is_null($value) && is_string($name)) {
if ('.' == substr($name, -1)) {
return Config::pull(substr($name, 0, -1));
}
return 0 === strpos($name, '?') ? Config::has(substr($name, 1)) : Config::get($name);
} else {
return Config::set($name, $value);
}
}
}
if (!function_exists('container')) {
/**
* 获取容器对象实例
* @return Container
*/
function container()
{
return Container::getInstance();
}
}
if (!function_exists('controller')) {
/**
* 实例化控制器 格式:[模块/]控制器
* @param string $name 资源地址
* @param string $layer 控制层名称
* @param bool $appendSuffix 是否添加类名后缀
* @return \think\Controller
*/
function controller($name, $layer = 'controller', $appendSuffix = false)
{
return app()->controller($name, $layer, $appendSuffix);
}
}
if (!function_exists('cookie')) {
/**
* Cookie管理
* @param string|array $name cookie名称,如果为数组表示进行cookie设置
* @param mixed $value cookie值
* @param mixed $option 参数
* @return mixed
*/
function cookie($name, $value = '', $option = null)
{
if (is_array($name)) {
// 初始化
Cookie::init($name);
} elseif (is_null($name)) {
// 清除
Cookie::clear($value);
} elseif ('' === $value) {
// 获取
return 0 === strpos($name, '?') ? Cookie::has(substr($name, 1), $option) : Cookie::get($name);
} elseif (is_null($value)) {
// 删除
return Cookie::delete($name);
} else {
// 设置
return Cookie::set($name, $value, $option);
}
}
}
if (!function_exists('db')) {
/**
* 实例化数据库类
* @param string $name 操作的数据表名称(不含前缀)
* @param array|string $config 数据库配置参数
* @param bool $force 是否强制重新连接
* @return \think\db\Query
*/
function db($name = '', $config = [], $force = true)
{
return Db::connect($config, $force)->name($name);
}
}
if (!function_exists('debug')) {
/**
* 记录时间(微秒)和内存使用情况
* @param string $start 开始标签
* @param string $end 结束标签
* @param integer|string $dec 小数位 如果是m 表示统计内存占用
* @return mixed
*/
function debug($start, $end = '', $dec = 6)
{
if ('' == $end) {
Debug::remark($start);
} else {
return 'm' == $dec ? Debug::getRangeMem($start, $end) : Debug::getRangeTime($start, $end, $dec);
}
}
}
if (!function_exists('download')) {
/**
* 获取\think\response\Download对象实例
* @param string $filename 要下载的文件
* @param string $name 显示文件名
* @param bool $content 是否为内容
* @param integer $expire 有效期(秒)
* @return \think\response\Download
*/
function download($filename, $name = '', $content = false, $expire = 360, $openinBrowser = false)
{
return Response::create($filename, 'download')->name($name)->isContent($content)->expire($expire)->openinBrowser($openinBrowser);
}
}
if (!function_exists('dump')) {
/**
* 浏览器友好的变量输出
* @param mixed $var 变量
* @param boolean $echo 是否输出 默认为true 如果为false 则返回输出字符串
* @param string $label 标签 默认为空
* @return void|string
*/
function dump($var, $echo = true, $label = null)
{
return Debug::dump($var, $echo, $label);
}
}
if (!function_exists('env')) {
/**
* 获取环境变量值
* @access public
* @param string $name 环境变量名(支持二级 .号分割)
* @param string $default 默认值
* @return mixed
*/
function env($name = null, $default = null)
{
return Env::get($name, $default);
}
}
if (!function_exists('exception')) {
/**
* 抛出异常处理
*
* @param string $msg 异常消息
* @param integer $code 异常代码 默认为0
* @param string $exception 异常类
*
* @throws Exception
*/
function exception($msg, $code = 0, $exception = '')
{
$e = $exception ?: '\think\Exception';
throw new $e($msg, $code);
}
}
if (!function_exists('halt')) {
/**
* 调试变量并且中断输出
* @param mixed $var 调试变量或者信息
*/
function halt($var)
{
dump($var);
throw new HttpResponseException(new Response);
}
}
if (!function_exists('input')) {
/**
* 获取输入数据 支持默认值和过滤
* @param string $key 获取的变量名
* @param mixed $default 默认值
* @param string $filter 过滤方法
* @return mixed
*/
function input($key = '', $default = null, $filter = '')
{
if (0 === strpos($key, '?')) {
$key = substr($key, 1);
$has = true;
}
if ($pos = strpos($key, '.')) {
// 指定参数来源
$method = substr($key, 0, $pos);
if (in_array($method, ['get', 'post', 'put', 'patch', 'delete', 'route', 'param', 'request', 'session', 'cookie', 'server', 'env', 'path', 'file'])) {
$key = substr($key, $pos + 1);
} else {
$method = 'param';
}
} else {
// 默认为自动判断
$method = 'param';
}
if (isset($has)) {
return request()->has($key, $method, $default);
} else {
return request()->$method($key, $default, $filter);
}
}
}
if (!function_exists('json')) {
/**
* 获取\think\response\Json对象实例
* @param mixed $data 返回的数据
* @param integer $code 状态码
* @param array $header 头部
* @param array $options 参数
* @return \think\response\Json
*/
function json($data = [], $code = 200, $header = [], $options = [])
{
return Response::create($data, 'json', $code, $header, $options);
}
}
if (!function_exists('jsonp')) {
/**
* 获取\think\response\Jsonp对象实例
* @param mixed $data 返回的数据
* @param integer $code 状态码
* @param array $header 头部
* @param array $options 参数
* @return \think\response\Jsonp
*/
function jsonp($data = [], $code = 200, $header = [], $options = [])
{
return Response::create($data, 'jsonp', $code, $header, $options);
}
}
if (!function_exists('lang')) {
/**
* 获取语言变量值
* @param string $name 语言变量名
* @param array $vars 动态变量值
* @param string $lang 语言
* @return mixed
*/
function lang($name, $vars = [], $lang = '')
{
return Lang::get($name, $vars, $lang);
}
}
if (!function_exists('model')) {
/**
* 实例化Model
* @param string $name Model名称
* @param string $layer 业务层名称
* @param bool $appendSuffix 是否添加类名后缀
* @return \think\Model
*/
function model($name = '', $layer = 'model', $appendSuffix = false)
{
return app()->model($name, $layer, $appendSuffix);
}
}
if (!function_exists('parse_name')) {
/**
* 字符串命名风格转换
* type 0 将Java风格转换为C的风格 1 将C风格转换为Java的风格
* @param string $name 字符串
* @param integer $type 转换类型
* @param bool $ucfirst 首字母是否大写(驼峰规则)
* @return string
*/
function parse_name($name, $type = 0, $ucfirst = true)
{
if ($type) {
$name = preg_replace_callback('/_([a-zA-Z])/', function ($match) {
return strtoupper($match[1]);
}, $name);
return $ucfirst ? ucfirst($name) : lcfirst($name);
} else {
return strtolower(trim(preg_replace("/[A-Z]/", "_\\0", $name), "_"));
}
}
}
if (!function_exists('redirect')) {
/**
* 获取\think\response\Redirect对象实例
* @param mixed $url 重定向地址 支持Url::build方法的地址
* @param array|integer $params 额外参数
* @param integer $code 状态码
* @return \think\response\Redirect
*/
function redirect($url = [], $params = [], $code = 302)
{
if (is_integer($params)) {
$code = $params;
$params = [];
}
return Response::create($url, 'redirect', $code)->params($params);
}
}
if (!function_exists('request')) {
/**
* 获取当前Request对象实例
* @return Request
*/
function request()
{
return app('request');
}
}
if (!function_exists('response')) {
/**
* 创建普通 Response 对象实例
* @param mixed $data 输出数据
* @param int|string $code 状态码
* @param array $header 头信息
* @param string $type
* @return Response
*/
function response($data = '', $code = 200, $header = [], $type = 'html')
{
return Response::create($data, $type, $code, $header);
}
}
if (!function_exists('route')) {
/**
* 路由注册
* @param string $rule 路由规则
* @param mixed $route 路由地址
* @param array $option 路由参数
* @param array $pattern 变量规则
* @return RuleItem
*/
function route($rule, $route, $option = [], $pattern = [])
{
return Route::rule($rule, $route, '*', $option, $pattern);
}
}
if (!function_exists('session')) {
/**
* Session管理
* @param string|array $name session名称,如果为数组表示进行session设置
* @param mixed $value session值
* @param string $prefix 前缀
* @return mixed
*/
function session($name, $value = '', $prefix = null)
{
if (is_array($name)) {
// 初始化
Session::init($name);
} elseif (is_null($name)) {
// 清除
Session::clear($value);
} elseif ('' === $value) {
// 判断或获取
return 0 === strpos($name, '?') ? Session::has(substr($name, 1), $prefix) : Session::get($name, $prefix);
} elseif (is_null($value)) {
// 删除
return Session::delete($name, $prefix);
} else {
// 设置
return Session::set($name, $value, $prefix);
}
}
}
if (!function_exists('token')) {
/**
* 生成表单令牌
* @param string $name 令牌名称
* @param mixed $type 令牌生成方法
* @return string
*/
function token($name = '__token__', $type = 'md5')
{
$token = Request::token($name, $type);
return '<input type="hidden" name="' . $name . '" value="' . $token . '" />';
}
}
if (!function_exists('trace')) {
/**
* 记录日志信息
* @param mixed $log log信息 支持字符串和数组
* @param string $level 日志级别
* @return array|void
*/
function trace($log = '[think]', $level = 'log')
{
if ('[think]' === $log) {
return Log::getLog();
} else {
Log::record($log, $level);
}
}
}
if (!function_exists('trait_uses_recursive')) {
/**
* 获取一个trait里所有引用到的trait
*
* @param string $trait
* @return array
*/
function trait_uses_recursive($trait)
{
$traits = class_uses($trait);
foreach ($traits as $trait) {
$traits += trait_uses_recursive($trait);
}
return $traits;
}
}
if (!function_exists('url')) {
/**
* Url生成
* @param string $url 路由地址
* @param string|array $vars 变量
* @param bool|string $suffix 生成的URL后缀
* @param bool|string $domain 域名
* @return string
*/
function url($url = '', $vars = '', $suffix = true, $domain = false)
{
return Url::build($url, $vars, $suffix, $domain);
}
}
if (!function_exists('validate')) {
/**
* 实例化验证器
* @param string $name 验证器名称
* @param string $layer 业务层名称
* @param bool $appendSuffix 是否添加类名后缀
* @return \think\Validate
*/
function validate($name = '', $layer = 'validate', $appendSuffix = false)
{
return app()->validate($name, $layer, $appendSuffix);
}
}
if (!function_exists('view')) {
/**
* 渲染模板输出
* @param string $template 模板文件
* @param array $vars 模板变量
* @param integer $code 状态码
* @param callable $filter 内容过滤
* @return \think\response\View
*/
function view($template = '', $vars = [], $code = 200, $filter = null)
{
return Response::create($template, 'view', $code)->assign($vars)->filter($filter);
}
}
if (!function_exists('widget')) {
/**
* 渲染输出Widget
* @param string $name Widget名称
* @param array $data 传入的参数
* @return mixed
*/
function widget($name, $data = [])
{
return app()->action($name, $data, 'widget');
}
}
if (!function_exists('xml')) {
/**
* 获取\think\response\Xml对象实例
* @param mixed $data 返回的数据
* @param integer $code 状态码
* @param array $header 头部
* @param array $options 参数
* @return \think\response\Xml
*/
function xml($data = [], $code = 200, $header = [], $options = [])
{
return Response::create($data, 'xml', $code, $header, $options);
}
}
if (!function_exists('yaconf')) {
/**
* 获取yaconf配置
*
* @param string $name 配置参数名
* @param mixed $default 默认值
* @return mixed
*/
function yaconf($name, $default = null)
{
return Config::yaconf($name, $default);
}
}
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
// 核心中文语言包
return [
// 系统错误提示
'Undefined variable' => '未定义变量',
'Undefined index' => '未定义数组索引',
'Undefined offset' => '未定义数组下标',
'Parse error' => '语法解析错误',
'Type error' => '类型错误',
'Fatal error' => '致命错误',
'syntax error' => '语法错误',
// 框架核心错误提示
'dispatch type not support' => '不支持的调度类型',
'method param miss' => '方法参数错误',
'method not exists' => '方法不存在',
'function not exists' => '函数不存在',
'file not exists' => '文件不存在',
'module not exists' => '模块不存在',
'controller not exists' => '控制器不存在',
'class not exists' => '类不存在',
'property not exists' => '类的属性不存在',
'template not exists' => '模板文件不存在',
'illegal controller name' => '非法的控制器名称',
'illegal action name' => '非法的操作名称',
'url suffix deny' => '禁止的URL后缀访问',
'Route Not Found' => '当前访问路由未定义或不匹配',
'Undefined db type' => '未定义数据库类型',
'variable type error' => '变量类型错误',
'PSR-4 error' => 'PSR-4 规范错误',
'not support total' => '简洁模式下不能获取数据总数',
'not support last' => '简洁模式下不能获取最后一页',
'error session handler' => '错误的SESSION处理器类',
'not allow php tag' => '模板不允许使用PHP语法',
'not support' => '不支持',
'redisd master' => 'Redisd 主服务器错误',
'redisd slave' => 'Redisd 从服务器错误',
'must run at sae' => '必须在SAE运行',
'memcache init error' => '未开通Memcache服务,请在SAE管理平台初始化Memcache服务',
'KVDB init error' => '没有初始化KVDB,请在SAE管理平台初始化KVDB服务',
'fields not exists' => '数据表字段不存在',
'where express error' => '查询表达式错误',
'order express error' => '排序表达式错误',
'no data to update' => '没有任何数据需要更新',
'miss data to insert' => '缺少需要写入的数据',
'not support data' => '不支持的数据表达式',
'miss complex primary data' => '缺少复合主键数据',
'miss update condition' => '缺少更新条件',
'model data Not Found' => '模型数据不存在',
'table data not Found' => '表数据不存在',
'delete without condition' => '没有条件不会执行删除操作',
'miss relation data' => '缺少关联表数据',
'tag attr must' => '模板标签属性必须',
'tag error' => '模板标签错误',
'cache write error' => '缓存写入失败',
'sae mc write error' => 'SAE mc 写入错误',
'route name not exists' => '路由标识不存在(或参数不够)',
'invalid request' => '非法请求',
'bind attr has exists' => '模型的属性已经存在',
'relation data not exists' => '关联数据不存在',
'relation not support' => '关联不支持',
'chunk not support order' => 'Chunk不支持调用order方法',
'route pattern error' => '路由变量规则定义错误',
'route behavior will not support' => '路由行为废弃(使用中间件替代)',
'closure not support cache(true)' => '使用闭包查询不支持cache(true),请指定缓存Key',
// 上传错误信息
'unknown upload error' => '未知上传错误!',
'file write error' => '文件写入失败!',
'upload temp dir not found' => '找不到临时文件夹!',
'no file to uploaded' => '没有文件被上传!',
'only the portion of file is uploaded' => '文件只有部分被上传!',
'upload File size exceeds the maximum value' => '上传文件大小超过了最大值!',
'upload write error' => '文件上传保存错误!',
'has the same filename: {:filename}' => '存在同名文件:{:filename}',
'upload illegal files' => '非法上传文件',
'illegal image files' => '非法图片文件',
'extensions to upload is not allowed' => '上传文件后缀不允许',
'mimetype to upload is not allowed' => '上传文件MIME类型不允许!',
'filesize not match' => '上传文件大小不符!',
'directory {:path} creation failed' => '目录 {:path} 创建失败!',
'The middleware must return Response instance' => '中间件方法必须返回Response对象实例',
'The queue was exhausted, with no response returned' => '中间件队列为空',
// Validate Error Message
':attribute require' => ':attribute不能为空',
':attribute must' => ':attribute必须',
':attribute must be numeric' => ':attribute必须是数字',
':attribute must be integer' => ':attribute必须是整数',
':attribute must be float' => ':attribute必须是浮点数',
':attribute must be bool' => ':attribute必须是布尔值',
':attribute not a valid email address' => ':attribute格式不符',
':attribute not a valid mobile' => ':attribute格式不符',
':attribute must be a array' => ':attribute必须是数组',
':attribute must be yes,on or 1' => ':attribute必须是yes、on或者1',
':attribute not a valid datetime' => ':attribute不是一个有效的日期或时间格式',
':attribute not a valid file' => ':attribute不是有效的上传文件',
':attribute not a valid image' => ':attribute不是有效的图像文件',
':attribute must be alpha' => ':attribute只能是字母',
':attribute must be alpha-numeric' => ':attribute只能是字母和数字',
':attribute must be alpha-numeric, dash, underscore' => ':attribute只能是字母、数字和下划线_及破折号-',
':attribute not a valid domain or ip' => ':attribute不是有效的域名或者IP',
':attribute must be chinese' => ':attribute只能是汉字',
':attribute must be chinese or alpha' => ':attribute只能是汉字、字母',
':attribute must be chinese,alpha-numeric' => ':attribute只能是汉字、字母和数字',
':attribute must be chinese,alpha-numeric,underscore, dash' => ':attribute只能是汉字、字母、数字和下划线_及破折号-',
':attribute not a valid url' => ':attribute不是有效的URL地址',
':attribute not a valid ip' => ':attribute不是有效的IP地址',
':attribute must be dateFormat of :rule' => ':attribute必须使用日期格式 :rule',
':attribute must be in :rule' => ':attribute必须在 :rule 范围内',
':attribute be notin :rule' => ':attribute不能在 :rule 范围内',
':attribute must between :1 - :2' => ':attribute只能在 :1 - :2 之间',
':attribute not between :1 - :2' => ':attribute不能在 :1 - :2 之间',
'size of :attribute must be :rule' => ':attribute长度不符合要求 :rule',
'max size of :attribute must be :rule' => ':attribute长度不能超过 :rule',
'min size of :attribute must be :rule' => ':attribute长度不能小于 :rule',
':attribute cannot be less than :rule' => ':attribute日期不能小于 :rule',
':attribute cannot exceed :rule' => ':attribute日期不能超过 :rule',
':attribute not within :rule' => '不在有效期内 :rule',
'access IP is not allowed' => '不允许的IP访问',
'access IP denied' => '禁止的IP访问',
':attribute out of accord with :2' => ':attribute和确认字段:2不一致',
':attribute cannot be same with :2' => ':attribute和比较字段:2不能相同',
':attribute must greater than or equal :rule' => ':attribute必须大于等于 :rule',
':attribute must greater than :rule' => ':attribute必须大于 :rule',
':attribute must less than or equal :rule' => ':attribute必须小于等于 :rule',
':attribute must less than :rule' => ':attribute必须小于 :rule',
':attribute must equal :rule' => ':attribute必须等于 :rule',
':attribute has exists' => ':attribute已存在',
':attribute not conform to the rules' => ':attribute不符合指定规则',
'invalid Request method' => '无效的请求类型',
'invalid token' => '令牌数据无效',
'not conform to the rules' => '规则错误',
];
<?php
/**
* 用法:
* class index
* {
* use \traits\controller\Jump;
* public function index(){
* $this->error();
* $this->redirect();
* }
* }
*/
namespace traits\controller;
use think\Container;
use think\exception\HttpResponseException;
use think\Response;
use think\response\Redirect;
trait Jump
{
/**
* 应用实例
* @var \think\App
*/
protected $app;
/**
* 操作成功跳转的快捷方法
* @access protected
* @param mixed $msg 提示信息
* @param string $url 跳转的URL地址
* @param mixed $data 返回的数据
* @param integer $wait 跳转等待时间
* @param array $header 发送的Header信息
* @return void
*/
protected function success($msg = '', $url = null, $data = '', $wait = 3, array $header = [])
{
if (is_null($url) && isset($_SERVER["HTTP_REFERER"])) {
$url = $_SERVER["HTTP_REFERER"];
} elseif ('' !== $url) {
$url = (strpos($url, '://') || 0 === strpos($url, '/')) ? $url : Container::get('url')->build($url);
}
$result = [
'code' => 1,
'msg' => $msg,
'data' => $data,
'url' => $url,
'wait' => $wait,
];
$type = $this->getResponseType();
// 把跳转模板的渲染下沉,这样在 response_send 行为里通过getData()获得的数据是一致性的格式
if ('html' == strtolower($type)) {
$type = 'jump';
}
$response = Response::create($result, $type)->header($header)->options(['jump_template' => $this->app['config']->get('dispatch_success_tmpl')]);
throw new HttpResponseException($response);
}
/**
* 操作错误跳转的快捷方法
* @access protected
* @param mixed $msg 提示信息
* @param string $url 跳转的URL地址
* @param mixed $data 返回的数据
* @param integer $wait 跳转等待时间
* @param array $header 发送的Header信息
* @return void
*/
protected function error($msg = '', $url = null, $data = '', $wait = 3, array $header = [])
{
$type = $this->getResponseType();
if (is_null($url)) {
$url = $this->app['request']->isAjax() ? '' : 'javascript:history.back(-1);';
} elseif ('' !== $url) {
$url = (strpos($url, '://') || 0 === strpos($url, '/')) ? $url : $this->app['url']->build($url);
}
$result = [
'code' => 0,
'msg' => $msg,
'data' => $data,
'url' => $url,
'wait' => $wait,
];
if ('html' == strtolower($type)) {
$type = 'jump';
}
$response = Response::create($result, $type)->header($header)->options(['jump_template' => $this->app['config']->get('dispatch_error_tmpl')]);
throw new HttpResponseException($response);
}
/**
* 返回封装后的API数据到客户端
* @access protected
* @param mixed $data 要返回的数据
* @param integer $code 返回的code
* @param mixed $msg 提示信息
* @param string $type 返回数据格式
* @param array $header 发送的Header信息
* @return void
*/
protected function result($data, $code = 0, $msg = '', $type = '', array $header = [])
{
$result = [
'code' => $code,
'msg' => $msg,
'time' => time(),
'data' => $data,
];
$type = $type ?: $this->getResponseType();
$response = Response::create($result, $type)->header($header);
throw new HttpResponseException($response);
}
/**
* URL重定向
* @access protected
* @param string $url 跳转的URL表达式
* @param array|integer $params 其它URL参数
* @param integer $code http code
* @param array $with 隐式传参
* @return void
*/
protected function redirect($url, $params = [], $code = 302, $with = [])
{
$response = new Redirect($url);
if (is_integer($params)) {
$code = $params;
$params = [];
}
$response->code($code)->params($params)->with($with);
throw new HttpResponseException($response);
}
/**
* 获取当前的response 输出类型
* @access protected
* @return string
*/
protected function getResponseType()
{
if (!$this->app) {
$this->app = Container::get('app');
}
$isAjax = $this->app['request']->isAjax();
$config = $this->app['config'];
return $isAjax
? $config->get('default_ajax_return')
: $config->get('default_return_type');
}
}
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="./base.php"
failOnRisky="true"
failOnWarning="true"
>
<php>
<ini name="error_reporting" value="-1" />
<ini name="intl.default_locale" value="en" />
<ini name="intl.error_level" value="0" />
<ini name="memory_limit" value="-1" />
<env name="DUMP_LIGHT_ARRAY" value="" />
<env name="DUMP_STRING_LENGTH" value="" />
<env name="LDAP_HOST" value="127.0.0.1" />
<env name="LDAP_PORT" value="3389" />
<env name="REDIS_HOST" value="localhost" />
<env name="MEMCACHED_HOST" value="localhost" />
</php>
<testsuites>
<testsuite name="ThinkPHP Test Suite">
<directory>./library/think/*/tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./library/</directory>
<exclude>
<directory>./library/think/*/tests</directory>
<directory>./library/think/*/assets</directory>
<directory>./library/think/*/resources</directory>
<directory>./library/think/*/vendor</directory>
</exclude>
</whitelist>
</filter>
</phpunit>
\ No newline at end of file
<?php
namespace {$app}\{$module}{layer};
class Index{$suffix}
{
public function index()
{
return '<style type="text/css">*{ padding: 0; margin: 0; } div{ padding: 4px 48px;} a{color:#2E5CD5;cursor: pointer;text-decoration: none} a:hover{text-decoration:underline; } body{ background: #fff; font-family: "Century Gothic","Microsoft yahei"; color: #333;font-size:18px;} h1{ font-size: 100px; font-weight: normal; margin-bottom: 12px; } p{ line-height: 1.6em; font-size: 42px }</style><div style="padding: 24px 48px;"> <h1>:) </h1><p> ThinkPHP V5.1<br/><span style="font-size:30px">12载初心不改(2006-2018) - 你值得信赖的PHP框架</span></p></div><script type="text/javascript" src="https://tajs.qq.com/stats?sId=64890268" charset="UTF-8"></script><script type="text/javascript" src="https://e.topthink.com/Public/static/client.js"></script><think id="eab4b9f840753f8e7"></think>';
}
}
{__NOLAYOUT__}<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"/>
<title>跳转提示</title>
<style type="text/css">
*{ padding: 0; margin: 0; }
body{ background: #fff; font-family: "Microsoft Yahei","Helvetica Neue",Helvetica,Arial,sans-serif; color: #333; font-size: 16px; }
.system-message{ padding: 24px 48px; }
.system-message h1{ font-size: 100px; font-weight: normal; line-height: 120px; margin-bottom: 12px; }
.system-message .jump{ padding-top: 10px; }
.system-message .jump a{ color: #333; }
.system-message .success,.system-message .error{ line-height: 1.8em; font-size: 36px; }
.system-message .detail{ font-size: 12px; line-height: 20px; margin-top: 12px; display: none; }
</style>
</head>
<body>
<div class="system-message">
<?php switch ($code) {?>
<?php case 1:?>
<h1>:)</h1>
<p class="success"><?php echo(strip_tags($msg));?></p>
<?php break;?>
<?php case 0:?>
<h1>:(</h1>
<p class="error"><?php echo(strip_tags($msg));?></p>
<?php break;?>
<?php } ?>
<p class="detail"></p>
<p class="jump">
页面自动 <a id="href" href="<?php echo($url);?>">跳转</a> 等待时间: <b id="wait"><?php echo($wait);?></b>
</p>
</div>
<script type="text/javascript">
(function(){
var wait = document.getElementById('wait'),
href = document.getElementById('href').href;
var interval = setInterval(function(){
var time = --wait.innerHTML;
if(time <= 0) {
location.href = href;
clearInterval(interval);
};
}, 1000);
})();
</script>
</body>
</html>
<div id="think_page_trace" style="position: fixed;bottom:0;right:0;font-size:14px;width:100%;z-index: 999999;color: #000;text-align:left;font-family:'微软雅黑';">
<div id="think_page_trace_tab" style="display: none;background:white;margin:0;height: 250px;">
<div id="think_page_trace_tab_tit" style="height:30px;padding: 6px 12px 0;border-bottom:1px solid #ececec;border-top:1px solid #ececec;font-size:16px">
<?php foreach ($trace as $key => $value) {?>
<span style="color:#000;padding-right:12px;height:30px;line-height:30px;display:inline-block;margin-right:3px;cursor:pointer;font-weight:700"><?php echo $key ?></span>
<?php }?>
</div>
<div id="think_page_trace_tab_cont" style="overflow:auto;height:212px;padding:0;line-height: 24px">
<?php foreach ($trace as $info) {?>
<div style="display:none;">
<ol style="padding: 0; margin:0">
<?php
if (is_array($info)) {
foreach ($info as $k => $val) {
echo '<li style="border-bottom:1px solid #EEE;font-size:14px;padding:0 12px">' . (is_numeric($k) ? '' : $k.' : ') . htmlentities(print_r($val,true), ENT_COMPAT, 'utf-8') . '</li>';
}
}
?>
</ol>
</div>
<?php }?>
</div>
</div>
<div id="think_page_trace_close" style="display:none;text-align:right;height:15px;position:absolute;top:10px;right:12px;cursor:pointer;"><img style="vertical-align:top;" src="data:image/gif;base64,R0lGODlhDwAPAJEAAAAAAAMDA////wAAACH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4wLWMwNjAgNjEuMTM0Nzc3LCAyMDEwLzAyLzEyLTE3OjMyOjAwICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MUQxMjc1MUJCQUJDMTFFMTk0OUVGRjc3QzU4RURFNkEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MUQxMjc1MUNCQUJDMTFFMTk0OUVGRjc3QzU4RURFNkEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDoxRDEyNzUxOUJBQkMxMUUxOTQ5RUZGNzdDNThFREU2QSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoxRDEyNzUxQUJBQkMxMUUxOTQ5RUZGNzdDNThFREU2QSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PgH//v38+/r5+Pf29fTz8vHw7+7t7Ovq6ejn5uXk4+Lh4N/e3dzb2tnY19bV1NPS0dDPzs3My8rJyMfGxcTDwsHAv769vLu6ubi3trW0s7KxsK+urayrqqmop6alpKOioaCfnp2cm5qZmJeWlZSTkpGQj46NjIuKiYiHhoWEg4KBgH9+fXx7enl4d3Z1dHNycXBvbm1sa2ppaGdmZWRjYmFgX15dXFtaWVhXVlVUU1JRUE9OTUxLSklIR0ZFRENCQUA/Pj08Ozo5ODc2NTQzMjEwLy4tLCsqKSgnJiUkIyIhIB8eHRwbGhkYFxYVFBMSERAPDg0MCwoJCAcGBQQDAgEAACH5BAAAAAAALAAAAAAPAA8AAAIdjI6JZqotoJPR1fnsgRR3C2jZl3Ai9aWZZooV+RQAOw==" /></div>
</div>
<div id="think_page_trace_open" style="height:30px;float:right;text-align:right;overflow:hidden;position:fixed;bottom:0;right:0;color:#000;line-height:30px;cursor:pointer;">
<div style="background:#232323;color:#FFF;padding:0 6px;float:right;line-height:30px;font-size:14px"><?php echo \think\Container::get('debug')->getUseTime().'s ';?></div>
<img width="30" style="" title="ShowPageTrace" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjVERDVENkZGQjkyNDExRTE5REY3RDQ5RTQ2RTRDQUJCIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjVERDVENzAwQjkyNDExRTE5REY3RDQ5RTQ2RTRDQUJCIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NURENUQ2RkRCOTI0MTFFMTlERjdENDlFNDZFNENBQkIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NURENUQ2RkVCOTI0MTFFMTlERjdENDlFNDZFNENBQkIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5fx6IRAAAMCElEQVR42sxae3BU1Rk/9+69+8xuNtkHJAFCSIAkhMgjCCJQUi0GtEIVbP8Qq9LH2No6TmfaztjO2OnUdvqHFMfOVFTqIK0vUEEeqUBARCsEeYQkEPJoEvIiELLvvc9z+p27u2F3s5tsBB1OZiebu5dzf7/v/L7f952zMM8cWIwY+Mk2ulCp92Fnq3XvnzArr2NZnYNldDp0Gw+/OEQ4+obQn5D+4Ubb22+YOGsWi/Todh8AHglKEGkEsnHBQ162511GZFgW6ZCBM9/W4H3iNSQqIe09O196dLKX7d1O39OViP/wthtkND62if/wj/DbMpph8BY/m9xy8BoBmQk+mHqZQGNy4JYRwCoRbwa8l4JXw6M+orJxpU0U6ToKy/5bQsAiTeokGKkTx46RRxxEUgrwGgF4MWNNEJCGgYTvpgnY1IJWg5RzfqLgvcIgktX0i8dmMlFA8qCQ5L0Z/WObPLUxT1i4lWSYDISoEfBYGvM+LlMQQdkLHoWRRZ8zYQI62Thswe5WTORGwNXDcGjqeOA9AF7B8rhzsxMBEoJ8oJKaqPu4hblHMCMPwl9XeNWyb8xkB/DDGYKfMAE6aFL7xesZ389JlgG3XHEMI6UPDOP6JHHu67T2pwNPI69mCP4rEaBDUAJaKc/AOuXiwH07VCS3w5+UQMAuF/WqGI+yFIwVNBwemBD4r0wgQiKoFZa00sEYTwss32lA1tPwVxtc8jQ5/gWCwmGCyUD8vRT0sHBFW4GJDvZmrJFWRY1EkrGA6ZB8/10fOZSSj0E6F+BSP7xidiIzhBmKB09lEwHPkG+UQIyEN44EBiT5vrv2uJXyPQqSqO930fxvcvwbR/+JAkD9EfASgI9EHlp6YiHO4W+cAB20SnrFqxBbNljiXf1Pl1K2S0HCWfiog3YlAD5RGwwxK6oUjTweuVigLjyB0mX410mAFnMoVK1lvvUvgt8fUJH0JVyjuvcmg4dE5mUiFtD24AZ4qBVELxXKS+pMxN43kSdzNwudJ+bQbLlmnxvPOQoCugSap1GnSRoG8KOiKbH+rIA0lEeSAg3y6eeQ6XI2nrYnrPM89bUTgI0Pdqvl50vlNbtZxDUBcLBK0kPd5jPziyLdojJIN0pq5/mdzwL4UVvVInV5ncQEPNOUxa9d0TU+CW5l+FoI0GSDKHVVSOs+0KOsZoxwOzSZNFGv0mQ9avyLCh2Hpm+70Y0YJoJVgmQv822wnDC8Miq6VjJ5IFed0QD1YiAbT+nQE8v/RMZfmgmcCRHIIu7Bmcp39oM9fqEychcA747KxQ/AEyqQonl7hATtJmnhO2XYtgcia01aSbVMenAXrIomPcLgEBA4liGBzFZAT8zBYqW6brI67wg8sFVhxBhwLwBP2+tqBQqqK7VJKGh/BRrfTr6nWL7nYBaZdBJHqrX3kPEPap56xwE/GvjJTRMADeMCdcGpGXL1Xh4ZL8BDOlWkUpegfi0CeDzeA5YITzEnddv+IXL+UYCmqIvqC9UlUC/ki9FipwVjunL3yX7dOTLeXmVMAhbsGporPfyOBTm/BJ23gTVehsvXRnSewagUfpBXF3p5pygKS7OceqTjb7h2vjr/XKm0ZofKSI2Q/J102wHzatZkJPYQ5JoKsuK+EoHJakVzubzuLQDepCKllTZi9AG0DYg9ZLxhFaZsOu7bvlmVI5oPXJMQJcHxHClSln1apFTvAimeg48u0RWFeZW4lVcjbQWZuIQK1KozZfIDO6CSQmQQXdpBaiKZyEWThVK1uEc6v7V7uK0ysduExPZx4vysDR+4SelhBYm0R6LBuR4PXts8MYMcJPsINo4YZCDLj0sgB0/vLpPXvA2Tn42Cv5rsLulGubzW0sEd3d4W/mJt2Kck+DzDMijfPLOjyrDhXSh852B+OvflqAkoyXO1cYfujtc/i3jJSAwhgfFlp20laMLOku/bC7prgqW7lCn4auE5NhcXPd3M7x70+IceSgZvNljCd9k3fLjYsPElqLR14PXQZqD2ZNkkrAB79UeJUebFQmXpf8ZcAQt2XrMQdyNUVBqZoUzAFyp3V3xi/MubUA/mCT4Fhf038PC8XplhWnCmnK/ZzyC2BSTRSqKVOuY2kB8Jia0lvvRIVoP+vVWJbYarf6p655E2/nANBMCWkgD49DA0VAMyI1OLFMYCXiU9bmzi9/y5i/vsaTpHPHidTofzLbM65vMPva9HlovgXp0AvjtaqYMfDD0/4mAsYE92pxa+9k1QgCnRVObCpojpzsKTPvayPetTEgBdwnssjuc0kOBFX+q3HwRQxdrOLAqeYRjkMk/trTSu2Z9Lik7CfF0AvjtqAhS4NHobGXUnB5DQs8hG8p/wMX1r4+8xkmyvQ50JVq72TVeXbz3HvpWaQJi57hJYTw4kGbtS+C2TigQUtZUX+X27QQq2ePBZBru/0lxTm8fOOQ5yaZOZMAV+he4FqIMB+LQB0UgMSajANX29j+vbmly8ipRvHeSQoQOkM5iFXcPQCVwDMs5RBCQmaPOyvbNd6uwvQJ183BZQG3Zc+Eiv7vQOKu8YeDmMcJlt2ckyftVeMIGLBCmdMHl/tFILYwGPjXWO3zOfSq/+om+oa7Mlh2fpSsRGLp7RAW3FUVjNHgiMhyE6zBFjM2BdkdJGO7nP1kJXWAtBuBpPIAu7f+hhu7bFXIuC5xWrf0X2xreykOsUyKkF2gwadbrXDcXrfKxR43zGcSj4t/cCgr+a1iy6EjE5GYktUCl9fwfMeylyooGF48bN2IGLTw8x7StS7sj8TF9FmPGWQhm3rRR+o9lhvjJvSYAdfDUevI1M6bnX/OwWaDMOQ8RPgKRo0eulBTdT8AW2kl8e9L7UHghHwMfLiZPNoSpx0yugpQZaFqKWqxVSM3a2pN1SAhC2jf94I7ybBI7EL5A2Wvu5ht3xsoEt4+Ay/abXgCQAxyOeDsDlTCQzy75ohcGgv9Tra9uiymRUYTLrswOLlCdfAQf7HPDQQ4ErAH5EDXB9cMxWYpjtXApRncojS0sbV/cCgHTHwGNBJy+1PQE2x56FpaVR7wfQGZ37V+V+19EiHNvR6q1fRUjqvbjbMq1/qfHxbTrE10ePY2gPFk48D2CVMTf1AF4PXvyYR9dV6Wf7H413m3xTWQvYGhQ7mfYwA5mAX+18Vue05v/8jG/fZX/IW5MKPKtjSYlt0ellxh+/BOCPAwYaeVr0QofZFxJWVWC8znG70au6llVmktsF0bfHF6k8fvZ5esZJbwHwwnjg59tXz6sL/P0NUZDuSNu1mnJ8Vab17+cy005A9wtOpp3i0bZdpJLUil00semAwN45LgEViZYe3amNye0B6A9chviSlzXVsFtyN5/1H3gaNmMpn8Fz0GpYFp6Zw615H/LpUuRQQDMCL82n5DpBSawkvzIdN2ypiT8nSLth8Pk9jnjwdFzH3W4XW6KMBfwB569NdcGX93mC16tTflcArcYUc/mFuYbV+8zY0SAjAVoNErNgWjtwumJ3wbn/HlBFYdxHvSkJJEc+Ngal9opSwyo9YlITX2C/P/+gf8sxURSLR+mcZUmeqaS9wrh6vxW5zxFCOqFi90RbDWq/YwZmnu1+a6OvdpvRqkNxxe44lyl4OobEnpKA6Uox5EfH9xzPs/HRKrTPWdIQrK1VZDU7ETiD3Obpl+8wPPCRBbkbwNtpW9AbBe5L1SMlj3tdTxk/9W47JUmqS5HU+JzYymUKXjtWVmT9RenIhgXc+nroWLyxXJhmL112OdB8GCsk4f8oZJucnvmmtR85mBn10GZ0EKSCMUSAR3ukcXd5s7LvLD3me61WkuTCpJzYAyRurMB44EdEJzTfU271lUJC03YjXJXzYOGZwN4D8eB5jlfLrdWfzGRW7icMPfiSO6Oe7s20bmhdgLX4Z23B+s3JgQESzUDiMboSzDMHFpNMwccGePauhfwjzwnI2wu9zKGgEFg80jcZ7MHllk07s1H+5yojtUQTlH4nFdLKTGwDmPbIklOb1L1zO4T6N8NCuDLFLS/C63c0eNRimZ++s5BMBHxU11jHchI9oFVUxRh/eMDzHEzGYu0Lg8gJ7oS/tFCwoic44fyUtix0n/46vP4bf+//BRgAYwDDar4ncHIAAAAASUVORK5CYII=">
</div>
<script type="text/javascript">
(function(){
var tab_tit = document.getElementById('think_page_trace_tab_tit').getElementsByTagName('span');
var tab_cont = document.getElementById('think_page_trace_tab_cont').getElementsByTagName('div');
var open = document.getElementById('think_page_trace_open');
var close = document.getElementById('think_page_trace_close').children[0];
var trace = document.getElementById('think_page_trace_tab');
var cookie = document.cookie.match(/thinkphp_show_page_trace=(\d\|\d)/);
var history = (cookie && typeof cookie[1] != 'undefined' && cookie[1].split('|')) || [0,0];
open.onclick = function(){
trace.style.display = 'block';
this.style.display = 'none';
close.parentNode.style.display = 'block';
history[0] = 1;
document.cookie = 'thinkphp_show_page_trace='+history.join('|')
}
close.onclick = function(){
trace.style.display = 'none';
this.parentNode.style.display = 'none';
open.style.display = 'block';
history[0] = 0;
document.cookie = 'thinkphp_show_page_trace='+history.join('|')
}
for(var i = 0; i < tab_tit.length; i++){
tab_tit[i].onclick = (function(i){
return function(){
for(var j = 0; j < tab_cont.length; j++){
tab_cont[j].style.display = 'none';
tab_tit[j].style.color = '#999';
}
tab_cont[i].style.display = 'block';
tab_tit[i].style.color = '#000';
history[1] = i;
document.cookie = 'thinkphp_show_page_trace='+history.join('|')
}
})(i)
}
parseInt(history[0]) && open.click();
tab_tit[history[1]].click();
})();
</script>
<?php
if(!function_exists('parse_padding')){
function parse_padding($source)
{
$length = strlen(strval(count($source['source']) + $source['first']));
return 40 + ($length - 1) * 8;
}
}
if(!function_exists('parse_class')){
function parse_class($name)
{
$names = explode('\\', $name);
return '<abbr title="'.$name.'">'.end($names).'</abbr>';
}
}
if(!function_exists('parse_file')){
function parse_file($file, $line)
{
return '<a class="toggle" title="'."{$file} line {$line}".'">'.basename($file)." line {$line}".'</a>';
}
}
if(!function_exists('parse_args')){
function parse_args($args)
{
$result = [];
foreach ($args as $key => $item) {
switch (true) {
case is_object($item):
$value = sprintf('<em>object</em>(%s)', parse_class(get_class($item)));
break;
case is_array($item):
if(count($item) > 3){
$value = sprintf('[%s, ...]', parse_args(array_slice($item, 0, 3)));
} else {
$value = sprintf('[%s]', parse_args($item));
}
break;
case is_string($item):
if(strlen($item) > 20){
$value = sprintf(
'\'<a class="toggle" title="%s">%s...</a>\'',
htmlentities($item),
htmlentities(substr($item, 0, 20))
);
} else {
$value = sprintf("'%s'", htmlentities($item));
}
break;
case is_int($item):
case is_float($item):
$value = $item;
break;
case is_null($item):
$value = '<em>null</em>';
break;
case is_bool($item):
$value = '<em>' . ($item ? 'true' : 'false') . '</em>';
break;
case is_resource($item):
$value = '<em>resource</em>';
break;
default:
$value = htmlentities(str_replace("\n", '', var_export(strval($item), true)));
break;
}
$result[] = is_int($key) ? $value : "'{$key}' => {$value}";
}
return implode(', ', $result);
}
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>系统发生错误</title>
<meta name="robots" content="noindex,nofollow" />
<style>
/* Base */
body {
color: #333;
font: 16px Verdana, "Helvetica Neue", helvetica, Arial, 'Microsoft YaHei', sans-serif;
margin: 0;
padding: 0 20px 20px;
}
h1{
margin: 10px 0 0;
font-size: 28px;
font-weight: 500;
line-height: 32px;
}
h2{
color: #4288ce;
font-weight: 400;
padding: 6px 0;
margin: 6px 0 0;
font-size: 18px;
border-bottom: 1px solid #eee;
}
h3{
margin: 12px;
font-size: 16px;
font-weight: bold;
}
abbr{
cursor: help;
text-decoration: underline;
text-decoration-style: dotted;
}
a{
color: #868686;
cursor: pointer;
}
a:hover{
text-decoration: underline;
}
.line-error{
background: #f8cbcb;
}
.echo table {
width: 100%;
}
.echo pre {
padding: 16px;
overflow: auto;
font-size: 85%;
line-height: 1.45;
background-color: #f7f7f7;
border: 0;
border-radius: 3px;
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
}
.echo pre > pre {
padding: 0;
margin: 0;
}
/* Exception Info */
.exception {
margin-top: 20px;
}
.exception .message{
padding: 12px;
border: 1px solid #ddd;
border-bottom: 0 none;
line-height: 18px;
font-size:16px;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
font-family: Consolas,"Liberation Mono",Courier,Verdana,"微软雅黑";
}
.exception .code{
float: left;
text-align: center;
color: #fff;
margin-right: 12px;
padding: 16px;
border-radius: 4px;
background: #999;
}
.exception .source-code{
padding: 6px;
border: 1px solid #ddd;
background: #f9f9f9;
overflow-x: auto;
}
.exception .source-code pre{
margin: 0;
}
.exception .source-code pre ol{
margin: 0;
color: #4288ce;
display: inline-block;
min-width: 100%;
box-sizing: border-box;
font-size:14px;
font-family: "Century Gothic",Consolas,"Liberation Mono",Courier,Verdana;
padding-left: <?php echo (isset($source) && !empty($source)) ? parse_padding($source) : 40; ?>px;
}
.exception .source-code pre li{
border-left: 1px solid #ddd;
height: 18px;
line-height: 18px;
}
.exception .source-code pre code{
color: #333;
height: 100%;
display: inline-block;
border-left: 1px solid #fff;
font-size:14px;
font-family: Consolas,"Liberation Mono",Courier,Verdana,"微软雅黑";
}
.exception .trace{
padding: 6px;
border: 1px solid #ddd;
border-top: 0 none;
line-height: 16px;
font-size:14px;
font-family: Consolas,"Liberation Mono",Courier,Verdana,"微软雅黑";
}
.exception .trace ol{
margin: 12px;
}
.exception .trace ol li{
padding: 2px 4px;
}
.exception div:last-child{
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
}
/* Exception Variables */
.exception-var table{
width: 100%;
margin: 12px 0;
box-sizing: border-box;
table-layout:fixed;
word-wrap:break-word;
}
.exception-var table caption{
text-align: left;
font-size: 16px;
font-weight: bold;
padding: 6px 0;
}
.exception-var table caption small{
font-weight: 300;
display: inline-block;
margin-left: 10px;
color: #ccc;
}
.exception-var table tbody{
font-size: 13px;
font-family: Consolas,"Liberation Mono",Courier,"微软雅黑";
}
.exception-var table td{
padding: 0 6px;
vertical-align: top;
word-break: break-all;
}
.exception-var table td:first-child{
width: 28%;
font-weight: bold;
white-space: nowrap;
}
.exception-var table td pre{
margin: 0;
}
/* Copyright Info */
.copyright{
margin-top: 24px;
padding: 12px 0;
border-top: 1px solid #eee;
}
/* SPAN elements with the classes below are added by prettyprint. */
pre.prettyprint .pln { color: #000 } /* plain text */
pre.prettyprint .str { color: #080 } /* string content */
pre.prettyprint .kwd { color: #008 } /* a keyword */
pre.prettyprint .com { color: #800 } /* a comment */
pre.prettyprint .typ { color: #606 } /* a type name */
pre.prettyprint .lit { color: #066 } /* a literal value */
/* punctuation, lisp open bracket, lisp close bracket */
pre.prettyprint .pun, pre.prettyprint .opn, pre.prettyprint .clo { color: #660 }
pre.prettyprint .tag { color: #008 } /* a markup tag name */
pre.prettyprint .atn { color: #606 } /* a markup attribute name */
pre.prettyprint .atv { color: #080 } /* a markup attribute value */
pre.prettyprint .dec, pre.prettyprint .var { color: #606 } /* a declaration; a variable name */
pre.prettyprint .fun { color: red } /* a function name */
</style>
</head>
<body>
<div class="echo">
<?php echo $echo;?>
</div>
<?php if(\think\facade\App::isDebug()) { ?>
<div class="exception">
<div class="message">
<div class="info">
<div>
<h2>[<?php echo $code; ?>]&nbsp;<?php echo sprintf('%s in %s', parse_class($name), parse_file($file, $line)); ?></h2>
</div>
<div><h1><?php echo nl2br(htmlentities($message)); ?></h1></div>
</div>
</div>
<?php if(!empty($source)){?>
<div class="source-code">
<pre class="prettyprint lang-php"><ol start="<?php echo $source['first']; ?>"><?php foreach ((array) $source['source'] as $key => $value) { ?><li class="line-<?php echo $key + $source['first']; ?>"><code><?php echo htmlentities($value); ?></code></li><?php } ?></ol></pre>
</div>
<?php }?>
<div class="trace">
<h2>Call Stack</h2>
<ol>
<li><?php echo sprintf('in %s', parse_file($file, $line)); ?></li>
<?php foreach ((array) $trace as $value) { ?>
<li>
<?php
// Show Function
if($value['function']){
echo sprintf(
'at %s%s%s(%s)',
isset($value['class']) ? parse_class($value['class']) : '',
isset($value['type']) ? $value['type'] : '',
$value['function'],
isset($value['args'])?parse_args($value['args']):''
);
}
// Show line
if (isset($value['file']) && isset($value['line'])) {
echo sprintf(' in %s', parse_file($value['file'], $value['line']));
}
?>
</li>
<?php } ?>
</ol>
</div>
</div>
<?php } else { ?>
<div class="exception">
<div class="info"><h1><?php echo htmlentities($message); ?></h1></div>
</div>
<?php } ?>
<?php if(!empty($datas)){ ?>
<div class="exception-var">
<h2>Exception Datas</h2>
<?php foreach ((array) $datas as $label => $value) { ?>
<table>
<?php if(empty($value)){ ?>
<caption><?php echo $label; ?><small>empty</small></caption>
<?php } else { ?>
<caption><?php echo $label; ?></caption>
<tbody>
<?php foreach ((array) $value as $key => $val) { ?>
<tr>
<td><?php echo htmlentities($key); ?></td>
<td>
<?php
if(is_array($val) || is_object($val)){
echo htmlentities(json_encode($val, JSON_PRETTY_PRINT));
} else if(is_bool($val)) {
echo $val ? 'true' : 'false';
} else if(is_scalar($val)) {
echo htmlentities($val);
} else {
echo 'Resource';
}
?>
</td>
</tr>
<?php } ?>
</tbody>
<?php } ?>
</table>
<?php } ?>
</div>
<?php } ?>
<?php if(!empty($tables)){ ?>
<div class="exception-var">
<h2>Environment Variables</h2>
<?php foreach ((array) $tables as $label => $value) { ?>
<table>
<?php if(empty($value)){ ?>
<caption><?php echo $label; ?><small>empty</small></caption>
<?php } else { ?>
<caption><?php echo $label; ?></caption>
<tbody>
<?php foreach ((array) $value as $key => $val) { ?>
<tr>
<td><?php echo htmlentities($key); ?></td>
<td>
<?php
if(is_array($val) || is_object($val)){
echo htmlentities(json_encode($val, JSON_PRETTY_PRINT));
} else if(is_bool($val)) {
echo $val ? 'true' : 'false';
} else if(is_scalar($val)) {
echo htmlentities($val);
} else {
echo 'Resource';
}
?>
</td>
</tr>
<?php } ?>
</tbody>
<?php } ?>
</table>
<?php } ?>
</div>
<?php } ?>
<div class="copyright">
<a title="官方网站" href="http://www.thinkphp.cn">ThinkPHP</a>
<span>V<?php echo \think\facade\App::version(); ?></span>
<span>{ 十年磨一剑-为API开发设计的高性能框架 }</span>
</div>
<?php if(\think\facade\App::isDebug()) { ?>
<script>
var LINE = <?php echo $line; ?>;
function $(selector, node){
var elements;
node = node || document;
if(document.querySelectorAll){
elements = node.querySelectorAll(selector);
} else {
switch(selector.substr(0, 1)){
case '#':
elements = [node.getElementById(selector.substr(1))];
break;
case '.':
if(document.getElementsByClassName){
elements = node.getElementsByClassName(selector.substr(1));
} else {
elements = get_elements_by_class(selector.substr(1), node);
}
break;
default:
elements = node.getElementsByTagName();
}
}
return elements;
function get_elements_by_class(search_class, node, tag) {
var elements = [], eles,
pattern = new RegExp('(^|\\s)' + search_class + '(\\s|$)');
node = node || document;
tag = tag || '*';
eles = node.getElementsByTagName(tag);
for(var i = 0; i < eles.length; i++) {
if(pattern.test(eles[i].className)) {
elements.push(eles[i])
}
}
return elements;
}
}
$.getScript = function(src, func){
var script = document.createElement('script');
script.async = 'async';
script.src = src;
script.onload = func || function(){};
$('head')[0].appendChild(script);
}
;(function(){
var files = $('.toggle');
var ol = $('ol', $('.prettyprint')[0]);
var li = $('li', ol[0]);
// 短路径和长路径变换
for(var i = 0; i < files.length; i++){
files[i].ondblclick = function(){
var title = this.title;
this.title = this.innerHTML;
this.innerHTML = title;
}
}
// 设置出错行
var err_line = $('.line-' + LINE, ol[0])[0];
err_line.className = err_line.className + ' line-error';
$.getScript('//cdn.bootcss.com/prettify/r298/prettify.min.js', function(){
prettyPrint();
// 解决Firefox浏览器一个很诡异的问题
// 当代码高亮后,ol的行号莫名其妙的错位
// 但是只要刷新li里面的html重新渲染就没有问题了
if(window.navigator.userAgent.indexOf('Firefox') >= 0){
ol[0].innerHTML = ol[0].innerHTML;
}
});
})();
</script>
<?php } ?>
</body>
</html>
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论