Muhammad Hafiz
01/31/2023, 11:25 AMkarlenigma
01/31/2023, 12:16 PM${item.description?replace("${record.quantity}", item.quantity)}
check out https://freemarker.apache.org/docs/ref_builtins_string.html#ref_builtin_replaceMuhammad Hafiz
02/01/2023, 2:01 AM${item.description?replace("${record.quantity}", item.quantity)},
it showed an error : The content of elements must consist of well-formed character data or markup. Please contact your administrator.
I tried ${item.description?replace("${record.quantity}", "item.quantity")},
it showed an error : Attribute name "item.quantity" associated with an element type "item.quantitybitem.quantityritem.quantity" must be followed by the ' = ' character. Please contact your administrator.
I tried ${item.description?replace("${record.quantity}", "${item.quantity}")}
it showed an error :
The content of elements must consist of well-formed character data or markup.Muhammad Hafiz
02/01/2023, 2:10 AMMuhammad Hafiz
02/01/2023, 3:23 AM${item.description?replace('total', '${item.quantity}')}
thanks for the idea