OroCommerce:自定义订单视图页面上的按钮?
OroCommerce: Customize buttons on the Order view page?
我需要将我的自定义按钮添加到 order page,最好是在 edit/delete 附近,它应该只为带有 orderId 参数的某些路由打开 link。
另外,最好删除折扣和优惠券代码等不必要的按钮。
怎么做?我尝试用占位符做 smth 但没有成功。
这些按钮是使用操作呈现的:
但是,如果您的按钮只呈现 link,您可以覆盖 OroOrderBundle:Order:view.html.twig 模板中的 {% block navButtons %}
块。参见 how to override templates。
或者,您可以使用占位符 view_navButtons
在没有模板继承的情况下扩展按钮列表。参见 placeholders documentation。
决定使用操作作为其非常智能和强大的机制,即使是下载按钮这样简单的东西,也不需要覆盖模板或使用模板。所以这里是显示按钮所需的全部内容:
#MyBundle/Resources/config/oro/actions.yml
operations:
download_action:
label: Download
button_options:
icon: fa-download
routes:
- oro_order_view
entities: ['Oro\Bundle\OrderBundle\Entity\Order']
for_all_entities: false
actions:
- '@redirect':
route: 'test_download'
route_parameters: {id: $id}
new_tab: true
preconditions:
'@equal': [$internalStatus.id, 'open']
唯一令人困惑的是按钮不仅出现在 oro_order_view 页面上,而且尽管指定了路由,但也出现在编辑页面上,有人知道为什么吗?
我需要将我的自定义按钮添加到 order page,最好是在 edit/delete 附近,它应该只为带有 orderId 参数的某些路由打开 link。 另外,最好删除折扣和优惠券代码等不必要的按钮。
怎么做?我尝试用占位符做 smth 但没有成功。
这些按钮是使用操作呈现的:
但是,如果您的按钮只呈现 link,您可以覆盖 OroOrderBundle:Order:view.html.twig 模板中的 {% block navButtons %}
块。参见 how to override templates。
或者,您可以使用占位符 view_navButtons
在没有模板继承的情况下扩展按钮列表。参见 placeholders documentation。
决定使用操作作为其非常智能和强大的机制,即使是下载按钮这样简单的东西,也不需要覆盖模板或使用模板。所以这里是显示按钮所需的全部内容:
#MyBundle/Resources/config/oro/actions.yml
operations:
download_action:
label: Download
button_options:
icon: fa-download
routes:
- oro_order_view
entities: ['Oro\Bundle\OrderBundle\Entity\Order']
for_all_entities: false
actions:
- '@redirect':
route: 'test_download'
route_parameters: {id: $id}
new_tab: true
preconditions:
'@equal': [$internalStatus.id, 'open']
唯一令人困惑的是按钮不仅出现在 oro_order_view 页面上,而且尽管指定了路由,但也出现在编辑页面上,有人知道为什么吗?