Automation Notifications

喜欢而已 提交于 2019-12-24 07:37:40

问题


I am trying to build an automated notification for sales orders.

In the message area, I need the sales order line items to be displayed in the message.

I can only get the first line item to display in the message. How do I get all the line items to display?

Message Notification


回答1:


You can include information from document detail lines in notifications by adding a foreach loop to the body of the notification template in the HTML format. For instance, you can use the following construction for the Transactions view of your Sales Order:

<foreach view="Transactions”> 
    ((Transactions.TranDesc))<br> 
</foreach>


来源:https://stackoverflow.com/questions/42803320/automation-notifications

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!