454 lines
22 KiB
PHP
454 lines
22 KiB
PHP
<?php
|
|
namespace app\controller;
|
|
use app\controller\Acl;
|
|
use app\model\{Imy as Imys,ImyInfo,Account};
|
|
use think\facade\{Db,Filesystem};
|
|
use think\exception\ValidateException;
|
|
class Imy extends Acl{
|
|
//列表
|
|
public function record(){
|
|
$input=input('post.');
|
|
if(existFull($input,['page','limit'])){
|
|
$sql=fastSql($input,[
|
|
['customer','fullEq'],
|
|
['number','fullLike'],
|
|
[['startTime'=>'time'],'startTime'],
|
|
[['endTime'=>'time'],'endTime'],
|
|
['people','fullEq'],
|
|
['user','fullEq'],
|
|
['examine','fullDec1'],
|
|
['nucleus','fullDec1'],
|
|
['data','fullLike']
|
|
]);//构造SQL
|
|
//结算账户扩展查询
|
|
if(existFull($input,['account'])){
|
|
$sql[]=['id','in',array_column(Db::name('imy_info')->where([['account','=',$input['account']]])->select()->toArray(),'pid')];
|
|
}
|
|
$sql=frameScope($sql);//组织数据
|
|
$sql=sqlAuth('imy',$sql);//数据鉴权
|
|
$count = Imys::where($sql)->count();//获取总条数
|
|
$info = Imys::with(['frameData','customerData','peopleData','userData','billData','recordData'])->where($sql)->append(['extension'])->page($input['page'],$input['limit'])->order(['id'=>'desc'])->select()->toArray();//查询分页数据
|
|
$result=[
|
|
'state'=>'success',
|
|
'count'=>$count,
|
|
'info'=>$info
|
|
];//返回数据
|
|
}else{
|
|
$result=['state'=>'error','info'=>'传入参数不完整!'];
|
|
}
|
|
return json($result);
|
|
}
|
|
//新增|更新
|
|
public function save(){
|
|
$input=input('post.');
|
|
if(existFull($input,['class','info']) && isset($input['class']['id'])){
|
|
//构造|验证CLASS
|
|
try {
|
|
$class=$input['class'];
|
|
$class['frame']=userInfo(getUserID(),'frame');
|
|
$class['user']=getUserID();
|
|
$class['examine']=0;
|
|
$class['nucleus']=0;
|
|
empty($class['id'])?$this->validate($class,'app\validate\Imy'):$this->validate($class,'app\validate\Imy.update');
|
|
$period=getPeriod();
|
|
if(strtotime($class['time'])<=$period){
|
|
throw new ValidateException('单据日期与结账日期冲突!');
|
|
}
|
|
} catch (ValidateException $e) {
|
|
return json(['state'=>'error','info'=>$e->getError()]);
|
|
exit;
|
|
}
|
|
|
|
//验证INFO
|
|
foreach ($input['info'] as $infoKey=>$infoVo) {
|
|
try {
|
|
$this->validate($infoVo,'app\validate\ImyInfo');
|
|
} catch (ValidateException $e) {
|
|
return json(['state'=>'error','info'=>'数据表格第'.($infoKey+1).'条'.$e->getError()]);
|
|
exit;
|
|
}
|
|
}
|
|
|
|
//处理数据
|
|
Db::startTrans();
|
|
try {
|
|
//CLASS数据
|
|
if(empty($class['id'])){
|
|
//创建数据
|
|
$createInfo=Imys::create($class);
|
|
$class['id']=$createInfo['id'];//转存主键
|
|
Db::name('record')->insert(['type'=>'imy','source'=>$class['id'],'time'=>time(),'user'=>getUserID(),'info'=>'新增单据']);
|
|
pushLog('新增收款单[ '.$class['number'].' ]');//日志
|
|
}else{
|
|
//更新数据
|
|
$updateInfo=Imys::update($class);
|
|
Db::name('record')->insert(['type'=>'imy','source'=>$class['id'],'time'=>time(),'user'=>getUserID(),'info'=>'更新单据']);
|
|
pushLog('更新收款单[ '.$class['number'].' ]');//日志
|
|
}
|
|
|
|
//INFO数据
|
|
ImyInfo::where([['pid','=',$class['id']]])->delete();
|
|
foreach ($input['info'] as $infoKey=>$infoVo) {
|
|
$input['info'][$infoKey]['pid']=$class['id'];
|
|
}
|
|
$model = new ImyInfo;
|
|
$model->saveAll($input['info']);
|
|
|
|
Db::commit();
|
|
$result=['state'=>'success','info'=>$class['id']];
|
|
} catch (\Exception $e) {
|
|
Db::rollback();
|
|
$result=['state'=>'error','info'=>'内部错误,操作已撤销!'];
|
|
}
|
|
}else{
|
|
$result=['state'=>'error','info'=>'传入参数不完整!'];
|
|
}
|
|
return json($result);
|
|
}
|
|
//获取
|
|
public function get(){
|
|
$input=input('post.');
|
|
if(existFull($input,['parm'])){
|
|
$class=Imys::where([['id','=',$input['parm']]])->find();
|
|
$info=ImyInfo::with(['accountData'])->where([['pid','=',$input['parm']]])->order(['id'=>'asc'])->select();
|
|
$result=['state'=>'success','info'=>[
|
|
'class'=>$class,
|
|
'info'=>$info,
|
|
]];
|
|
}else{
|
|
$result=['state'=>'error','info'=>'传入参数不完整!'];
|
|
}
|
|
return json($result);
|
|
}
|
|
//删除
|
|
public function del(){
|
|
$input=input('post.');
|
|
if(existFull($input,['parm']) && is_array($input['parm'])){
|
|
$data=Db::name('imy')->where([['id','in',$input['parm']]])->order(['id'=>'desc'])->select()->toArray();
|
|
$search=search($data)->where([['examine','=','1']])->find();
|
|
if(empty($search)){
|
|
Db::startTrans();
|
|
try {
|
|
Db::name('imy')->where([['id','in',$input['parm']]])->delete();
|
|
Db::name('imy_info')->where([['pid','in',$input['parm']]])->delete();
|
|
Db::name('record')->where([['type','=','imy'],['source','in',$input['parm']]])->delete();
|
|
Db::name('log')->insert(['time'=>time(),'user'=>getUserID(),'info'=>'删除收款单[ '.implode(' | ',array_column($data,'number')).' ]']);
|
|
|
|
Db::commit();
|
|
$result=['state'=>'success'];
|
|
} catch (\Exception $e) {
|
|
Db::rollback();
|
|
$result=['state'=>'error','info'=>'内部错误,操作已撤销!'];
|
|
}
|
|
}else{
|
|
$result=['state'=>'error','info'=>'单据['.$search['number'].']已审核,不可删除!'];
|
|
}
|
|
}else{
|
|
$result=['state'=>'error','info'=>'传入参数不完整!'];
|
|
}
|
|
return json($result);
|
|
}
|
|
//审核|反审核
|
|
public function examine(){
|
|
$input=input('post.');
|
|
if(existFull($input,['parm']) && is_array($input['parm'])){
|
|
//1 基础数据
|
|
$period=getPeriod();
|
|
$classList=Db::name('imy')->where([['id','in',$input['parm']]])->order(['id'=>'desc'])->select()->toArray();
|
|
$infoList=Db::name('imy_info')->where([['pid','in',$input['parm']]])->order(['id'=>'asc'])->select()->toArray();
|
|
//2 综合处理
|
|
foreach ($input['parm'] as $parmVo) {
|
|
//1 匹配数据
|
|
$class=search($classList)->where([['id','=',$parmVo]])->find();
|
|
$info=search($infoList)->where([['pid','=',$parmVo]])->select();
|
|
//2 CLASS验证
|
|
if($class['time']<=$period){
|
|
return json(['state'=>'error','info'=>'操作单据[ '.$class['number'].' ]失败,原因:单据日期与结账日期冲突!']);
|
|
exit;
|
|
}
|
|
if(!empty($class['examine'])){
|
|
//核销单
|
|
$bill=Db::name('bill_info')->where([['mold','=','imy'],['source','=',$class['id']]])->find();
|
|
if(!empty($bill)){
|
|
return json(['state'=>'error','info'=>'反审核单据[ '.$class['number'].' ]失败,原因:该单据存在关联核销单!']);
|
|
exit;
|
|
}
|
|
}
|
|
//3 数据处理
|
|
Db::startTrans();
|
|
try {
|
|
//场景验证
|
|
if(empty($class['examine'])){
|
|
//审核
|
|
//1 构造数据
|
|
$store=['account'=>[],'accountInfo'=>[]];
|
|
foreach ($info as $infoKey=>$infoVo){
|
|
//1 资金账户
|
|
$store['account'][]=['id'=>$infoVo['account'],'balance'=>$infoVo['money']];
|
|
//2 资金账户详情
|
|
$store['accountInfo'][]=['pid'=>$infoVo['account'],'type'=>'imy','class'=>$class['id'],'time'=>$class['time'],'direction'=>1,'money'=>$infoVo['money']];
|
|
}
|
|
//2 资金账户
|
|
Db::name('account')->duplicate(['balance'=>Db::raw('balance + VALUES(`balance`)')])->insertAll($store['account']);
|
|
//3 资金账户
|
|
Db::name('account_info')->insertAll($store['accountInfo']);
|
|
//4 客户|应收款余额
|
|
Db::name('customer')->where([['id','=',$class['customer']]])->dec('balance',$class['total'])->update();
|
|
//5 更新单据
|
|
Db::name('imy')->where([['id','=',$class['id']]])->update(['examine'=>1]);
|
|
//6 单据记录
|
|
Db::name('record')->insert(['type'=>'imy','source'=>$class['id'],'time'=>time(),'user'=>getUserID(),'info'=>'审核单据']);
|
|
//7 记录操作
|
|
pushLog('审核收款单[ '.$class['number'].' ]');//单据日志
|
|
}else{
|
|
//反审核
|
|
//1 匹配数据
|
|
$listSql=[['type','=','imy'],['class','=',$class['id']]];
|
|
$accountInfoList=Db::name('account_info')->where($listSql)->select()->toArray();
|
|
//2 资金账户
|
|
$accountDuplicate=[];
|
|
foreach ($accountInfoList as $accountInfoVo) {
|
|
$accountDuplicate[]=['id'=>$accountInfoVo['pid'],'balance'=>$accountInfoVo['money']];
|
|
}
|
|
//2.1 更新资金
|
|
Db::name('account')->duplicate(['balance'=>Db::raw('balance - VALUES(`balance`)')])->insertAll($accountDuplicate);
|
|
//2.2 删除资金详情
|
|
Db::name('account_info')->where([['id','in',array_column($accountInfoList,'id')]])->delete();
|
|
//3 客户|应收款余额
|
|
Db::name('customer')->where([['id','=',$class['customer']]])->inc('balance',$class['total'])->update();
|
|
//4 更新单据
|
|
Db::name('imy')->where([['id','=',$class['id']]])->update(['examine'=>0]);
|
|
//5 单据记录
|
|
Db::name('record')->insert(['type'=>'imy','source'=>$class['id'],'time'=>time(),'user'=>getUserID(),'info'=>'反审核单据']);
|
|
//6 记录操作
|
|
pushLog('反审核收款单[ '.$class['number'].' ]');//单据日志
|
|
}
|
|
|
|
Db::commit();
|
|
} catch (\Exception $e) {
|
|
Db::rollback();
|
|
return json(['state'=>'error','info'=>'内部错误,操作已撤销!']);
|
|
exit;
|
|
}
|
|
}
|
|
$result=['state'=>'success'];
|
|
}else{
|
|
$result=['state'=>'error','info'=>'传入参数不完整!'];
|
|
}
|
|
return json($result);
|
|
}
|
|
//上传
|
|
public function upload(){
|
|
$file = request()->file('file');
|
|
//获取上传文件
|
|
if (empty($file)) {
|
|
$result = ['state' => 'error','info' => '传入数据不完整!'];
|
|
} else {
|
|
//文件限制5MB
|
|
try{
|
|
validate(['file'=>['fileSize'=>5*1024*1024,'fileExt'=>'png,gif,jpg,jpeg,txt,doc,docx,rtf,xls,xlsx,ppt,pptx,pdf,zip,rar']])->check(['file'=>$file]);
|
|
$fileInfo=Filesystem::disk('upload')->putFile('imy', $file, 'uniqid');
|
|
$filePath=request()->domain().'/static/upload/'.$fileInfo;
|
|
$result=['state'=>'success','info'=>$filePath];
|
|
}catch(ValidateException $e) {
|
|
$result = ['state' => 'error','info' => $e->getMessage()];
|
|
}
|
|
}
|
|
return json($result);
|
|
}
|
|
//导入
|
|
public function import(){
|
|
delOverdueFile('static.upload.xlsx');//删除过期文件
|
|
$file=request()->file('file');//获取上传文件
|
|
if(empty($file)){
|
|
$result=['state'=>'error','info'=>'传入数据不完整!'];
|
|
}else{
|
|
$fun=getSys('fun');
|
|
try{
|
|
validate(['file'=>['fileSize'=>2*1024*1024,'fileExt'=>'xlsx']])->check(['file'=>$file]);
|
|
$fileInfo = Filesystem::disk('upload')->putFile('xlsx', $file, 'uniqid');
|
|
$filePath = pathChange('static.upload').$fileInfo;
|
|
$data=getXlsx($filePath);
|
|
unset($data[1]);//删除标题行
|
|
unset($data[2]);//删除列名行
|
|
//初始化CLASS
|
|
//客户匹配
|
|
$customer=Db::name('customer')->where([['name','=',$data[3]['A']]])->find();
|
|
if(empty($customer)){
|
|
throw new ValidateException('客户[ '.$data[3]['A'].' ]未匹配!');
|
|
}
|
|
//关联人员匹配
|
|
if(empty($data[3]['E'])){
|
|
$people=['id'=>0];
|
|
}else{
|
|
$people=Db::name('people')->where([['name','=',$data[3]['E']]])->find();
|
|
if(empty($people)){
|
|
throw new ValidateException('关联人员[ '.$data[3]['E'].' ]未匹配!');
|
|
}
|
|
}
|
|
$class=[
|
|
'frame'=>userInfo(getUserID(),'frame'),
|
|
'customer'=>$customer['id'],
|
|
'time'=>$data[3]['B'],
|
|
'number'=>$data[3]['C'],
|
|
'total'=>0,
|
|
'people'=>$people['id'],
|
|
'file'=>[],
|
|
'data'=>$data[3]['F'],
|
|
'more'=>[],
|
|
'examine'=>0,
|
|
'nucleus'=>0,
|
|
'user'=>getUserID()
|
|
];
|
|
$this->validate($class,'app\validate\Imy');//数据合法性验证
|
|
//初始化INFO
|
|
$info=[];
|
|
$account=Db::name('account')->where([['name','in',array_column($data,'G')]])->select()->toArray();
|
|
foreach ($data as $dataKey=>$dataVo) {
|
|
$record=[
|
|
'account'=>$dataVo['G'],
|
|
'money'=>$dataVo['H'],
|
|
'settle'=>$dataVo['I'],
|
|
'data'=>$dataVo['J']
|
|
];
|
|
//结算账户匹配
|
|
$accountFind=search($account)->where([['name','=',$record['account']]])->find();
|
|
if(empty($accountFind)){
|
|
throw new ValidateException('模板文件第'.$dataKey.'行结算账户[ '.$record['account'].' ]未匹配!');
|
|
}else{
|
|
$record['account']=$accountFind['id'];
|
|
}
|
|
//结算金额匹配
|
|
if(!preg_match("/^(\-)?\d+(\.\d{0,".$fun['digit']['money']."})?$/",$record['money'])){
|
|
throw new ValidateException('模板文件第'.$dataKey.'行结算金额不正确!');
|
|
}
|
|
try{
|
|
$this->validate($record,'app\validate\ImyInfo');//数据合法性验证
|
|
//转存数据
|
|
$class['total']=math()->chain($class['total'])->add($record['money'])->done();//累加单据金额
|
|
$info[]=$record;
|
|
} catch (ValidateException $e) {
|
|
return json(['state'=>'error','info'=>'模板文件第'.$dataKey.'行'.$e->getMessage()]);//返回错误信息
|
|
exit;
|
|
}
|
|
}
|
|
Db::startTrans();
|
|
try {
|
|
//新增CLASS
|
|
$classData=Imys::create($class);
|
|
//新增INFO
|
|
foreach ($info as $infoKey=>$infoVo) {
|
|
$info[$infoKey]['pid']=$classData['id'];
|
|
}
|
|
$model = new ImyInfo;
|
|
$model->saveAll($info);
|
|
Db::name('record')->insert(['type'=>'imy','source'=>$classData['id'],'time'=>time(),'user'=>getUserID(),'info'=>'导入单据']);
|
|
pushLog('导入收款单[ '.$classData['number'].' ]');//日志
|
|
|
|
Db::commit();
|
|
$result=['state'=>'success'];
|
|
} catch (\Exception $e) {
|
|
Db::rollback();
|
|
$result=['state'=>'error','info'=>'内部错误,操作已撤销!'];
|
|
}
|
|
}catch(ValidateException $e) {
|
|
$result=['state'=>'error','info'=>$e->getMessage()];//返回错误信息
|
|
}
|
|
}
|
|
return json($result);
|
|
}
|
|
//导出
|
|
public function exports(){
|
|
$input=input('get.');
|
|
if(existFull($input,['scene','parm']) && is_array($input['parm'])){
|
|
pushLog('导出收款单列表');//日志
|
|
$source=Imys::with(['frameData','customerData','peopleData','userData'])->where([['id','in',$input['parm']]])->append(['extension'])->order(['id'=>'desc'])->select()->toArray();//查询CLASS数据
|
|
if($input['scene']=='simple'){
|
|
//简易报表
|
|
//开始构造导出数据
|
|
$excel=[];//初始化导出数据
|
|
//标题数据
|
|
$excel[]=['type'=>'title','info'=>'收款单列表'];
|
|
//表格数据
|
|
$field=[
|
|
'frameData|name'=>'所属组织',
|
|
'customerData|name'=>'客户',
|
|
'time'=>'单据时间',
|
|
'number'=>'单据编号',
|
|
'total'=>'单据金额',
|
|
'extension|amount'=>'核销金额',
|
|
'peopleData|name'=>'关联人员',
|
|
'extension|examine'=>'审核状态',
|
|
'extension|nucleus'=>'核销状态',
|
|
'userData|name'=>'制单人',
|
|
'data'=>'备注信息'
|
|
];
|
|
$thead=array_values($field);//表格标题
|
|
$tbody=[];//表格内容
|
|
//构造表内数据
|
|
foreach ($source as $sourceVo) {
|
|
$rowData=[];
|
|
foreach (array_keys($field) as $fieldVo) {
|
|
$rowData[]=arraySeek($sourceVo,$fieldVo);//多键名数据赋值
|
|
}
|
|
$tbody[]=$rowData;//加入行数据
|
|
}
|
|
$excel[]=['type'=>'table','info'=>['thead'=>$thead,'tbody'=>$tbody]];//表格数据
|
|
//统计数据
|
|
$excel[]=['type'=>'node','info'=>[
|
|
'总数:'.count($source),
|
|
'总单据金额:'.mathArraySum(array_column($source,'total')),
|
|
'总核销金额:'.mathArraySum(arrayColumns($source,['extension','amount']))
|
|
]];
|
|
//导出execl
|
|
buildExcel('收款单列表',$excel);
|
|
}else{
|
|
//详细报表
|
|
$files=[];//初始化文件列表
|
|
foreach ($source as $sourceVo) {
|
|
//开始构造导出数据
|
|
$excel=[];//初始化导出数据
|
|
//标题数据
|
|
$excel[]=['type'=>'title','info'=>'收款单'];
|
|
//节点数据
|
|
$excel[]=['type'=>'node','info'=>[
|
|
'客户:'.$sourceVo['customerData']['name'],
|
|
'单据日期:'.$sourceVo['time'],
|
|
'单据编号:'.$sourceVo['number']]
|
|
];
|
|
//表格数据
|
|
$field=[
|
|
'accountData|name'=>'结算账户',
|
|
'money'=>'结算金额',
|
|
'settle'=>'结算号',
|
|
'data'=>'备注信息'
|
|
];
|
|
//构造表内数据
|
|
$info=ImyInfo::with(['accountData'])->where([['pid','=',$sourceVo['id']]])->order(['id'=>'asc'])->select()->toArray();
|
|
$thead=array_values($field);//表格标题
|
|
$tbody=[];//表格内容
|
|
foreach ($info as $infoVo) {
|
|
$rowData=[];
|
|
foreach (array_keys($field) as $fieldVo) {
|
|
$rowData[]=arraySeek($infoVo,$fieldVo);//多键名数据赋值
|
|
}
|
|
$tbody[]=$rowData;//加入行数据
|
|
}
|
|
$excel[]=['type'=>'table','info'=>['thead'=>$thead,'tbody'=>$tbody]];//表格数据
|
|
//节点数据
|
|
$excel[]=['type'=>'node','info'=>[
|
|
'单据金额:'.$sourceVo['total'],
|
|
'核销金额:'.$sourceVo['extension']['amount'],
|
|
'关联人员:'.arraySeek($sourceVo,'peopleData|name'),
|
|
'备注信息:'.$sourceVo['data']]
|
|
];
|
|
//生成execl
|
|
$files[]=buildExcel($sourceVo['number'],$excel,false);
|
|
}
|
|
buildZip('收款单_'.time(),$files);
|
|
}
|
|
}else{
|
|
return json(['state'=>'error','info'=>'传入数据不完整!']);
|
|
}
|
|
}
|
|
} |