Ignore:
Timestamp:
2013/01/15 13:40:20 (11 years ago)
Author:
undertree
Message:

#2020 (売上集計のCSVに受注があった日付のみデータが入っている)

・値がない場合に、0を出力するように調整

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/admin/total/LC_Page_Admin_Total.php

    r22206 r22239  
    795795        for ($i = 0; $i < $max; $i++) { 
    796796            foreach ($arrDataCol as $val) { 
    797                 $arrRet[$i][$val] = $arrData[$i][$val]; 
     797                $arrRet[$i][$val] = ($arrData[$i][$val]) ? $arrData[$i][$val] : "0"; 
    798798            } 
    799799            // 期間別集計の合計行の「期間」項目に不要な値が表示されてしまわない様、'合計'と表示する 
Note: See TracChangeset for help on using the changeset viewer.