| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267 |
- <?php
- namespace App\Http\Controllers;
- use App\Owner;
- use App\Services\OwnerReportService;
- use App\Services\OwnerService;
- use Exception;
- use Illuminate\Database\Eloquent\Builder;
- use Illuminate\Http\Request;
- use Illuminate\Http\Response;
- use Illuminate\Support\Facades\Gate;
- use Illuminate\Support\Facades\Http;
- use Illuminate\Support\Facades\Validator;
- class CustomerController extends Controller
- {
- /**
- * Display a listing of the resource.
- * @param Request $request
- * @return Response
- */
- public function projectReport(Request $request)
- {
- if(!Gate::allows('客户管理-项目-报表')){ return view('customer.index'); }
- $withs = ["ownerBillReport","owner"=>function($query){
- /** @var Builder $query */
- $query->select("id","name","deleted_at","created_at","customer_id","user_owner_group_id")
- ->with(["customer","userOwnerGroup"]);
- }];
- $ownerGroups = app('UserOwnerGroupService')->getSelection();
- $customers = app('CustomerService')->getSelection();
- $owners = app('OwnerService')->getSelection();
- $reports = app("OwnerReportService")->paginate($request->input(),$withs);
- return response()->view('customer.project.report',compact("reports","ownerGroups","customers","owners"));
- }
- public function projectReportExport(Request $request)
- {
- if(!Gate::allows('客户管理-项目-报表')){ return redirect('denied'); }
- /** @var OwnerReportService $service */
- $service = app('OwnerReportService');
- $withs = ["ownerBillReport","owner"=>function($query){
- /** @var Builder $query */
- $query->select("id","name","deleted_at","created_at","customer_id","user_owner_group_id")
- ->with(["customer","userOwnerGroup"]);
- }];
- if ($request->checkAllSign ?? false){
- $params = $request->input();
- unset($params['checkAllSign']);
- $reports = $service->get($params,$withs);
- }else $reports = $service->get(["id"=>$request->data ?? ''],$withs);
- $column = ["项目小组","客户","子项目","状态","创建日期","在库时长","结算月","日均单量","结算月上月盘点面积","结算月盘点面积","初始账单金额","确认账单金额","确认日期"];
- $list = [];
- foreach ($reports as $report){
- $list[] = [
- $report->owner ? ($report->owner->userOwnerGroup ? $report->owner->userOwnerGroup->name : '') : '',
- $report->owner ? ($report->owner->customer ? $report->owner->customer->name : '') : '',
- $report->owner ? $report->owner->name : '',
- $report->owner ? ($report->owner->deleted_at ? "冻结" : "激活") : '',
- $report->owner ? (string)$report->owner->created_at : '',
- $report->owner ? ($report->owner->created_at ? ((new \DateTime())->diff(new \DateTime($report->owner->created_at))->days)." 天" : '') : '',
- $report->counting_month,
- $report->daily_average_order_amount,
- $report->last_month_counting_area,
- $report->current_month_counting_area,
- $report->ownerBillReport ? $report->ownerBillReport->initial_fee : '',
- $report->ownerBillReport ? $report->ownerBillReport->confirm_fee : '',
- $report->ownerBillReport ? (string)$report->ownerBillReport->updated_at : '',
- ];
- }
- $post = Http::post(config('go.export.url'),['type'=>'base','data'=>json_encode(["row"=>$column,"list"=>$list],JSON_UNESCAPED_UNICODE)]);
- if ($post->status() == 500){
- throw new Exception($post->header("Msg"));
- }
- return response($post,200, [
- "Content-type"=>"application/octet-stream",
- "Content-Disposition"=>"attachment; filename=客户项目报表-".date('ymdHis').'.xlsx',
- ]);
- }
- public function projectIndex()
- {
- if(!Gate::allows('客户管理-项目-查询')){ return redirect('denied'); }
- /** @var OwnerService $service */
- $service = app('OwnerService');
- $owners = $service->paginate(['customer_id'=>true],['customer',"userOwnerGroup","ownerStoragePriceModels","ownerAreaReport"=>function($query){
- $month = date('Y-m');
- /** @var Builder $query */
- $query->where("counting_month","like",$month."%");
- }]);
- return response()->view('customer.project.index',compact("owners"));
- }
- public function projectIndexExport(Request $request)
- {
- if(!Gate::allows('客户管理-项目-查询')){ return redirect('denied'); }
- /** @var OwnerService $service */
- $service = app('OwnerService');
- $withs = ['customer',"userOwnerGroup","ownerStoragePriceModels","ownerAreaReport"=>function($query){
- $month = date('Y-m');
- /** @var Builder $query */
- $query->where("counting_month","like",$month."%");
- }];
- $params = $request->input();
- $params['customer_id']=true;
- if ($request->checkAllSign ?? false) unset($params['checkAllSign']);
- else $params = ["id"=>$request->data ?? ''];
- $owners = $service->get($params,$withs);
- $column = ["客户","税率","项目","货主代码","合同号","创建日期","销售名称","公司全称","联系人","联系电话","项目小组","用仓类型","当月结算面积","月单量预警","是否激活","项目描述"];
- $list = [];
- foreach ($owners as $owner){
- $list[] = [
- $owner->customer ? $owner->customer->name : '',
- $owner->tax_rate,
- $owner->name,
- $owner->code,
- $owner->contract_number,
- $owner->created_at,
- $owner->salesman,
- $owner->customer ? $owner->customer->company_name : '',
- $owner->linkman,
- $owner->phone_number,
- $owner->userOwnerGroup ? $owner->userOwnerGroup->name : '',
- implode(",",array_unique(array_column(($owner->ownerStoragePriceModels)->toArray(),"using_type"))),
- $owner->ownerAreaReport ? $owner->ownerAreaReport->accounting_area : '',
- $owner->waring_line_on,
- $owner->deleted_at ? '否' : '是',
- $owner->description
- ];
- }
- $post = Http::post(config('go.export.url'),['type'=>'base','data'=>json_encode(["row"=>$column,"list"=>$list],JSON_UNESCAPED_UNICODE)]);
- if ($post->status() == 500){
- throw new Exception($post->header("Msg"));
- }
- return response($post,200, [
- "Content-type"=>"application/octet-stream",
- "Content-Disposition"=>"attachment; filename=客户报表-".date('ymdHis').'.xlsx',
- ]);
- }
- public function projectCreate()
- {
- if(!Gate::allows('客户管理-项目-录入')){ return redirect('denied'); }
- $customers = app('CustomerService')->getSelection();
- $ownerGroups = app('UserOwnerGroupService')->getSelection();
- $storagePriceModels = app('OwnerStoragePriceModelService')->getSelection(["id","counting_type","using_type","minimum_area","price","unit_id"],["unit"=>function($query){$query->select("id","name");}]);
- $owner = null;
- return response()->view('customer.project.create',compact("customers","ownerGroups","storagePriceModels","owner"));
- }
- public function seekOwner(Request $request)
- {
- $params = $request->input();
- $params["customer_id"] = true;
- $owner = app('OwnerService')->first($params,["customer_id"=>"null"]);
- if ($owner)return ["success"=>true,"data"=>$owner];
- else return ["success"=>false];
- }
- public function projectStore(Request $request)
- {
- if(!Gate::allows('客户管理-项目-录入')){ return redirect('denied'); }
- $this->validator($request->input())->validate();
- $params = $request->input();
- if ($params["id"]){
- /** @var Owner $owner */
- $owner = app('OwnerService')->find($params["id"]);
- app('OwnerService')->update($owner,[
- "customer_id" => $params["customer_id"],
- "tax_rate" => $params["tax_rate"],
- "contract_number" => $params["contract_number"],
- "salesman" => $params["salesman"],
- "linkman" => $params["linkman"],
- "phone_number" => $params["phone_number"],
- "user_owner_group_id" => $params["owner_group_id"],
- "waring_line_on" => $params["waring_line_on"],
- "description" => $params["description"],
- ],[
- "ownerStoragePriceModels" => explode(',',$params["owner_storage_price_model_id"])
- ]);
- $msg = "成功更新“".$owner->name."”的信息!";
- }else{
- $owner = app('OwnerService')->create([
- "name" => $params["name"],
- "code" => $params["code"],
- "customer_id" => $params["customer_id"],
- "tax_rate" => $params["tax_rate"],
- "contract_number" => $params["contract_number"],
- "salesman" => $params["salesman"],
- "linkman" => $params["linkman"],
- "phone_number" => $params["phone_number"],
- "user_owner_group_id" => $params["owner_group_id"],
- "waring_line_on" => $params["waring_line_on"],
- "description" => $params["description"],
- ],[
- "ownerStoragePriceModels" => explode(',',$params["owner_storage_price_model_id"])
- ]);
- $msg = "成功创建“".$owner->name."”项目!";
- }
- return response()->redirectTo('customer/project/index')->with('successTip',$msg);
- }
- //获取货主下所有相关计费模型
- public function getOwnerPriceModel(Request $request)
- {
- $owner = new Owner();
- $owner->id = $request->id;
- $owner->load(["ownerPriceOperations","ownerPriceExpresses","ownerPriceLogistics","ownerPriceDirectLogistics"]);
- return ["success"=>true,"data"=>["ownerPriceOperations"=>$owner->ownerPriceOperations,
- "ownerPriceExpresses"=>$owner->ownerPriceExpresses,
- "ownerPriceLogistics"=>$owner->ownerPriceLogistics,
- "ownerPriceDirectLogistics"=>$owner->ownerPriceDirectLogistics]];
- }
- public function projectEdit($id)
- {
- if(!Gate::allows('客户管理-项目-编辑')){ return redirect('denied'); }
- /** @var Owner $owner */
- $owner = app('OwnerService')->find($id);
- $owner->owner_storage_price_model_id = $owner->getOwnerStoragePriceModelIds();
- $customers = app('CustomerService')->getSelection();
- $ownerGroups = app('UserOwnerGroupService')->getSelection();
- $storagePriceModels = app('OwnerStoragePriceModelService')->getSelection(["id","counting_type","using_type","minimum_area","price","unit_id"],["unit"=>function($query){$query->select("id","name");}]);
- return response()->view('customer.project.create',compact("customers","ownerGroups","storagePriceModels",'owner'));
- }
- public function projectArea()
- {
- if(!Gate::allows('客户管理-项目-面积')){ return redirect('denied'); }
- return response()->view('customer.project.area');
- }
- public function financeInstantBill()
- {
- if(!Gate::allows('客户管理-财务-即时账单')){ return redirect('denied'); }
- return response()->view('customer.finance.instantBill');
- }
- public function financeBillConfirmation()
- {
- if(!Gate::allows('客户管理-财务-账单确认')){ return redirect('denied'); }
- return response()->view('customer.finance.billConfirmation');
- }
- private function validator(array $params){
- $id = $params['id'] ?? null;
- $validator=Validator::make($params,[
- 'id' => ['required_without_all:code,name'],
- 'code'=>['required','max:50',$id ? "unique:owners,code,$id":'unique:owners,code'],
- 'name'=>['required','max:50'],
- 'customer_id'=>['required'],
- 'owner_group_id'=>['required'],
- 'tax_rate' => ['required','numeric'],
- ],[
- 'required'=>':attribute 为必填项',
- 'unique'=>':attribute 已存在',
- ],[
- 'code'=>'项目代码',
- 'name'=>'项目名称',
- 'customer_id'=>'客户',
- 'owner_group_id'=>'工作组',
- 'tax_rate' => '税率'
- ]);
- return $validator;
- }
- }
|