PHP如何输出合并单元格的表

PHP如何输出合并单元格的表

https://mp.weixin.qq.com/s/ChPIKIv9tqmuqGyfc9Zi7Q

合并单元格的表,很多地方可以见到,比如购物车,订单合并等,今天给大家讲解一下,如何操作,虽然我用的laravel,但是都是PHP。以下只做参考!

 

部分效果图如下

PHP如何输出合并单元格的表

路由文件

 Route::get(‘admin/allots/index’, [‘as’=> ‘admin.allots.index’, ‘uses’ => ‘AllotController@index’]); 

控制器文件:AllotController.php

/**
     * Display a listing of the Allot.
     *
     * @param Request $request
     * @return Response
     */
    public function index(Request $request)
    {
        $param  = $request->all();
        $params  = [
            'orderBy' => ['allot_id', 'desc'],
            'groupBy' => 'allot_sn'
        ];


        $params['left_join'][] = ['allot_detail','allot.allot_id','=','allot_detail.allot_id'];
        $params['left_join'][] = ['goods_sku','allot_detail.sku_id','=','goods_sku.sku_id'];
        $params['left_join'][] = ['goods','goods_sku.goods_id','=','goods.goods_id'];

        $params['select']   = [
            'allot.*',
            'allot_detail.sku_id',
            'goods_sku.sku_id',
            'goods_sku.goods_id',
            'goods.goods_id',
            'goods.goods_name'
        ];

        if(!empty($param['goods_name'])){
            $params['where'] = $this->entryWareRepository->getLikeGoods(trim($param['goods_name']));
            $search_sku_id = $this->entryWareRepository->getLikeSkuID(trim($param['goods_name']));
        }

        //用户所属对应仓库的信息
        $admin_ware = $this->allotRepository->getAdminWare();
        if($admin_ware > 0){
            $params['whereIn'] = ['allot.from_ware_id', $admin_ware];
        }

        $this->allotRepository->pushCriteria(new RequestCriteria($request));
        $allots = $this->allotRepository->paginate(config('config.pagesize'),[
            'detail.sku.goods','out_ware','entry_ware'
        ],$params);

        $allots->each(function($item,$key){
            $item->is_out_ware = count($this->allotRepository->out_ware($item->allot_sn));
            $item->is_entry_ware = count($this->allotRepository->entry_ware($item->allot_sn));
        });

        foreach ($allots as $val){
            $val->detail->each(function($vo,$k){
                $vo->change_sku = $vo->sku->getShowSku();
            });
        }
        //dd($allots);

        return view('admin.allots.index', compact('allots','admin_ware','param'));

    }

model文件:Allot.php

class Allot extends Model
{

    public $table = 'allot';

    const CREATED_AT = 'created_at';
    const UPDATED_AT = 'updated_at';


    protected $primaryKey = 'allot_id';

    public $fillable = [
        'allot_sn',
        'remark',
        'status',
        'from_ware_id',
        'to_ware_id',
        'create_admin_id',
        'create_admin_name',
        'examine_admin_id',
        'examine_admin_name',
        'entry_ware_status',
        'out_ware_status',
        'confirm_admin_id',
        'confirm_admin_name'
    ];

    /**
     * The attributes that should be casted to native types.
     *
     * @var array
     */
    protected $casts = [
        'allot_id' => 'integer',
        'allot_sn' => 'string',
        'remark' => 'string',
        'status' => 'integer',
        'from_ware_id' => 'integer',
        'to_ware_id' => 'integer',
        'create_admin_id' => 'integer',
        'create_admin_name' => 'string',
        'examine_admin_id' => 'integer',
        'examine_admin_name' => 'string',
        'confirm_admin_id' => 'integer',
        'confirm_admin_name' => 'string',
        'entry_ware_status' =>'integer',
        'out_ware_status' => 'integer',
    ];

    /**
     * Validation rules
     *
     * @var array
     */
    public static $rules = [

    ];

容器文件:AllotRepository.php

<?php

namespace App\Repository;

use App\Model\Allot;
use App\Model\AllotDetail;
use App\Model\AllotSkuBatch;
use App\Repository\CommonRepository;


class AllotRepository extends CommonRepository
{
    /**
     * @var array
     */
    protected $fieldSearchable = [
        'allot_id',
    ];

    /**
     * Configure the Model
     **/
    public function model()
    {
        return Allot::class;
    }

    public function search($param = [])
    {

        $model = $this->model();
        $model = new $model;

        $rs = $model;
        if (!empty($param['goods_name'])) {
            $rs = $model->where('goods_name', '=', $param['goods_name']);
        }

        //创建时间开始
        if (!empty($param['add_time_start'])) {
            $rs = $rs->where('created_at', '>=', $param['created_at'] . ' 00:00:00');
        }
        //创建时间结束
        if (!empty($param['add_time_end'])) {
            $rs = $rs->where('created_at', '<=', $param['created_at'] . ' 23:59:59');
        }

        return $rs;
    }

