FlatFeeDiscount
This commit is contained in:
parent
9923810d4f
commit
b2eaed3cf2
8 changed files with 39 additions and 27 deletions
|
|
@ -261,13 +261,21 @@
|
|||
<span asp-validation-for="ShortFoldingPrice" class="text-danger" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="FlatFeeDiscount" class="col-md-2 control-label"></label>
|
||||
<div class="col-md-10">
|
||||
<input asp-for="FlatFeeDiscount" class="form-control" />
|
||||
<span asp-validation-for="FlatFeeDiscount" class="text-danger" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
model.ShortFoldingPrice
|
||||
<div class="form-group">
|
||||
<div class="col-md-offset-2 col-md-10">
|
||||
<input type="submit" value="Save" class="btn btn-default" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</fieldset>
|
||||
</div>
|
||||
</form>
|
||||
|
|
|
|||
|
|
@ -36,9 +36,7 @@
|
|||
</dl>
|
||||
</fieldset>
|
||||
<fieldset>
|
||||
<legend>Tarifs hors coiffure ou coupe</legend>
|
||||
|
||||
|
||||
<legend>Tarifs divers</legend>
|
||||
<dl class="dl-horizontal">
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.ShampooPrice)
|
||||
|
|
@ -53,7 +51,12 @@
|
|||
<dd>
|
||||
@Html.DisplayFor(model => model.CarePrice)
|
||||
</dd>
|
||||
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.FlatFeeDiscount)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.FlatFeeDiscount)
|
||||
</dd>
|
||||
</dl>
|
||||
</fieldset>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
@model HairCutView
|
||||
@model HairCutQuery
|
||||
@{ ViewData["Title"] = $"{ViewBag.Activity.Name}: Votre commande"; }
|
||||
@await Html.PartialAsync("BrusherProfileScript",ViewData["PerfPrefs"])
|
||||
@section scripts {
|
||||
|
|
@ -124,7 +124,7 @@
|
|||
|
||||
<h2>@ViewData["Title"]</h2>
|
||||
|
||||
@Html.DisplayFor(m=>m.HairBrusher)
|
||||
@Html.DisplayFor(m=>m.PerformerProfile)
|
||||
|
||||
<form asp-controller="HairCutCommand" asp-action="HairCut">
|
||||
<div class="form-horizontal">
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
@if (act.Children.Count>0) {
|
||||
<p><em>@act.Name</em><br/>
|
||||
@act.Description </p>
|
||||
<a asp-route-id="@act.Code">
|
||||
<a asp-route-id="@act.Code" class="btn btn-default">
|
||||
@foreach (Activity c in act.Children) {
|
||||
@if (!c.Hidden) { @Html.DisplayFor(subact=>c) }
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue