What I am looking for boils down to being able to import customer order data in csv format, and be able to export individual orders into PDF file.
I currently have a bunch of data that is in cvs format, and I would like to be able to convert it into multiple pdf files. I would like each one of those files to have the same header and footer, but the information that fills the rest of the file would come from the csv format. Here is list of csv data that would make up 3 different files:
order #,date,name,address,state,zip,item #,unit price,quantity,shipping,total
1,3-Feb,Bob Smith,311 4th St,FL,34885,5461,0.33,5,7.99,20.44
1,3-Feb,Bob Smith,311 4th St,FL,34885,4451,0.66,7,7.99,20.44
1,3-Feb,Bob Smith,311 4th St,FL,34885,1126,0.42,9,7.99,20.44
1,3-Feb,Bob Smith,311 4th St,FL,34885,2254,0.12,20,7.99,20.44
2,9-Feb,John Anders,820 5th St,FL,32584,1258,5.55,10,4.99,116.14
2,9-Feb,John Anders,820 5th St,FL,32584,2459,7.95,7,4.99,116.14
3,22-Feb,Sue Doe,914 1st St,FL,34513,2148,0.54,9,10.99,187.08
3,22-Feb,Sue Doe,914 1st St,FL,34513,9751,9.85,3,10.99,187.08
3,22-Feb,Sue Doe,914 1st St,FL,34513,9765,8.64,11,10.99,187.08
3,22-Feb,Sue Doe,914 1st St,FL,34513,5472,4.68,4,10.99,187.08
3,22-Feb,Sue Doe,914 1st St,FL,34513,4590,5.68,2,10.99,187.08
3,22-Feb,Sue Doe,914 1st St,FL,34513,5489,1.84,9,10.99,187.08
I would have the header on all of them say something like "Please contact us anytime if you have any questions", and the footer for all three would be "www.example.com".
If anyone could help me solve this issue I would be most appreciative. I know that I'll probably end up having to get a program to do this, but I have looked for a long time and I cannot find anything to help me.
Bookmarks