    /**
     * Function:自动生成入单号
     * User:wucy
     * @return string
     */
    public function createAllotSn()
    {
        $model = $this->model();
        $allot_id = $model::max('allot_id');
        $date = date('Ymd',time());
        $allot_id = $allot_id +1;
        $allot_sn = 'A' .$date. str_repeat('0', 8 - strlen($allot_id)) . $allot_id;
        $sn_list = $model::where('allot_sn','like','%'.$allot_id.'%')->where('allot_id','<>',$allot_id)->get()->toArray();
        if (in_array($allot_sn, $sn_list))
        {
            $max = pow(10, strlen($sn_list[0]) - strlen($allot_sn) + 1) - 1;
            $new_sn = $allot_sn . mt_rand(0, $max);
            while (in_array($new_sn, $sn_list))
            {
                $new_sn = $allot_sn . mt_rand(0, $max);
            }
            $allot_sn = $new_sn;
        }

        return $allot_sn;
    }

模板文件table.blade.php

<div class="box" style="overflow-x:scroll;"> <div class="box-body"> <table class="table table-bordered table-hover lastTd" id="allots-table" style="font-size:12px;"> <thead> <tr class="nowrap"> <th>调拨单号</th> <th>制单时间</th> <th>调出仓库</th> <th>商品SKU</th> <th>商品名称</th> <th>商品属性</th> <th>单位</th> <th>调拨数量</th> <th>调入仓库</th> <th>调拨备注</th> <th>审核状态</th> <th>审核人</th> <th>是否出库</th> <th>是否入库</th> <th style="width:135px;min-width:135px;">操作</th> </tr> </thead> <tbody> @foreach($allots as $allot) <?php if(isset($param['goods_name']) && !empty($param['goods_name'])){ $detail = $allot->detail->whereInLoose('sku_id',$search_sku_id); }else{ $detail = $allot->detail; } $count = count($detail); $rowspan = $count == 1 ? '' : "rowspan='{ $count}'"; //单元格合并 $first_detail = $detail->shift(); $admin_id = Auth::id(); if(($admin_ware > 0 && in_array( $allot->from_ware_id,$admin_ware)) || $admin_ware==0){ $from_admin_ware =1; }else{ $from_admin_ware =0; } if(($admin_ware > 0 && in_array( $allot->to_ware_id,$admin_ware)) || $admin_ware==0){ $to_admin_ware =1; }else{ $to_admin_ware =0; } //dd($from_admin_ware); ?> <tr> <td {!! $rowspan !!}>{!! $allot->allot_sn !!}</td> <td {!! $rowspan !!}>{!! $allot->created_at !!}</td> <td {!! $rowspan !!}>{!! $allot['out_ware']['name'] !!}</td> <td>{!! !empty($first_detail) ? $first_detail->change_sku : '--' !!}</td> <td>{!! !empty($first_detail) ? $first_detail->sku->goods->goods_name : '--' !!}</td> <td>{!! !empty($first_detail) ? $first_detail->sku->value_name : '--' !!}</td> <td>{!! !empty($first_detail) ? $first_detail->sku->goods->goods_unit : '--' !!}</td> <td>{!! !empty($first_detail) ? $first_detail->send_number : '--' !!}</td> <td {!! $rowspan !!}>{!! $allot['entry_ware']['name'] !!}</td> <td {!! $rowspan !!}>{!! $allot->remark !!}</td> <td {!! $rowspan !!}> <small class="label pull-left bg-blue">{!! config('const.ware.entry_status')[$allot->status] !!}</small> </td> <td {!! $rowspan !!}>{!! $allot->confirm_admin_name ? $allot->confirm_admin_name : '--'!!}</td> <td {!! $rowspan !!}>{!! config('const.ware.entry_or_out_ware')[$allot->out_ware_status] !!}</td> <td {!! $rowspan !!}>{!! config('const.ware.entry_or_out_ware')[$allot->entry_ware_status] !!}</td> <td {!! $rowspan !!}> { !! Form::open(['route' => ['admin.allots.destroy', $allot->getKey()], 'method' => 'delete']) !!} <div class='btn-group'> <a href="@if($allot->status==1) javascript:; @else {!! route('admin.allots.edit', [$allot->getKey()]) !!} @endif" class='btn btn-default btn-xs' @if($allot->status==1) disabled="disabled" @endif title="编辑" alt="编辑"><i class="fa fa-edit"></i></a> <a href="@if($allot->status==1) javascript:; @else{!! route('admin.allots.examine', [$allot->getKey()]) !!} @endif" class='btn btn-default btn-xs' @if($allot->status==1) disabled="disabled" @endif title="审核" alt="审核"><i class="fa fa-user"></i></a> <a href="@if($allot->is_out_ware == 1 || $from_admin_ware ==0)javascript:; @else {!! route('admin.allots.out_ware', [$allot->getKey()]) !!} @endif" class='btn btn-default btn-xs' @if($allot->is_out_ware==1 ||$allot->status==0 || $from_admin_ware ==0) disabled="disabled" @endif title="办理出库" alt="办理出库"><i class="fa fa-share"></i></a> <a href="@if($allot->entry_ware_status == 1 || $allot->out_ware_status==0 || $allot->is_entry_ware==1 || $to_admin_ware == 0) javascript:; @else {!! route('admin.allots.entry_ware', [$allot->getKey()]) !!} @endif" class='btn btn-default btn-xs' @if($allot->entry_ware_status==1 || $allot->out_ware_status==0 ||$allot->is_entry_ware==1 || $to_admin_ware == 0) disabled="disabled" @endif title="办理入库" alt="办理入库"><i class="fa fa-reply"></i></a> <a @if($allot->status > 0) disabled="disabled" @endif href="{!! route('admin.allots.destroy', [$allot->getKey()]) !!}" title="删除" alt="删除" class='btn btn-default btn-xs'><i class="fa fa-trash"></i></a> </div> { !! Form::close() !!} </td> </tr> @if($rowspan != '') @foreach($detail as $row) <tr> <td>{ { $row->change_sku }}</td> <td>{ { $row->sku->goods->goods_name }}</td> <td>{ { $row->sku->value_name }}</td> <td>{ { $row->sku->goods->goods_unit }}</td> <td>{ { $row->send_number }}</td> </tr> @endforeach @endif @endforeach </tbody> </table> </div> </div>

一个功能模块包括增删改查,贴出来的代码会很多!这里只贴出列表的功能,有问题的可以留言

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/112908.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)
blank

相关推荐

