30 lines
1.2 KiB
Plaintext
30 lines
1.2 KiB
Plaintext
@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>
|