first commit
This commit is contained in:
14
apps/backend/modules/stOrder/templates/_proforma.php
Normal file
14
apps/backend/modules/stOrder/templates/_proforma.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
/**
|
||||
* @var Order $order
|
||||
*/
|
||||
if ($order->getProforma())
|
||||
{
|
||||
echo st_get_admin_button('preview', __("Pokaż"), "stInvoiceBackend/proformaEdit?id=".$order->getProforma()->getId()."&type=".$order->getProforma()->getType()."&mode=show", array('size' => 'small'));
|
||||
echo st_get_admin_button('download', __("Pobierz"), "stInvoicePdf/show?id=".$order->getProforma()->getId()."&download=true&culture=".$order->getClientCulture(), array('size' => 'small'));
|
||||
echo st_get_admin_button('refresh', __("Aktualizuj"), "stInvoiceBackend/update?id=".$order->getId().'&invoice_id='.$order->getProforma()->getId(), array('size' => 'small'));
|
||||
}
|
||||
else
|
||||
{
|
||||
echo __('Brak');
|
||||
}
|
||||
Reference in New Issue
Block a user