Hello:
I am using this in order to create a item list to be printed on an rml report:
#In the python code
for item in items: if item['condition']: # This condition is defined in the code name = '<b>' + item['name'] + '</b>' else: name = item['name']
The coulde will give me a main items wich are composed with a list of items (something like the BoM).
Then in the rml i am using:
<para style="P5"> Items: [[ d["item"] ]]</para>
This will me print a report with a list of the items contained in the item, and depending if the item in the list accomplish the 'condition' this should use the format (<b> </b>).
The target should be: Items: Item1 Item2 Item3 Item4
I get instead Items: Item1 Item2 <b>Item3</b> Item4
Could someone tell me what I am doing wrong? I tried the escape codes < and > on the code but I get <b>Item3</b>
Regards!
The target should be: Items: Item1 Item2 Item3 Item4
I get instead Items: Item1 Item2 <b>Item3</b> Item4
Could someone tell me what I am doing wrong? I tried the escape codes < and > on the code but I get <b>Item3</b>
Regards!
Thanks, I will check it!
works for you?