hel*_*rld 6 php arrays associative-array fpdf
我有一组按来源分类的表格,例如:"客户","股票","Floorstock".它们看起来像这样:
每个都包含价格列表,需要在表格的最后一行添加和总计.
我在将"总计"数组链接到"表"数组时遇到问题 - 特别是在每个表的末尾显示每个总数
到目前为止,每个表的总数是在另一个函数中生成的,其中sourceTotals是一个实例数组:
public function setSourceTotalsArray($data)
{
$this->sourceTotals = $data["source_totals"];
return $this->sourceTotals;
}
Run Code Online (Sandbox Code Playgroud)
这将返回一个如下所示的数组:
array(4) { ["Floorstock"]=> int(0) ["Stock"]=> int(0) ["Client"]=> float(32.18) }
Run Code Online (Sandbox Code Playgroud)
这是我定义$pdf对象的地方:
if($_SERVER["REQUEST_METHOD"] == "POST"){
$data = json_decode($_POST["printData"],true);
$pdf = new PDF();
// Column headings
$month = $pdf->getMonth($data['month']);
$year = $data['year'];
$pdf->SetFont('Arial','',10);
$pdf->AddPage();
$pdf>title(array('month'=>$month,'year'=>$year,'showroom'=>ucfirst($data['showroom_name'])));
$pdf->tableBody($data);
if(!empty($data["order_detail"])){
$customerOrders = array();
$stockOrders = array();
$floorstockOrders = array();
$otherOrders = array();
foreach($data["order_detail"] as $o){
switch($o["orderSource"]){
case 'Client':
$customerOrders[] = $o;
break;
case 'Stock':
$stockOrders[] = $o;
break;
case 'Floorstock':
$floorstockOrders[] = $o;
break;
default:
$otherOrders[] = $o;
break;
}
}
if (!empty($customerOrders)) {
$pdf->orderDetail($customerOrders, $data['currency'], 'Client');
}
if (!empty($stockOrders)) {
$pdf->orderDetail($stockOrders, $data['currency'], 'Stock');
}
if (!empty($floorstockOrders)) {
$pdf->orderDetail($floorstockOrders, $data['currency'], 'Floor Stock');
}
if (!empty($otherOrders)) {
$pdf->orderDetail($otherOrders, $data['currency'], 'Client');
}
}
$pdf->Output();
Run Code Online (Sandbox Code Playgroud)
该orderDetail函数用于构造$pdf对象中的表,以便表具有与正确列名对应的单元格:
function orderDetail($data,$currencyShortCode, $type){
$this->orderType = $type;
list($currencySymbol, $w_symbol, $cellHight) = $this->getOrderDetailHeader($currencyShortCode, $type);
foreach ($data as $d){
$commaValue = $this->addComma((float)$d['value']);
$this->Cell(15,$cellHight,$d['order_no'],'LTB',0,'L');
$this->Cell(20,$cellHight,substr($d['customer'],0,13),'TB',0,'L');
$this->Cell(20,$cellHight,substr($d['company'],0,13),'TB',0,'L');
$this->Cell(20,$cellHight,substr($d['ref'],0,13),'TB',0,'L');
$this->Cell(2,$cellHight,'','TB',0,'R');
$this->Cell($w_symbol,$cellHight,$currencySymbol,'TB',0,'R');
$this->Cell(16-$w_symbol,$cellHight,$commaValue,'TB',0,'R');
$this->Cell(2,$cellHight,'','TB',0,'R');
$this->Cell(10,$cellHight,$d['cat'],'TB',0,'L');
$this->Cell(84,$cellHight,$d['description'],'RTB',0,'L');
$this->Ln($cellHight);
}
//BOTTOM TOTAL
$this->Cell(13,$cellHight,'TOTAL','LRTB',0,'L');
$this->Cell(22,$cellHight,'','TB',0,'L');
$this->Cell(20,$cellHight,'','TB',0,'L');
$this->Cell(20,$cellHight,'','TB',0,'L');
$this->Cell(4,$cellHight,$currencySymbol,'TB',0,'R');
$this->Cell(14,$cellHight,$this->setSourceTotalsArray($data),'TB',0,'R'); //HERE
$this->Cell(2,$cellHight,'','TB',0,'R');
$this->Cell(10,$cellHight,'','TB',0,'L');
$this->Cell(84,$cellHight,'','RTB',0,'L');
}
Run Code Online (Sandbox Code Playgroud)
我只是不确定如何setSourceTotalsArray进入orderDetail,因为我目前的尝试只会返回null.
您的setSourceTotalsArray方法实际上并没有做任何事情,因此如果它返回null,则表示$data没有source_totals节点。(建议/旁注:将错误报告设置为E_ALLPHP 会就此向您发出警告;然后在实时环境中display_errors关闭并启用,log_errors这样您将在日志中看到错误,但您的访问者不会在屏幕上看到它们。)原因source_totals不存在于完整脚本$data中的 $data variable insideorderDetail is only a subset of$data`。
我要做的是$total向orderDetail. 你会得到这样的东西:
function orderDetail($data,$currencyShortCode, $type, $total) {
...
$this->Cell(14,$cellHight, $total,'TB',0,'R'); //HERE
...
}
Run Code Online (Sandbox Code Playgroud)
和
if (!empty($customerOrders)) {
$pdf->orderDetail($customerOrders, $data['currency'], 'Client', $data['source_totals']['Client']);
}
// Also add the 4th argument for stock orders, floor orders and others.
Run Code Online (Sandbox Code Playgroud)