yavsc/Yavsc/Views/HairCutCommand/BrusherProfileScript.cshtml

29 lines
1.2 KiB
Text
Raw Normal View History

2017-03-02 11:35:38 +01:00
@model BrusherProfile
2017-07-09 04:05:06 +02:00
2017-03-02 11:35:38 +01:00
<script>
var tarifs =
[
{ 
2017-04-01 02:14:10 +02:00
cut: [ @Model.WomenHalfCutPrice, @Model.WomenShortCutPrice, @Model.WomenLongCutPrice ],
2017-03-02 11:35:38 +01:00
tech: [
2017-04-01 02:14:10 +02:00
[@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],
2017-03-02 11:35:38 +01:00
],
2017-04-01 02:14:10 +02:00
brush: [@Model.HalfBrushingPrice, @Model.ShortBrushingPrice, @Model.LongBrushingPrice],
multicolor: [@Model.HalfMultiColorPrice, @Model.ShortMultiColorPrice, @Model.LongMultiColorPrice],
2017-03-02 11:35:38 +01:00
shampoo: @Model.ShampooPrice,
2017-04-08 16:17:16 +02:00
care: @Model.CarePrice,
feediscount: @Model.FlatFeeDiscount
2017-03-02 11:35:38 +01:00
},
{ cut: [@Model.ManCutPrice], brush: [@Model.ManBrushPrice],
shampoo: @Model.ShampooPrice,
care: @Model.CarePrice },
{ cut: [@Model.KidCutPrice] ,
shampoo: @Model.ShampooPrice,
care: @Model.CarePrice }
];
</script>