X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Ftemplates%2Finvoice_view.tpl;h=6441b44dbf58e79847746095a5d70befb8a902c4;hb=45ca7d2258832cb0d2465eb16dd646d925458106;hp=1ff5c834a272bdf1b9b09618623bb154c0ab5702;hpb=6856837ddde5cc90ac5dad2e5d67204036ec3158;p=timetracker.git diff --git a/WEB-INF/templates/invoice_view.tpl b/WEB-INF/templates/invoice_view.tpl index 1ff5c834..6441b44d 100644 --- a/WEB-INF/templates/invoice_view.tpl +++ b/WEB-INF/templates/invoice_view.tpl @@ -20,29 +20,35 @@ {$i18n.label.date} {$i18n.form.invoice.person} - {if ($smarty.const.MODE_PROJECTS == $user->tracking_mode || $smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)} + {if $show_project} {$i18n.label.project} {/if} - {if ($smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)} + {if $show_task} {$i18n.label.task} {/if} {$i18n.label.note} {$i18n.label.duration} {$i18n.label.cost} + {if $user->isPluginEnabled('ps')} + {$i18n.label.paid} + {/if} {foreach $invoice_items as $invoice_item} {$invoice_item.date} {$invoice_item.user_name|escape} - {if ($smarty.const.MODE_PROJECTS == $user->tracking_mode || $smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)} + {if $show_project} {$invoice_item.project_name|escape} {/if} - {if ($smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)} + {if $show_task} {$invoice_item.task_name|escape} {/if} {$invoice_item.note|escape} {$invoice_item.duration} {$invoice_item.cost} + {if $user->isPluginEnabled('ps')} + {if $invoice_item.paid}{$i18n.label.yes}{else}{$i18n.label.no}{/if} + {/if} {/foreach}   @@ -61,6 +67,20 @@ {$total|escape} + + {$forms.invoiceForm.open} + {if $user->isPluginEnabled('ps')} + + + + +
+ + +
{$i18n.label.mark_paid}: {$forms.invoiceForm.mark_paid_action_options.control} {$forms.invoiceForm.btn_mark_paid.control}
+
+ {/if} + {$forms.invoiceForm.close} {/if}