EVEIPH / EVE-IPH

Code for the EVE Isk per Hour program

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Manufacturing List Export - Unquoted Fields

ioneyed opened this issue · comments

When exporting the manufacturing list to a CSV the values are not quoted to prevent misalignment in CSV format.

Item Category,Item Name,Tech,Compared,Isk per Hour,Item Market Price,Material Cost,Total Cost
Module,Polarized Torpedo Launcher,T1,Raw Materials,732133.01,26090000.00,34,143,881.47,5321522.28,

Parses to this in Excel/Sheets


+---------------+----------------------------+------+---------------+--------------+-------------------+---------------+------------+--------+------------+--+
| Item Category |         Item Name          | Tech |   Compared    | Isk per Hour | Item Market Price | Material Cost | Total Cost |        |            |  |
+---------------+----------------------------+------+---------------+--------------+-------------------+---------------+------------+--------+------------+--+
| Module        | Polarized Torpedo Launcher | T1   | Raw Materials |    732133.01 |       26090000.00 |            34 |        143 | 881.47 | 5321522.28 |  |
+---------------+----------------------------+------+---------------+--------------+-------------------+---------------+------------+--------+------------+--+


Export should use double quotes on values to ensure the commas in values are not taken literally. I know there is a SSR format, but that also uses commas as the decimal separator.

(I will look into the code to see if I can quickly submit a PR).

I included this update in my 5.0 update