第 1 頁 (共 1 頁)
在 Grid 前加入序號
發表於 : 2007-03-22 11:22:50
由 yehlu
stock_in_no_BeforeShow
global $no;
$no++;
$stock_in->no->setvalue($no);
方式2 結合序號與總計
發表於 : 2007-03-22 12:13:33
由 yehlu
stock_in_BeforeShowRow
global $showrow;
$showrow["no"]++;
$stock_in->no->setvalue($showrow["no"]);
$showrow["total"] += $stock_in->total->getvalue();
Label1_BeforeShow
global $showrow;
$Label1->setvalue($showrow[total]);
最新方法
發表於 : 2008-10-28 16:09:02
由 yehlu
$sell_a->row_sn->SetValue($sell_a->RowNumber + ($sell_a->PageNumber-1)*$sell_a->PageSize);
總計的做法
發表於 : 2008-10-28 16:26:41
由 yehlu
計算 Before Show Row Event
global $grid_total;
$grid_total["amount"] += $xxx->yyy->GetValue();
顯示 Label1 Before Event
global $grid_total;
$str = "數量合計:".$grid_total["amount"];
$str .= "含稅合計:".number_format($grid_total["price"]);
$str .= "成本合計:".number_format($grid_total["price_in"]);
$Label1->SetValue($str);