|
|
|
select ค่าที่ได้มาเก็บใน array แล้วเอาค่าที่ได้มาเปรียบเทียบ ถ้ามีค่าให้แสดงในช่องที่กำหนดถ้าไม่มีใส่ 0 ต้องเขียนcodeยังไง |
|
|
|
|
|
|
|
select ค่าที่ได้มาเก็บใน array แล้วเอาค่าที่ได้มาเปรียบเทียบ ถ้ามีค่าให้แสดงในช่องที่กำหนด ถ้าไม่มีใส่ 0 ต้องเขียนcodeยังไงค่ะ
Code (PHP)
<?php
$depart =$_REQUEST['DeptCode'];
$jobtype = array();
$jobtype[$i][1] = 0; //1 ==> project
$jobtype[$i][2] = 0.00; // 2 ==> amount_project
$jobtype[$i][3] = 0.00; // 3 ==> amount_invoice(แจ้งหนี้)
$jobtype[$i][4] = 0.00; // 4 ==> amount_taxinvoice(รับเงิน)
include("db/connect.php");
$sql="SELECT o.DeptCode, o.ProjectCode, o.Amount, d.DeptName,o.Description
FROM openproject AS o LEFT JOIN department AS d ON o.DeptCode = d.DeptCode
where o.DeptCode ='$depart'
Order by o.ProjectCode ASC";
$tebleopenproject =mysql_query($sql) or die("Error : $sql".mysql_error());
$count = mysql_num_rows($tebleopenproject);
while($data1 = mysql_fetch_array($tebleopenproject)) {
$deptcodeO = $data1["DeptCode"];
$projectO = $data1["1"];
$amountO = $data1["2"];
$deptnameO = $data1["3"];
$descriptionO = $data1["4"];
$jobtype[$i][1] = $data1["1"].$data1["4"];
$jobtype[$i][2] = $data1["2"];
}
$sql ="SELECT cfn.ProjectCode, sum(cfn.AmountCash),o.DeptCode
FROM openproject AS o INNER JOIN cashflow AS cfn ON o.ProjectCode = cfn.ProjectCode
WHERE cfn.TypeCode ='A' AND cfn.TransType ='I' AND o.DeptCode ='$depart'
GROUP BY cfn.ProjectCode,cfn.TypeCode, cfn.TransType";
$teblecash =mysql_query($sql) or die("Error : $sql".mysql_error());
while($data2 = mysql_fetch_array($teblecash)) {
$projectN = $data2["ProjectCode"];
$amountN = $data2["1"];
$departN = $data2["2"];
$jobtype[$i][3] = $data2["1"];
}
$sql ="SELECT cftax.ProjectCode, sum(cftax.AmountCash),o.DeptCode
FROM openproject AS o INNER JOIN cashflow AS cftax ON o.ProjectCode = cftax.ProjectCode
WHERE cftax.TypeCode ='A' AND cftax.TransType ='I' AND o.DeptCode ='$depart' AND cftax.TaxInvoiceNo <>''
GROUP BY cftax.ProjectCode,cftax.TypeCode, cftax.TransType";
$teblecash1 =mysql_query($sql) or die("Error : $sql".mysql_error());
while($data3 = mysql_fetch_array($teblecash1)) {
$projectC = $data3["ProjectCode"];
$amountC = $data3["1"];
$departC = $data3["2"];
$jobtype[$i][4] = $data3["1"];
}
?>
<table width="100%" border="1" cellspacing="1" cellpadding="1">
<tr>
<td colspan="8" align="center"><strong>กระแสเงินสดของฝ่ายแยกตามโครงการ</strong></td>
</tr>
<tr>
<td width="55" align="center"><font size="2">ลำดับ</font></td>
<td width="286"align="center"><font size="2">โครงการ</font></td>
<td width="122" align="center"><font size="2">มูลค่าโครงการ</font></td>
<td width="114" align="center"><font size="2">มูลค่าแจ้งหนี้</font></td>
<td width="111" align="center"><font size="2">มูลค่ารับเงิน</font></td>
<td width="109" align="center"><font size="2">มูลค่าค้างรับ</font></td>
<td width="107" align="center"><font size="2">มูลค่าที่ยังไม่แจ้งหนี้</font></td>
<td width="73" align="center"><font size="2"></font> </td>
</tr>
<? for ($x=1; $x<=$count; $x++) { ?>
<tr>
<td align="center"><font size="2"><?= $x++?> </font></td>
<td><font size="2"><?= $jobtype[1][1];?></font></td>
<td align="right"><font size="2"><?php $amount_pro1 = $jobtype[2][2];
echo number_format($amount_pro1,2);?></font> </td>
<td align="right"><font size="2"><?php $amount_invoice1 = $jobtype[3][3];
echo number_format($amount_invoice1,2); ?></font> </td>
<td align="right"><font size="2"><?php $amount_taxinvoice1 = $jobtype[4][4];
echo number_format($amount_taxinvoice1,2);?></font> </td>
<td align="right"><font size="2"><?php $amount_pend1 =$amount_invoice1-$amount_taxinvoice1;
echo number_format($amount_pend1,2);?></font> </td>
<td align="right"><font size="2"><?php $amount_noinvoice1 =$amount_pro1-$amount_invoice1;
echo number_format($amount_noinvoice1,2);?></font> </td>
<td align="center"><font size="2"><a href="fview_openproject_detail.php?DeptCode=<? echo $depart.$projectO;?>" >รายละเอียด</a>
</font></td>
</tr>
<? } ?>
</table>
Tag : PHP, MySQL, HTML/CSS, JavaScript, CakePHP
|
|
|
|
|
|
Date :
2011-03-03 10:01:41 |
By :
มือใหม่ |
View :
1553 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ช่วยด้วยค่ะ
|
|
|
|
|
Date :
2011-03-03 10:38:56 |
By :
มือใหม่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ช่วยด้วยค่ะท่านผู้รู้ ทั้งหลาย
|
|
|
|
|
Date :
2011-03-03 17:06:37 |
By :
มือใหม่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
งง กับ [$i] .ใส่เพื่ออะไร ไม่เห็นกำหนดค่าให้เลย
จากที่ถามว่า
ถ้ามีค่าให้แสดงในช่องที่กำหนด ถ้าไม่มีใส่ 0
เช่น ถ้าจะเช็คตัวแปร a ว่ามีค่าไหม
if(!$a){
$a=0; // ไม่มีค่าให้=0
}
แล้วเอา $a ไปใส่ในช่องเลย
ไม่รู้ว่าเข้าใจถูกหรือเปล่า
|
|
|
|
|
Date :
2011-03-03 17:31:53 |
By :
heng |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|