condition text
This commit is contained in:
parent
5f67e86d99
commit
62ee7e7c06
|
@ -147,6 +147,8 @@ const total_txt = computed(() => {
|
||||||
lam_quad_regular: discountValue * lamelles_block * lam_count * lamelle_height.value * length_m,
|
lam_quad_regular: discountValue * lamelles_block * lam_count * lamelle_height.value * length_m,
|
||||||
lam_quad_extra: discountValue * lamelles_block * lam_count * lamelle_height.value * extra_m,
|
lam_quad_extra: discountValue * lamelles_block * lam_count * lamelle_height.value * extra_m,
|
||||||
}
|
}
|
||||||
|
const isPattern = pillar_pattern.value !== 0;
|
||||||
|
const isTopper = pillar_topper.value !== 0;
|
||||||
// console.log(prices)
|
// console.log(prices)
|
||||||
const extra = extra_section.value ? {
|
const extra = extra_section.value ? {
|
||||||
pillar: !remove_pillar.value && {
|
pillar: !remove_pillar.value && {
|
||||||
|
@ -177,8 +179,6 @@ const total_txt = computed(() => {
|
||||||
)
|
)
|
||||||
) {
|
) {
|
||||||
const els = [];
|
const els = [];
|
||||||
const isPattern = pillar_pattern.value !== 0;
|
|
||||||
const isTopper = pillar_topper.value !== 0;
|
|
||||||
if (isPattern) els.push('нанесения узоров на опорные столбы')
|
if (isPattern) els.push('нанесения узоров на опорные столбы')
|
||||||
if (isTopper) els.push('индивидуального дизайна колпаков')
|
if (isTopper) els.push('индивидуального дизайна колпаков')
|
||||||
const txt = `Стоимость ${els.join(' и ')} рассчитывается отдельно.`
|
const txt = `Стоимость ${els.join(' и ')} рассчитывается отдельно.`
|
||||||
|
@ -201,7 +201,10 @@ const total_txt = computed(() => {
|
||||||
Object.entries(item).map(el => el[1]).join(': ')
|
Object.entries(item).map(el => el[1]).join(': ')
|
||||||
).filter(Boolean)
|
).filter(Boolean)
|
||||||
|
|
||||||
const res_total = [`Итого${res_decor.length ? ' без узора и колпаков:' : ':'} ${roubleSign.format(total)}`]
|
const total_str = []
|
||||||
|
if (isPattern) total_str.push('узора')
|
||||||
|
if (isTopper) total_str.push('колпаков')
|
||||||
|
const res_total = [`Итого${total_str.length ? ' без ' + total_str.join(' и ') : ''}: ${roubleSign.format(total)}`]
|
||||||
return {
|
return {
|
||||||
regular: res_regular,
|
regular: res_regular,
|
||||||
extra: res_extra,
|
extra: res_extra,
|
||||||
|
|
Loading…
Reference in New Issue