| 
                 Sn. {{ user.profile.fullName|default(user.email) }} 
                
                    Siparişiniz kargoya verildi.
                 
                
                    
                        
                            
                                
                                    | Sipariş Numaranız: {{ order.orderNumber }} | 
                                 
                                
                                    | 
                                        Sipariş Tarihi: {{ order.createdAt|date('d/m/Y') }}
                                     | 
                                 
                             
                         | 
                     
                 
                
                    
                        
                            
                                
                                    | 
                                         Ürün 
                                     | 
                                    
                                         Adet 
                                     | 
                                    
                                         Fiyat 
                                     | 
                                 
                                {% import "main/common/Macro/productVariantValues.html.twig" as productVariantValue %}
                                {% for orderItem in orderItems %}
                                {% set product        = orderItem.product  %}
                                {% set productLang    = getProductLang({'product':product})  %}
                                {% set productVariant = orderItem.productVariant  %}
                                {% set detailLink = path('main_product_show',{'alias':productLang.alias|default,'id':product.id}) %}
                                
                                    | 
                                        {{productLang.name|default}}
                                        {{ productVariantValue.info(productVariant,{'beside':'1'}) }}
                                     | 
                                    
                                        {{ orderItem.qty|default }} Adet
                                     | 
                                    {{ money_format(orderItem.totalPrice|default) }} TL | 
                                 
                                {% endfor %}
                                
                                    | 
                                         
                                            Sipariş Toplamı
                                         
                                     | 
                                    
                                         
                                            {{ money_format(order.itemCountTotal)}} TL
                                         
                                     | 
                                 
                                {% if order.customerDiscountPrice|default > 0 %}
                                    
                                        | 
                                             
                                                Müşteri İndirimi
                                               ( % {{ order.customerDiscountRate }})
                                             
                                         | 
                                        
                                             
                                                -  {{ money_format(order.customerDiscountPrice)}} TL
                                             
                                         | 
                                     
                                {% endif %}
                                
                                    | 
                                         
                                            Kargo tutarı
                                         
                                     | 
                                    
                                         
                                            {{ money_format(order.shippingTotal)}} TL
                                         
                                     | 
                                 
                                
                                    | 
                                         
                                            Genel Toplam
                                         
                                     | 
                                    
                                         
                                            {{ money_format(order.globalTotal) }} TL
                                         
                                     | 
                                 
                             
                         | 
                     
                 
                
                
                    Bu sipariş ile ilgili herhangi bir sorunuz varsa, bu e-postayı yanıtlayın veya yardım için
                    destek ekibimize
                    ulaşın.
                 
                
                    Saygılarımızla..
                     
                 
             |