first commit
This commit is contained in:
39
admin/templates/window/ordersOfSuppliersPrint.tpl
Normal file
39
admin/templates/window/ordersOfSuppliersPrint.tpl
Normal file
@@ -0,0 +1,39 @@
|
||||
{extends "../window.tpl"}
|
||||
|
||||
{block title}
|
||||
Tisk objednávky dodavatele {$body.data.supplier.name}
|
||||
{/block}
|
||||
|
||||
{block tabs}
|
||||
{windowTab id='flapOrder' label="Objednávka dodavateli "|cat:$body.data.supplier.name}
|
||||
{/block}
|
||||
|
||||
{block tabsContent}
|
||||
<div id="flapOrder" class="tab-pane fade active in boxStatic">
|
||||
<table class="table table-bordered">
|
||||
<tr>
|
||||
<td>Název produktu</td>
|
||||
<td>Varianta</td>
|
||||
<td>Kód</td>
|
||||
<td>Počet kusů</td>
|
||||
</tr>
|
||||
{foreach $body.data.items as $key => $item}
|
||||
<tr>
|
||||
<td>{$item.name}</td>
|
||||
<td>{$item.variation}</td>
|
||||
<td>{$item.code}</td>
|
||||
<td>{$item.pieces}</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</table>
|
||||
</div>
|
||||
{/block}
|
||||
|
||||
{block buttons}
|
||||
<div class="col-md-2 pull-right">
|
||||
<input type="button" class="btn btn-primary btn-block" onClick="closeWindow();" value="{'windowCancel'|translate:'button'}" />
|
||||
</div>
|
||||
<div class="col-md-2 pull-right">
|
||||
<a href="launch.php?s=ordersOfSuppliers.php&acn=edit&ID={$body.data.supplier.id}" class="btn btn-block" title="Zpět">Zpět</a>
|
||||
</div>
|
||||
{/block}
|
||||
Reference in New Issue
Block a user