yavsc/Yavsc/Views/Shared/DisplayTemplates/Estimate.cshtml

31 lines
827 B
Text
Raw Normal View History

2017-01-16 15:34:05 +01:00
@model Estimate
2017-02-22 22:58:02 +01:00
2017-01-16 15:34:05 +01:00
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.Title)
</dt>
<dd>
@Html.DisplayFor(model => model.Title)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Description)
</dt>
<dd>
@Html.DisplayFor(model => model.Description)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Bill)
</dt>
<dd>
@foreach (var cl in Model.Bill) {
@await Html.PartialAsync("BillingLine", cl);
}
</dd>
</dl>
2017-02-22 22:58:02 +01:00
<label>Signature fournisseur :
2017-06-08 00:26:29 +02:00
<img src="/api/pdfbill/prosign/@Model.Id" alt="" style="height:100px; background-color: white;">
2017-02-22 22:58:02 +01:00
</label>
2017-01-16 15:34:05 +01:00
@await Component.InvokeAsync("Estimate",Model.Id)