Generate multiple documents with one microflow

0
Hi guys, Anyone know how to generate multiple documents in one microflow? I want to generate a document based on line I have added. Currently, when I try to generate document, only the last line will be generate the document. The first line, did not generate. Please refer to below image, I want to generate document based on the product details line. Currently I make like below microflow:  For example :
asked
1 answers
0

Do you want to generate 1 document per product or Print all the products in 1 document?

UPDATE 1

Scenario 1: All products in 1 document as line items then it should be fairly easy. 

Scenario 2: 1 page for product, then you must see if you can create 1 page for every product within 1 document. This is also bit similar to Scenario 1

Scenario 3: 1 document per Product created in 1 microflow, you can make it, but you will be not presented with all downloads. You may create a page that shows the list of documents generated from where you can download. This is scenario 1 in loop with every product (or queued)

Scenario 4: Generate multiple documents per product, zip it and download as 1 file

UPDATE 2

I dont have working microflow for scenario 3, but if I am doing this for the requirement you mentioned I would atleast plan to do it like below

- Create a document template that can print 1 product as per your requirement

- In the print microflow, get all the products in the screen. you can use the same datasource that is on the page

- Use iterator to go over each product

- Generate the document for every product and save it (you dont have to add download option)

- You have one more entity called Shipment (use some unique identifier for this print) and associate all Printed documents to it

- Have a page and show the relevant documents for the shipment

NOTE: This is a basic implementation, we can also use queue module to process the document generation in the back end, for which the logic is mostly same but you need to know the queue module.

For generating document refer: https://docs.mendix.com/refguide/generate-document

answered