49 lines
1.9 KiB
Twig
49 lines
1.9 KiB
Twig
|
|
{% macro invoices(view) %}
|
|
{% import "macros/widgets.html.twig" as widgets %}
|
|
|
|
{% set actions = {'visibility': '#modal_invoice'} %}
|
|
|
|
{% if is_granted('manage_invoice_template') %}
|
|
{% set actions = actions|merge({'invoice-template': path('admin_invoice_template')}) %}
|
|
{% endif %}
|
|
|
|
{% set actions = actions|merge({'help': {'url': 'invoices.html'|docu_link, 'target': '_blank'}}) %}
|
|
|
|
{% set event = trigger('actions.invoices', {'actions': actions, 'view': view}) %}
|
|
{{ widgets.page_actions(event.payload.actions) }}
|
|
{% endmacro %}
|
|
|
|
{% macro invoice_templates(view) %}
|
|
{% import "macros/widgets.html.twig" as widgets %}
|
|
|
|
{% set actions = {} %}
|
|
{% if is_granted('view_invoice') %}
|
|
{% set actions = actions|merge({'back': path('invoice')}) %}
|
|
{% endif %}
|
|
|
|
{% if is_granted('manage_invoice_template') %}
|
|
{% set actions = actions|merge({'create': path('admin_invoice_template_create')}) %}
|
|
{% endif %}
|
|
|
|
{% set actions = actions|merge({'help': {'url': 'invoices.html'|docu_link, 'target': '_blank'}}) %}
|
|
|
|
{% set event = trigger('actions.invoice_templates', {'actions': actions, 'view': 'index'}) %}
|
|
{{ widgets.page_actions(actions) }}
|
|
{% endmacro %}
|
|
|
|
{% macro invoice_template(template, view) %}
|
|
{% import "macros/widgets.html.twig" as widgets %}
|
|
|
|
{% set actions = {} %}
|
|
|
|
{% if is_granted('manage_invoice_template') %}
|
|
{% set actions = actions|merge({'edit': {'url': path('admin_invoice_template_edit', {'id' : template.id}), 'class': 'modal-ajax-form'}}) %}
|
|
{% set actions = actions|merge({'copy': path('admin_invoice_template_copy', {'id' : template.id})}) %}
|
|
{% set actions = actions|merge({'trash': path('admin_invoice_template_delete', {'id' : template.id})}) %}
|
|
{% endif %}
|
|
|
|
{% set event = trigger('actions.invoice_template', {'actions': actions, 'view': view, 'template': template}) %}
|
|
{{ widgets.table_actions(event.payload.actions) }}
|
|
{% endmacro %}
|