|
|
|
FPDF พอดีว่าจะออกรายงาน เกี่ยวจำนวนเงิน แล้วดึงข้อมูลจาก DB แล้วคำนวณยอดเงิน แต่ติดที่ว่า ไม่รู้จะเขียนโค๊ดยังงัย |
|
|
|
|
|
|
|
FPDF พอดีว่าจะออกรายงาน เกี่ยวจำนวนเงิน แล้วดึงข้อมูลจาก DB แล้วคำนวณยอดเงิน แต่ติดที่ว่า ไม่รู้จะเขียนโค๊ดยังงัย
คือผมจะเพิ่มช่องสำหรับรวมยอดเงินอ่ะครับ ไม่รู้จะต้องแก้โค้ดตรงไหน? ให้มันแสดงผลรวมเหมือนกับ หน้าเว็บอ่ะครับ
นี่รูปครับ
ส่วนนี้โค๊ดส่วนที่แสดงผลเป็นตารางคับ
Code (PHP)
function FancyTable($header,$data)
{
//Colors, line width and bold font
$this->SetFillColor(255,0,0);
$this->SetTextColor(255);
$this->SetDrawColor(128,0,0);
$this->SetLineWidth(.3);
$this->SetFont('','');
//Header
$w=array(10,35,30,35,35,35);
for($i=0;$i<count($header);$i++)
$this->Cell($w[$i],7,$header[$i],1,0,'C',true);
$this->Ln();
//Color and font restoration
$this->SetFillColor(224,235,255);
$this->SetTextColor(0);
$this->SetFont('');
//Data
$fill=false;
$numrow=1;
foreach($data as $row)
{
$this->Cell($w[0],6,$numrow,'LR',0,'C',$fill);
$this->Cell($w[1],6,iconv('UTF-8','TIS-620',thdate($row["sell_date"])),'LR',0,'C',$fill);
$this->Cell($w[2],6,iconv('UTF-8','TIS-620',$row["week"]),'LR',0,'C',$fill);
$this->Cell($w[3],6,number_format($row["income"]),'LR',0,'R',$fill);
$this->Cell($w[4],6,number_format($row["expenses"]),'LR',0,'R',$fill);
$this->Cell($w[5],6,number_format($row["total"]),'LR',0,'R',$fill);
//$this->Cell($w[6],6,number_format($sum),'LR',0,'R',$fill); //ผลรวม
$this->Ln();
$fill=!$fill;
$numrow ++;
//$sum += $row["total"];
}
$this->Cell(array_sum($w),0,'','T');
}
}
บรรทัดที่ 29 กับ 33
ผมลองแทรกดูแต่มันลูปพร้อมกับ DB มีวิธีแก้ยังงัยบ้างครับ
Tag : PHP, HTML/CSS
|
ประวัติการแก้ไข 2014-04-16 16:28:45 2014-04-16 16:35:19 2014-04-16 16:36:17
|
|
|
|
|
Date :
2014-04-16 16:21:10 |
By :
oodd2 |
View :
1371 |
Reply :
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ช่วยหน่อยนะครับ หรือว่ามันไม่มีทางแก้ T T
|
|
|
|
|
Date :
2014-04-16 20:05:53 |
By :
oodd2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แนะนำให้ลองใช้ TCPDF แทนครับ
|
|
|
|
|
Date :
2014-04-17 02:13:35 |
By :
{Cyberman} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าโค๊ดเดิมการจะแสดงผลรวมต้องอยู่นอกลูป
foreach($data as $row){
}
|
|
|
|
|
Date :
2014-04-17 02:15:43 |
By :
{Cyberman} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตรง
Code (PHP)
foreach($data as $row)
{
$this->Cell($w[0],6,$numrow,'LR',0,'C',$fill);
$this->Cell($w[1],6,iconv('UTF-8','TIS-620',thdate($row["sell_date"])),'LR',0,'C',$fill);
$this->Cell($w[2],6,iconv('UTF-8','TIS-620',$row["week"]),'LR',0,'C',$fill);
$this->Cell($w[3],6,number_format($row["income"]),'LR',0,'R',$fill);
$this->Cell($w[4],6,number_format($row["expenses"]),'LR',0,'R',$fill);
$this->Cell($w[5],6,number_format($row["total"]),'LR',0,'R',$fill);
//$this->Cell($w[6],6,number_format($sum),'LR',0,'R',$fill); //ผลรวม
$this->Ln();
$fill=!$fill;
$numrow ++;
//$sum += $row["total"];
}
เพิ่มเป็น
Code (PHP)
$buy = $sell = 0;
foreach($data as $row)
{
#ลูปข้างใน
}
$this->Cell($w[0]+$w[1]+$w[2], 6, iconv('UTF-8','TIS-620','ยอดรวมทั้งหมด'),'LR',0,'C',$fill);
$this->Cell($w[3], 6, number_format($buy),'LR',0,'C',$fill);
$this->Cell($w[4], 6, number_format($sell),'LR',0,'C',$fill);
$this->Cell($w[5], 6, number_format(abs($buy-$sell)),'LR',0,'C',$fill);
|
|
|
|
|
Date :
2014-04-17 18:44:07 |
By :
itpcc |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณ คุณ itpcc มากๆ ครับ
วิธีที่บอกมาได้ผลครับ แต่เส้นตารางยังมีปัญหาอยู่ เลยไปศึกษา และใช้ Class TCPDF ใช้งานได้ตามต้องการเรียบร้อยแล้วครับ ^^
|
|
|
|
|
Date :
2014-04-18 18:19:34 |
By :
oodd2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|