Files
yavsc/Yavsc/Views/HairCutCommand/BrusherProfileScript.cshtml
2017-04-08 16:17:16 +02:00

29 lines
1.2 KiB
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@model BrusherProfile
<script>
var tarifs =
[
{ 
cut: [ @Model.WomenHalfCutPrice, @Model.WomenShortCutPrice, @Model.WomenLongCutPrice ],
tech: [
[@Model.HalfColorPrice, @Model.ShortColorPrice, @Model.LongColorPrice],
[@Model.HalfPermanentPrice, @Model.ShortPermanentPrice, @Model.LongPermanentPrice],
[@Model.HalfDefrisPrice, @Model.ShortDefrisPrice, @Model.LongDefrisPrice],
[@Model.HalfMechPrice, @Model.ShortMechPrice, @Model.LongMechPrice],
[@Model.HalfBalayagePrice, @Model.ShortBalayagePrice, @Model.LongBalayagePrice],
],
brush: [@Model.HalfBrushingPrice, @Model.ShortBrushingPrice, @Model.LongBrushingPrice],
multicolor: [@Model.HalfMultiColorPrice, @Model.ShortMultiColorPrice, @Model.LongMultiColorPrice],
shampoo: @Model.ShampooPrice,
care: @Model.CarePrice,
feediscount: @Model.FlatFeeDiscount
},
{ cut: [@Model.ManCutPrice], brush: [@Model.ManBrushPrice],
shampoo: @Model.ShampooPrice,
care: @Model.CarePrice },
{ cut: [@Model.KidCutPrice] ,
shampoo: @Model.ShampooPrice,
care: @Model.CarePrice }
];
</script>