  • HTTP.SYS远程代码执行漏洞(CVE-2015-1635,MS15-034)

    HTTP.SYS远程代码执行漏洞(CVE-2015-1635,MS15-034)漏洞描述及渗透过程HTTP协议堆栈(HTTP.sys)中存在一个远程执行代码漏洞,该漏洞是在HTTP.sys不正确地分析特制HTTP请求时引起的。漏洞危害攻击者只需要发送恶意的http请求数据包,就可能远程读取IIS服务器的内存数据,或使服务器系统蓝屏崩溃。修复建议1)微软官方已经给出修复补丁(KB3042553),用户安装修复补丁即可。变通办法,禁用IIS内核缓存(可能降低IIS…

  • Vue中 使用定时器 (setInterval、setTimeout)[通俗易懂]

    Vue中 使用定时器 (setInterval、setTimeout)[通俗易懂]js中定时器有两种,一个是循环执行setInterval,另一个是定时执行setTimeout。定时器需要在页面销毁的时候清除掉,不然会一直存在!1.循环执行(setInterval)顾名思义,循环执行就是设置一个时间间隔,每过一段时间都会循环执行这个方法,直到这个定时器被销毁掉;语法:setInterval(code,milliseconds);setInterval(function,milliseconds,param1,param2,…);code/funct

  • CAS单点登录原理分析(一)

    CAS单点登录原理分析(一)一,业务分析在分布式系统架构中,假设把上述的三个子系统部署在三个不同的服务器上。前提是用户登录之后才能访问这些子系统。那么使用传统方式,可能会存在这样的问题:1.当访问用户中心,需要用户登录帐号2.当访问购物车,还需要用户登录帐号3.当访问商品结算,又一次需要用户登录帐号访问每一个子系统都需要用户登录帐号,这样的体验对于用户来说是极差。而使用单点登录就可以很好地解决上述的问题。二,单…

  • idea mybatis跳转插件_idea添加本地jar包到maven

    idea mybatis跳转插件_idea添加本地jar包到maven我相信目前在绝大部分公司里,主要使用的框架是S(spring)S(springMVC)M(mybatis),其中mybatis总体架构是编写mapper接口,框架扫描其对应的mapper.xml文件,由于xml里面编写大量的sql语句,所以在平时调试中需要对其进行调试,但是xml文件并不能像java文件一样,能快速进行跳转,对查找对应xml文件带来巨大的不便。网友基础idea强大的插件系…

  • 实战中遇到的C++流文件重置的一个大陷阱 为什么ifstream的seekg函数无效

    实战中遇到的C++流文件重置的一个大陷阱 为什么ifstream的seekg函数无效实战中遇到的C++流文件重置的一个大陷阱为什么ifstream的seekg函数无效

  • 免费分享仿某妹网站地址发布页源码

    免费分享仿某妹网站地址发布页源码用于网址跳转,防止网址被封或者丢失用。做什么就不用我多说了!我看你们全部都要金币。。。我就免费分享给你们。下载地址:点击下载

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号