85 lines
3.1 KiB
Plaintext
85 lines
3.1 KiB
Plaintext
@using StockManMVC.Models
|
|
@model StockManMVC.Models.Item
|
|
|
|
<div>
|
|
<div class="row">
|
|
<div class="col-sm-12 text-right">
|
|
@*<a target="_blank" href="javascript: w=window.open('https://qrcode.steamware.net/HOME/QR_site/JSON?val={\" baseUrl\":\"http://iis02/StockMan/STEA/Items/Details/{0}?StockItemID={0}\",\"parameters\":[\"@Html.DisplayFor(model => model.ID)\"]}'); w.print(); w.close(); ">Stampa QR Code per l'articolo <i class="fa fa-2x fa-print" aria-hidden="true"></i></a>
|
|
<hr />
|
|
<a target="_blank" href="javascript: w=window.open('https://qrcode.steamware.net/HOME/QR_site/JSON?val={" baseUrl":"http://iis02/StockMan/STEA/Items/Details/{0}?StockItemID={0}","parameters":["@Html.DisplayFor(model => model.ID)"]}'); w.print(); ">Stampa QR Code per l'articolo <i class="fa fa-2x fa-print" aria-hidden="true"></i></a>
|
|
*@
|
|
|
|
@*<a target="_blank" href="javascript: w=window.open('https://qrcode.steamware.net/HOME/QR_site/JSON?val={" baseUrl":"http://iis02/StockMan/STEA/Items/Details/{0}?StockItemID={0}","parameters":["@Html.DisplayFor(model => model.ID)"]}'); w.print(); ">Stampa QR Code per l'articolo <i class="fa fa-2x fa-print" aria-hidden="true"></i></a>
|
|
<hr />*@
|
|
|
|
<a target="_blank" href="https://qrcode.steamware.net/HOME/QR_site/JSON?val={'baseUrl':'@(ViewBag.BaseUrl + "Items/Details/{0}?StockItemID={0}")','parameters':['@Html.DisplayFor(model => model.ID)']}">Mostra QR Code per l'articolo <i class="fa fa-2x fa-print" aria-hidden="true"></i></a>
|
|
<hr />
|
|
|
|
</div>
|
|
</div>
|
|
|
|
@*ID:
|
|
<b>@Html.DisplayFor(model => model.ID)</b>*@
|
|
<dl class="">
|
|
@*<dt>QR Code</dt>
|
|
<dd>
|
|
@Html.Image("https://qrcode.steamware.net/HOME/QR_site/JSON?val={\"baseUrl\":\"http://iis02/StockMan/STEA/Items/Details/{0}?StockItemID={0}\",\"parameters\":[\"534\"]}", "QR Code", "100")
|
|
</dd>*@
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.ItemFamily.Descr)
|
|
</dt>
|
|
<dd>
|
|
@Html.DisplayFor(model => model.ItemFamily.Descr)
|
|
</dd>
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.Descr)
|
|
</dt>
|
|
<dd>
|
|
@Html.DisplayFor(model => model.Descr)
|
|
</dd>
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.CodInt)
|
|
</dt>
|
|
<dd>
|
|
@Html.DisplayFor(model => model.CodInt)
|
|
</dd>
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.CodExt)
|
|
</dt>
|
|
<dd>
|
|
@Html.DisplayFor(model => model.CodExt)
|
|
</dd>
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.DescrExt)
|
|
</dt>
|
|
<dd>
|
|
@Html.DisplayFor(model => model.DescrExt)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.QtaMin)
|
|
</dt>
|
|
<dd>
|
|
@Html.DisplayFor(model => model.QtaMin)
|
|
</dd>
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.QtaBatch)
|
|
</dt>
|
|
<dd>
|
|
@Html.DisplayFor(model => model.QtaBatch)
|
|
</dd>
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.CurrValue)
|
|
</dt>
|
|
<dd>
|
|
@Html.DisplayFor(model => model.CurrValue)
|
|
</dd>
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.UM)
|
|
</dt>
|
|
<dd>
|
|
@Html.DisplayFor(model => model.UM)
|
|
</dd>
|
|
</dl>
|
|
</div>
|