multi-store/app/common/service/xlsx/WarehouseOrdeRentry.php
mkm f93a8d8a1f fix(warehouse_order): 修复仓库订单导出功能并优化供应商显示
- 在导出功能中添加供应商名称显示
- 修复订单详情导出时的单价计算问题
- 优化导出表格的列标题和内容显示
- 增加对不支持的操作类型进行提示
2024-11-14 15:17:21 +08:00

121 lines
4.7 KiB
PHP

<?php
namespace app\common\service\xlsx;
use PhpOffice\PhpSpreadsheet\Spreadsheet;
use PhpOffice\PhpSpreadsheet\Writer\Xlsx;
use PhpOffice\PhpSpreadsheet\Style\Alignment;
use PhpOffice\PhpSpreadsheet\Style\Border;
class WarehouseOrdeRentry
{
public $warehouse='海吉星仓库';
public $company='供投里海';
public $address='泸州龙马潭区海吉星122栋';
public $phone='08302669767';
public $tel='17309099881';
public function export($data,$order)
{
$spreadsheet = new Spreadsheet();
$sheet = $spreadsheet->getActiveSheet();
// 合并单元格A1到K1
$sheet->mergeCells('A1:J1');//标题
$sheet->mergeCells('B2:E2');//开单日期
$sheet->mergeCells('G2:J2');//单号
$sheet->mergeCells('B3:C3');
$sheet->mergeCells('D3:E3');
$sheet->setCellValue('A1', $this->company.'公司入库单');
$sheet->setCellValue('A2', '入库时间');
$sheet->setCellValue('B2', $order['create_time']??'');
$sheet->setCellValue('F2', '单号');
$sheet->setCellValue('G2', $order['code']??'');
$sheet->setCellValue('A3', '序号');
$sheet->setCellValue('B3', '商品名称');
$sheet->setCellValue('D3', '供应商');
$sheet->setCellValue('F3', '单位');
$sheet->setCellValue('G3', '单价');
$sheet->setCellValue('H3', '数量');
$sheet->setCellValue('I3', '总价');
$sheet->setCellValue('J3', '备注');
// 设置默认的单元格样式
$defaultStyle = [
'alignment' => [
'horizontal' => Alignment::HORIZONTAL_CENTER,
'vertical' => Alignment::VERTICAL_CENTER,
],
];
// 应用默认样式到整个工作表
$spreadsheet->getDefaultStyle()->applyFromArray($defaultStyle);
foreach ($data as $k => $v) {
$sheet->setCellValue('A' . ($k + 4), $v['product_id'] );
$sheet->setCellValue('B' . ($k + 4), $v['store_name']);
$sheet->mergeCells('B' . ($k + 4) . ':C' . $k + 4);
$sheet->setCellValue('D' . ($k + 4), $v['supplier_name']);
$sheet->mergeCells('D' . ($k + 4) . ':E' . $k + 4);
$sheet->setCellValue('F' . ($k + 4), $v['unit_name']);
$sheet->setCellValue('G' . ($k + 4), $v['purchase']);
$sheet->setCellValue('H' . ($k + 4), $v['nums']);
$sheet->setCellValue('I' . ($k + 4), $v['total_price']);
}
$count = count($data);
$sheet->mergeCells('A' . ($count + 4) . ':J' . $count + 4);
$sheet->mergeCells('B' . ($count + 5) . ':E' . $count + 5);
$sheet->setCellValue('A' . $count + 5, '合计数量');
$sheet->setCellValue('B' . $count + 5,$order['total_num']);
$sheet->mergeCells('G' . ($count + 5) . ':J' . $count + 5);
$sheet->setCellValue('F' . $count + 5, '合计价格');
$sheet->setCellValue('G' . $count + 5, $order['total_price']);
// $sheet->mergeCells('C' . ($count + 7) . ':F' . $count + 7);
// $sheet->mergeCells('C' . ($count + 8) . ':F' . $count + 8);
// $sheet->mergeCells('H' . ($count + 7) . ':J' . ($count + 7));
// $sheet->mergeCells('H' . ($count + 8) . ':J' . $count + 8);
$sheet->mergeCells('A' . ($count + 6) . ':J' . $count + 6);
$sheet->setCellValue('A' . $count + 7, '录入人',);
// $sheet->setCellValue('B' . $count + 11, $this->warehouse);
$sheet->mergeCells('B' . ($count + 7) . ':C' . $count + 7);
$sheet->setCellValue('D' . $count + 7, '采购人');
$sheet->mergeCells('E' . ($count + 7) . ':F' . $count + 7);
$sheet->setCellValue('G' . $count + 7, '审核人');
$sheet->mergeCells('H' . ($count + 7) . ':J' . $count + 7);
// 设置单元格的样式
$styleArray = [
'font' => [
'bold' => true,
'size' => 16,
],
];
$sheet->getStyle('A1')->applyFromArray($styleArray);
// 定义线框样式
$styleArray = [
'borders' => [
'allBorders' => [
'borderStyle' => Border::BORDER_THIN, // 线框样式
'color' => ['argb' => '000000'], // 线框颜色
],
],
];
$sheet->getStyle('A1:J' . ($count + 7))->applyFromArray($styleArray);
// 保存文件到 public 下
$writer = new Xlsx($spreadsheet);
$url = '/export/' . date('Y-m') . '/' .$this->company.'公司入库单-'.date('Y-m-d H:i') . '.xlsx';
$file_path = public_path() . $url;
// 保存文件到 public 下
$writer->save($file_path);
return getenv('APP_URL').$url;
}
}