{{complement.name}}
{{ (complement.price > 0) ? 'R$ ' + Number.parseFloat(complement.price).toFixed(2).replace('.', ',') : '' }}
• {{ complement.quantity_type_value || '' }}{{ complement.quantity_type != 'custom' ? complement.quantity_type : '' }}
{{
(!complement.quantity_type || complement.quantity_type === 'unid' || complement.quantity_type === 'custom') ? (
complement.current_stock <= 0 ? 'Esgotado' : (complement.current_stock == 1) ? complement.current_stock + ' disponível' : complement.current_stock + ' disponíveis'
) : (
complement.current_stock <= 0 ? `Esgotado` : `Em estoque: ${complement.stock_formated}`
)
}}