$kits = 1;
$use_inventory = false;
-define("DATA_ROW_START", 3);
+define("XLS_DATA_ROW_START", 3);
define("PAPER_US_LETTER", 1);
die($worksheet->getMessage());
}
- $row_num = DATA_ROW_START;
+ $row_num = XLS_DATA_ROW_START;
/* Écriture des colonnes d'entête. */
$k = 0;
/* Ajout cellule prix total. */
xls_write_price($row_num, $col_id_to_xls_num["TotalCost"],
"=SUM(" . col_to_letter($col_id_to_xls_num["TotalCost"]) .
- (DATA_ROW_START + 2) . ":" . col_to_letter($col_id_to_xls_num["TotalCost"]) .
+ (XLS_DATA_ROW_START + 2) . ":" . col_to_letter($col_id_to_xls_num["TotalCost"]) .
$row_num . ")");
}