reorg
This commit is contained in:
parent
d000f77098
commit
40e8e08690
3487 changed files with 39 additions and 21 deletions
0
src/Yavsc.Org/Views/FrontOffice/BillAcquitment.cshtml
Normal file
0
src/Yavsc.Org/Views/FrontOffice/BillAcquitment.cshtml
Normal file
0
src/Yavsc.Org/Views/FrontOffice/BillValidation.cshtml
Normal file
0
src/Yavsc.Org/Views/FrontOffice/BillValidation.cshtml
Normal file
20
src/Yavsc.Org/Views/FrontOffice/HairCut.cshtml
Normal file
20
src/Yavsc.Org/Views/FrontOffice/HairCut.cshtml
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
@model IEnumerable<Yavsc.ViewModels.FrontOffice.PerformerProfileViewModel>
|
||||
|
||||
@{
|
||||
ViewData["Title"] = ViewBag.Activity?.Name ?? "Any" ;
|
||||
}
|
||||
<h1>@ViewData["Title"]</h1>
|
||||
<em>@ViewBag.Activity.Description</em>
|
||||
|
||||
@foreach (var profile in Model) {
|
||||
<hr/>
|
||||
@Html.DisplayFor(m=>profile)
|
||||
<a asp-controller="HairCutCommand" asp-action="HairCut"
|
||||
asp-route-activityCode="@ViewBag.Activity.Code"
|
||||
asp-route-performerId="@profile.PerformerId"
|
||||
class="btn btn-success">
|
||||
Proposer un rendez-vous à @profile.UserName
|
||||
</a>
|
||||
|
||||
}
|
||||
|
||||
38
src/Yavsc.Org/Views/FrontOffice/Index.cshtml
Normal file
38
src/Yavsc.Org/Views/FrontOffice/Index.cshtml
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
@model Yavsc.ViewModels.FrontOffice.FrontOfficeIndexViewModel
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Front office";
|
||||
}
|
||||
|
||||
<h2>Index</h2>
|
||||
<dl class="dl-horizontal">
|
||||
<dt>EstimateToProduce
|
||||
</dt>
|
||||
<dd>@Html.DisplayFor(m=>m.EstimateToProduceCount)
|
||||
</dd>
|
||||
|
||||
<dt>EstimateToSignAsPro
|
||||
</dt>
|
||||
<dd>@Html.DisplayFor(m=>m.EstimateToSignAsProCount)
|
||||
</dd>
|
||||
|
||||
<dt>EstimateToSignAsCli
|
||||
</dt>
|
||||
<dd>@Html.DisplayFor(m=>m.EstimateToSignAsCliCount)
|
||||
</dd>
|
||||
|
||||
<dt>BillToSignAsPro
|
||||
</dt>
|
||||
<dd>@Html.DisplayFor(m=>m.BillToSignAsProCount)
|
||||
</dd>
|
||||
|
||||
<dt>BillToSignAsCli
|
||||
</dt>
|
||||
<dd>@Html.DisplayFor(m=>m.BillToSignAsCliCount)
|
||||
</dd>
|
||||
|
||||
<dt>PayementsDone
|
||||
</dt>
|
||||
<dd>@Html.DisplayFor(m=>m.NewPayementsCount)
|
||||
</dd>
|
||||
</dl>
|
||||
17
src/Yavsc.Org/Views/FrontOffice/Profiles.cshtml
Normal file
17
src/Yavsc.Org/Views/FrontOffice/Profiles.cshtml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
@model IEnumerable<PerformerProfileViewModel>
|
||||
|
||||
@{
|
||||
ViewData["Title"] = (ViewBag.Activity?.Name ?? "Any") ;
|
||||
}
|
||||
<h1>@ViewData["Title"]</h1>
|
||||
<em>@ViewBag.Activity.Description</em>
|
||||
|
||||
@foreach (var profile in Model) {
|
||||
<hr/>
|
||||
@Html.DisplayFor(m=>profile)
|
||||
<a class="btn btn-success" asp-controller="Command" asp-action="Create" asp-route-proId="@profile.PerformerId"
|
||||
asp-route-billingCode="Profiles" asp-route-activityCode="@ViewBag.Activity.Code" >
|
||||
Proposer un rendez-vous à @profile.UserName
|
||||
</a>
|
||||
}
|
||||
|
||||
|
|
@ -0,0 +1,327 @@
|
|||
@model Yavsc.Models.Haircut.BrusherProfile
|
||||
|
||||
<fieldset>
|
||||
<legend>Disponibilités</legend>
|
||||
|
||||
<dl class="dl-horizontal">
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.Schedule)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.Schedule)
|
||||
</dd>
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.ActionDistance)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.ActionDistance)
|
||||
</dd>
|
||||
</dl>
|
||||
</fieldset>
|
||||
<fieldset>
|
||||
<legend>Tarifs divers</legend>
|
||||
<dl class="dl-horizontal">
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.ShampooPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.ShampooPrice)
|
||||
</dd>
|
||||
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.CarePrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.CarePrice)
|
||||
</dd>
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.FlatFeeDiscount)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.FlatFeeDiscount)
|
||||
</dd>
|
||||
</dl>
|
||||
</fieldset>
|
||||
|
||||
<fieldset>
|
||||
<legend>Tarifs balayages</legend>
|
||||
|
||||
|
||||
<dl class="dl-horizontal">
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.LongBalayagePrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.LongBalayagePrice)
|
||||
</dd>
|
||||
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.HalfBalayagePrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.HalfBalayagePrice)
|
||||
</dd>
|
||||
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.ShortBalayagePrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.ShortBalayagePrice)
|
||||
</dd>
|
||||
</dl>
|
||||
</fieldset>
|
||||
|
||||
<fieldset>
|
||||
<legend>Tarifs défrisage</legend>
|
||||
|
||||
|
||||
<dl class="dl-horizontal">
|
||||
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.HalfDefrisPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.HalfDefrisPrice)
|
||||
</dd>
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.LongDefrisPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.LongDefrisPrice)
|
||||
</dd>
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.ShortDefrisPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.ShortDefrisPrice)
|
||||
</dd>
|
||||
</dl>
|
||||
</fieldset>
|
||||
|
||||
<fieldset>
|
||||
<legend>Tarifs mèches</legend>
|
||||
|
||||
|
||||
<dl class="dl-horizontal">
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.HalfMechPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.HalfMechPrice)
|
||||
</dd>
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.LongMechPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.LongMechPrice)
|
||||
</dd>
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.ShortMechPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.ShortMechPrice)
|
||||
</dd>
|
||||
|
||||
|
||||
|
||||
|
||||
</dl>
|
||||
</fieldset>
|
||||
<fieldset>
|
||||
<legend>Tarifs coupes</legend>
|
||||
|
||||
|
||||
<dl class="dl-horizontal">
|
||||
|
||||
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.WomenHalfCutPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.WomenHalfCutPrice)
|
||||
</dd>
|
||||
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.WomenLongCutPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.WomenLongCutPrice)
|
||||
</dd>
|
||||
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.WomenShortCutPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.WomenShortCutPrice)
|
||||
</dd>
|
||||
|
||||
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.ManCutPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.ManCutPrice)
|
||||
</dd>
|
||||
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.KidCutPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.KidCutPrice)
|
||||
</dd>
|
||||
|
||||
</dl>
|
||||
</fieldset>
|
||||
<fieldset>
|
||||
<legend>Tarifs couleurs</legend>
|
||||
|
||||
|
||||
<dl class="dl-horizontal">
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.LongColorPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.LongColorPrice)
|
||||
</dd>
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.HalfColorPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.HalfColorPrice)
|
||||
</dd>
|
||||
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.ShortColorPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.ShortColorPrice)
|
||||
</dd>
|
||||
</dl>
|
||||
<dl class="dl-horizontal">
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.ShortMultiColorPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.ShortMultiColorPrice)
|
||||
</dd>
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.HalfMultiColorPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.HalfMultiColorPrice)
|
||||
</dd>
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.LongMultiColorPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.LongMultiColorPrice)
|
||||
</dd>
|
||||
|
||||
</dl>
|
||||
</fieldset>
|
||||
<fieldset>
|
||||
<legend>Tarifs burshing</legend>
|
||||
|
||||
|
||||
<dl class="dl-horizontal">
|
||||
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.LongBrushingPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.LongBrushingPrice)
|
||||
</dd>
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.HalfBrushingPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.HalfBrushingPrice)
|
||||
</dd>
|
||||
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.ShortBrushingPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.ShortBrushingPrice)
|
||||
</dd>
|
||||
|
||||
|
||||
|
||||
</dl>
|
||||
</fieldset>
|
||||
<fieldset>
|
||||
<legend>Tarifs permanentes</legend>
|
||||
|
||||
|
||||
<dl class="dl-horizontal">
|
||||
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.LongPermanentPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.LongPermanentPrice)
|
||||
</dd>
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.HalfPermanentPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.HalfPermanentPrice)
|
||||
</dd>
|
||||
|
||||
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.ShortPermanentPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.ShortPermanentPrice)
|
||||
</dd>
|
||||
|
||||
|
||||
|
||||
</dl>
|
||||
</fieldset>
|
||||
<fieldset>
|
||||
<legend>Tarifs mise en plis</legend>
|
||||
|
||||
|
||||
<dl class="dl-horizontal">
|
||||
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.LongFoldingPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.LongFoldingPrice)
|
||||
</dd>
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.HalfFoldingPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.HalfFoldingPrice)
|
||||
</dd>
|
||||
|
||||
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.ShortFoldingPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.ShortFoldingPrice)
|
||||
</dd>
|
||||
|
||||
|
||||
|
||||
</dl>
|
||||
</fieldset>
|
||||
<fieldset>
|
||||
<legend>Spécialités homme</legend>
|
||||
|
||||
|
||||
<dl class="dl-horizontal">
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.ManBrushPrice)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.ManBrushPrice)
|
||||
</dd>
|
||||
|
||||
</dl>
|
||||
</fieldset>
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
@model Yavsc.Models.Musical.Profiles.Instrumentation
|
||||
|
||||
|
||||
@if (Model == null) {
|
||||
<p>NoInstrument</p>
|
||||
}
|
||||
@if (Model != null) {
|
||||
<fieldset>
|
||||
<legend>Instrumentation</legend>
|
||||
|
||||
<dl class="dl-horizontal">
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.Tool)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.Tool)
|
||||
</dd>
|
||||
</dl>
|
||||
</fieldset>
|
||||
}
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
@model Yavsc.Models.Workflow.Profiles.FormationSettings
|
||||
@if (Model != null && Model.CoWorking != null) {
|
||||
<dl class="dl-horizontal">
|
||||
<dt>Partenariat</dt>
|
||||
<dd>@Model.DisplayName</dd>
|
||||
<dt></dt>
|
||||
<dd><ul>
|
||||
@foreach(var memb in Model.CoWorking) {
|
||||
<li>@Html.Display("PerformerProfile","", "", memb.Performer)</li>
|
||||
}
|
||||
</ul></dd>
|
||||
</dl>
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue