templates/front/product-option/options-global-new-mobile.html.twig line 1

Open in your IDE?
  1. {% if product.isDeleted %}
  2.     <div class="mt-12">
  3.         <div class="alert alert-danger" role="alert">
  4.             <p class="p-2">{{ 'Ce produit est actuellement indisponible, il sera de retour très bientôt' | trans({}, "productTranslate") }}</p>
  5.         </div>
  6.     </div>
  7. {% else %}
  8.     {% if product and getDisponibiliteProductPerCountrySession(product) == false %}
  9.             <div class="alert alert-danger" role="alert">
  10.                 <p class="p-2">{{ 'Ce produit est actuellement indisponible dans' | trans({}, "productTranslate") }} </p>
  11.             </div>
  12.     {% else %}
  13.         {% if product.isColorLab %}
  14.             <input type="hidden" name="productColorLab" id="productColorLab" value="1">
  15.             {% include 'front/product-option/options-next-mobile-new.html.twig' %}
  16.         {% else %}
  17.             {% if product.typeProduct == constant('App\\Entity\\Product::AFFICHE') %}
  18.                 <div class="bx_select row_select_ca boxOptionBlocNewMobile" >
  19.                     <h2 class="boxOptionBlocNewMobileLabel">{{ 'Sélectionnez votre type d’impression' | trans({}, "productTranslate") }}</h2>
  20.                     <div class="d-flex">
  21.                         <div class="f_family">
  22.                             <a aria-controls="selectOption1" aria-expanded="false" role="button" href="#selectOption1" data-toggle="collapse" class="btn btn-primary collapsed">
  23.                                 <span style="" id="">
  24.                                   {% for item in typeImpression %}
  25.                                       {% if item.id == typeImpression_id %}
  26.                                           {{ item.name | trans({}, "productTranslate") }}
  27.                                       {% endif %}
  28.                                   {% endfor %}
  29.                                </span>
  30.                             </a>
  31.                             <div class="collapse selectOptionInput" id="selectOption1" style="">
  32.                                 <div class="row_select_ca02 row p-0">
  33.                                     <div class="col-12 p-0">
  34.                                         <div class=" bx_global_radio taille_full" style="max-width: 100%;">
  35.                                             {% for item in typeImpression %}
  36.                                                 <div class="taille tailleSelect col-lg-12 pr-0  pl-0">
  37.                                                     <input type="radio" name="typeImpression" class="select_ca_btn" data-text="{{ item.name | trans({}, "productTranslate") }}" id="typeImpression{{ item.id }}" {% if item.id == typeImpression_id %}checked="checked"{% endif %} value="{{ item.id }}">
  38.                                                     <label for="typeImpression{{ item.id }}" style="width: 100%" class="block taille ">
  39.                                                         <div class="row">
  40.                                                             <div class="col-12 pl-0" >
  41.                                                                 <span class="prixProductQtyUnite">
  42.                                                                    {{ item.name | trans({}, "productTranslate") }}
  43.                                                                 </span>
  44.                                                             </div>
  45.                                                         </div>
  46.                                                     </label>
  47.                                                 </div>
  48.                                             {% endfor %}
  49.                                         </div>
  50.                                     </div>
  51.                                 </div>
  52.                             </div>
  53.                         </div>
  54.                     </div>
  55.                 </div>
  56.             {% else %}
  57.                 <div class="bx_select row_select_ca boxOptionBlocNewMobile" {% if product.typeProduct == constant('App\\Entity\\Product::STICKERS_AUTOCOLLANT') %}style="display: none" {% endif %} >
  58.                    <h2 class="boxOptionBlocNewMobileLabel">{{ 'Sélectionnez votre type d’impression' | trans({}, "productTranslate") }}</h2>
  59.                     <div class="d-flex">
  60.                         <div class="f_family">
  61.                             <a aria-controls="selectOption0" aria-expanded="false" role="button" href="#selectOption0" data-toggle="collapse" class="btn btn-primary collapsed">
  62.                                 <span style="" id="">
  63.                                     {% if constant('App\\Entity\\ProductAttribute::RECTO') == rectoverso %}{{ 'Recto' | trans({}, "productTranslate") }}{% else %}{{ 'Recto/Verso' | trans({}, "productTranslate") }}{% endif %}
  64.                                </span>
  65.                             </a>
  66.                             <div class="collapse selectOptionInput" id="selectOption0" style="">
  67.                                 <div class="row_select_ca02 row p-0">
  68.                                     <div class="col-12 p-0">
  69.                                         <div class=" bx_global_radio taille_full" style="max-width: 100%;">
  70.                                             {% if product.isRecto  %}
  71.                                                 <div class="taille tailleSelect col-lg-12 pr-0  pl-0">
  72.                                                     <input type="radio" name="rectoverso" class="select_ca_btn" data-text="{{ 'Recto' | trans({}, "productTranslate") }}" id="recto" {% if constant('App\\Entity\\ProductAttribute::RECTO') == rectoverso %}checked="checked"{% endif %} value="{{ constant('App\\Entity\\ProductAttribute::RECTO')  }}">
  73.                                                     <label for="recto" style="width: 100%" class="block taille ">
  74.                                                         <div class="row">
  75.                                                             <div class="col-12 pl-0" >
  76.                                                                 <span class="prixProductQtyUnite">
  77.                                                                   {{ 'Recto' | trans({}, "productTranslate") }}
  78.                                                                 </span>
  79.                                                             </div>
  80.                                                         </div>
  81.                                                     </label>
  82.                                                 </div>
  83.                                             {% elseif product.isRectoVerso %}
  84.                                                 <div class="taille tailleSelect col-lg-12 pr-0  pl-0">
  85.                                                     <input type="radio" name="rectoverso" class="select_ca_btn" data-text="{{ 'Recto/Verso' | trans({}, "productTranslate") }}" id="rectoVerso" {% if constant('App\\Entity\\ProductAttribute::VERSO') == rectoverso %}checked="checked"{% endif %} value="{{ constant('App\\Entity\\ProductAttribute::VERSO')  }}">
  86.                                                     <label for="rectoVerso" style="width: 100%" class="block taille ">
  87.                                                         <div class="row">
  88.                                                             <div class="col-12 pl-0" >
  89.                                                                 <span class="prixProductQtyUnite">
  90.                                                                   {{ 'Recto/Verso' | trans({}, "productTranslate") }}
  91.                                                                 </span>
  92.                                                             </div>
  93.                                                         </div>
  94.                                                     </label>
  95.                                                 </div>
  96.                                             {% else %}
  97.                                                 <div class="taille tailleSelect col-lg-12 pr-0  pl-0">
  98.                                                     <input type="radio" name="rectoverso" class="select_ca_btn" data-text="{{ 'Recto' | trans({}, "productTranslate") }}" id="recto" {% if constant('App\\Entity\\ProductAttribute::RECTO') == rectoverso %}checked="checked"{% endif %} value="{{ constant('App\\Entity\\ProductAttribute::RECTO')  }}">
  99.                                                     <label for="recto" style="width: 100%" class="block taille ">
  100.                                                         <div class="row">
  101.                                                             <div class="col-12 pl-0" >
  102.                                                                 <span class="prixProductQtyUnite">
  103.                                                                   {{ 'Recto' | trans({}, "productTranslate") }}
  104.                                                                 </span>
  105.                                                             </div>
  106.                                                         </div>
  107.                                                     </label>
  108.                                                 </div>
  109.                                                 <div class="taille tailleSelect col-lg-12 pr-0  pl-0">
  110.                                                     <input type="radio" name="rectoverso" class="select_ca_btn" data-text="{{ 'Recto/Verso' | trans({}, "productTranslate") }}" id="rectoVerso" {% if constant('App\\Entity\\ProductAttribute::VERSO') == rectoverso %}checked="checked"{% endif %} value="{{ constant('App\\Entity\\ProductAttribute::VERSO')  }}">
  111.                                                     <label for="rectoVerso" style="width: 100%" class="block taille ">
  112.                                                         <div class="row">
  113.                                                             <div class="col-12 pl-0" >
  114.                                                                 <span class="prixProductQtyUnite">
  115.                                                                   {{ 'Recto/Verso' | trans({}, "productTranslate") }}
  116.                                                                 </span>
  117.                                                             </div>
  118.                                                         </div>
  119.                                                     </label>
  120.                                                 </div>
  121.                                             {% endif %}
  122.                                         </div>
  123.                                     </div>
  124.                                 </div>
  125.                             </div>
  126.                         </div>
  127.                     </div>
  128.                 </div>
  129.             {% endif %}
  130.             <div class="bx_select row_select_ca boxOptionBlocNewMobile" >
  131.                 <h2 class="boxOptionBlocNewMobileLabel">
  132.                     {% if product.typeProduct == constant('App\\Entity\\Product::STICKERS_AUTOCOLLANT') %}
  133.                         {{ 'Quelle coupe souhaitez-vous ? ' | trans({}, "productTranslate") }}
  134.                     {% else %}
  135.                         {{ 'Quelle taille souhaitez-vous ?' | trans({}, "productTranslate") }}
  136.                     {% endif %}
  137.                 </h2>
  138.                 <div class="d-flex">
  139.                     <div class="f_family">
  140.                         <a aria-controls="selectOption2" aria-expanded="false" role="button" href="#selectOption2" data-toggle="collapse" class="btn btn-primary collapsed">
  141.                                 <span style="" id="">
  142.                                   {% for item in formats %}
  143.                                       {% if item.id == format_id %}
  144.                                           {{ item.name | trans({}, "productTranslate") }}
  145.                                       {% endif %}
  146.                                   {% endfor %}
  147.                                </span>
  148.                         </a>
  149.                         <div class="collapse selectOptionInput" id="selectOption2" style="">
  150.                             <div class="row_select_ca02 row p-0">
  151.                                 <div class="col-12 p-0">
  152.                                     <div class=" bx_global_radio taille_full" style="max-width: 100%;">
  153.                                         {% for item in formats %}
  154.                                             <div class="taille tailleSelect col-lg-12 pr-0  pl-0">
  155.                                                 <input type="radio" name="format" class="select_ca_btn" data-text="{{ item.name | trans({}, "productTranslate") }}" id="format{{ item.id }}" {% if item.id == format_id %}checked="checked"{% endif %} value="{{ item.id }}">
  156.                                                 <label for="format{{ item.id }}" style="width: 100%" class="block taille ">
  157.                                                     <div class="row">
  158.                                                         <div class="col-12 pl-0" >
  159.                                                                 <span class="prixProductQtyUnite">
  160.                                                                    {{ item.name | trans({}, "productTranslate") }}
  161.                                                                 </span>
  162.                                                         </div>
  163.                                                     </div>
  164.                                                 </label>
  165.                                             </div>
  166.                                         {% endfor %}
  167.                                     </div>
  168.                                 </div>
  169.                             </div>
  170.                         </div>
  171.                     </div>
  172.                 </div>
  173.             </div>
  174.             <div id="optionsGlobalByFormatMobile" class="">
  175.                 <div class="bx_select row_select_ca boxOptionBlocNewMobile" >
  176.                     <h2 class="boxOptionBlocNewMobileLabel flexDiv">
  177.                         {% if product.typeProduct == constant('App\\Entity\\Product::STICKERS_AUTOCOLLANT') %}
  178.                             {{ 'Format' | trans({}, "productTranslate") }}
  179.                         {% else %}
  180.                             {{ 'Type de papier' | trans({}, "productTranslate") }} <a href="{{ product.savoirPlusGrammageOptionProduct }}"{% if product.savoirPlusGrammageOptionProductIsExtern %} target="_blank"{% endif %}>Infos sur les grammages</a>
  181.                         {% endif %}
  182.                     </h2>
  183.                     <div class="row p-0">
  184.                         <div class="col-12 p-0 papierBlockMobile">
  185.                             <div class=" bx_global_radio taille_full" style="max-width: 100%;">
  186.                                 {% for item in gramage %}
  187.                                     <div class="taille tailleSelect col-lg-12 pr-0  pl-0">
  188.                                         <input type="radio" name="gramage" class="select_ca_btn" data-text="{{ item.namePapier | trans({}, "productTranslate") }}" id="gramage{{ item.id }}" {% if item.id == gramage_id %}checked="checked"{% endif %} value="{{ item.id }}">
  189.                                         <label for="gramage{{ item.id }}" style="width: 100%" class="block taille ">
  190.                                             <div class="row">
  191.                                                 <div class="col-12 pl-0 pr-0" >
  192.                                                     <div class="ca_image_txt" style="font-size: 13px;">
  193.                                                         <div class="row">
  194.                                                             <div class="col-9 discriptionPapierMobile">
  195.                                                                 <h4> {{ item.namePapier | trans({}, "productTranslate") }}</h4>
  196.                                                                 <h5 class="font_size1">{{ item.description | trans({}, "productTranslate") }}</h5>
  197.                                                             </div>
  198.                                                             <div class="col-3 discriptionPapierMobile">
  199.                                                                 <div class="imgPapierMobile">
  200.                                                                     <img src="{% if item.file %}{{ asset('imageSite/'~item.file) }}{% else %}{{ asset('imageSite/imgtst.png') }}{% endif %}">
  201.                                                                 </div>
  202.                                                             </div>
  203.                                                         </div>
  204.                                                     </div>
  205.                                                     {#<span class="prixProductQtyUnite">#}
  206.                                                     {#{% if product.typeProduct == constant('App\\Entity\\Product::STICKERS_AUTOCOLLANT') %}#}
  207.                                                     {#{{ item.name | trans({}, "productTranslate") }}#}
  208.                                                     {#{% else %}#}
  209.                                                     {#{{ item.namePapier | trans({}, "productTranslate") }}#}
  210.                                                     {#{% endif%}#}
  211.                                                     {#</span>#}
  212.                                                 </div>
  213.                                             </div>
  214.                                         </label>
  215.                                     </div>
  216.                                 {% endfor %}
  217.                             </div>
  218.                         </div>
  219.                     </div>
  220.                 </div>
  221.                 <div class="bx_select row_select_ca boxOptionBlocNewMobile" >
  222.                     <h2 class="boxOptionBlocNewMobileLabel">
  223.                         {{ 'Finition papier' | trans({}, "productTranslate") }}
  224.                     </h2>
  225.                     <div class="d-flex">
  226.                         <div class="f_family">
  227.                             <a aria-controls="selectOption7" aria-expanded="false" role="button" href="#selectOption7" data-toggle="collapse" class="btn btn-primary collapsed">
  228.                                 <span style="" id="">
  229.                                     {% if constant('App\\Entity\\CartDetail::FINITION_GLACE') == finition %}Finition Glacée{% endif %}
  230.                                     {% if constant('App\\Entity\\CartDetail::FINITION_MATE') == finition %}Finition Mate{% endif %}
  231.                                     {% if constant('App\\Entity\\CartDetail::FINITION_TRANSPARENT') == finition %}Finition Transparent{% endif %}
  232.                                     {% if constant('App\\Entity\\CartDetail::FINITION_REPOSITIONALBLE') == finition %}Finition Repositionnable{% endif %}
  233.                                     {% if constant('App\\Entity\\CartDetail::FINITION_SoftTouch') == finition %}Finition Soft Touch{% endif %}
  234.                                     {% if constant('App\\Entity\\CartDetail::FINITION_Pelliculemat') == finition %}Finition Pelliculé mat{% endif %}
  235.                                     {% if constant('App\\Entity\\CartDetail::FINITION_PelliculeBrillant') == finition %}Finition Pelliculé Brillant{% endif %}
  236.                                </span>
  237.                             </a>
  238.                             <div class="collapse selectOptionInput" id="selectOption7" style="">
  239.                                 <div class="row_select_ca02 row p-0">
  240.                                     <div class="col-12 p-0">
  241.                                         <div class=" bx_global_radio taille_full" style="max-width: 100%;">
  242.                                             {% if isFinitionGlace  %}
  243.                                                 <div class="taille tailleSelect col-lg-12 pr-0  pl-0">
  244.                                                     <input type="radio" name="finition" class="select_ca_btn" data-text="{{ 'Finition Glacée' | trans({}, "productTranslate") }}" id="finition{{ constant('App\\Entity\\CartDetail::FINITION_GLACE') }}" {% if  constant('App\\Entity\\CartDetail::FINITION_GLACE') == finition %}checked="checked"{% endif %} value="{{ constant('App\\Entity\\CartDetail::FINITION_GLACE') }}">
  245.                                                     <label for="finition{{ constant('App\\Entity\\CartDetail::FINITION_GLACE') }}" style="width: 100%" class="block taille ">
  246.                                                         <div class="row">
  247.                                                             <div class="col-12 pl-0" >
  248.                                                             <span class="prixProductQtyUnite">{{ 'Finition Glacée' | trans({}, "productTranslate") }}</span>
  249.                                                             </div>
  250.                                                         </div>
  251.                                                     </label>
  252.                                                 </div>
  253.                                             {% endif %}
  254.                                             {% if isFinitionMate  %}
  255.                                                 <div class="taille tailleSelect col-lg-12 pr-0  pl-0">
  256.                                                     <input type="radio" name="finition" class="select_ca_btn" data-text="{{ 'Finition Mate' | trans({}, "productTranslate") }}" id="finition{{ constant('App\\Entity\\CartDetail::FINITION_MATE') }}" {% if  constant('App\\Entity\\CartDetail::FINITION_MATE') == finition %}checked="checked"{% endif %} value="{{ constant('App\\Entity\\CartDetail::FINITION_MATE') }}">
  257.                                                     <label for="finition{{ constant('App\\Entity\\CartDetail::FINITION_MATE') }}" style="width: 100%" class="block taille ">
  258.                                                         <div class="row">
  259.                                                             <div class="col-12 pl-0" >
  260.                                                                 <span class="prixProductQtyUnite">{{ 'Finition Mate' | trans({}, "productTranslate") }}</span>
  261.                                                             </div>
  262.                                                         </div>
  263.                                                     </label>
  264.                                                 </div>
  265.                                             {% endif %}
  266.                                             {% if isFinitionTransparent  %}
  267.                                                 <div class="taille tailleSelect col-lg-12 pr-0  pl-0">
  268.                                                     <input type="radio" name="finition" class="select_ca_btn" data-text="{{ 'Finition Transparent' | trans({}, "productTranslate") }}" id="finition{{ constant('App\\Entity\\CartDetail::FINITION_TRANSPARENT') }}" {% if  constant('App\\Entity\\CartDetail::FINITION_TRANSPARENT') == finition %}checked="checked"{% endif %} value="{{ constant('App\\Entity\\CartDetail::FINITION_TRANSPARENT') }}">
  269.                                                     <label for="finition{{ constant('App\\Entity\\CartDetail::FINITION_TRANSPARENT') }}" style="width: 100%" class="block taille ">
  270.                                                         <div class="row">
  271.                                                             <div class="col-12 pl-0" >
  272.                                                                 <span class="prixProductQtyUnite">{{ 'Finition Transparent' | trans({}, "productTranslate") }}</span>
  273.                                                             </div>
  274.                                                         </div>
  275.                                                     </label>
  276.                                                 </div>
  277.                                             {% endif %}
  278.                                             {% if isFinitionRepositionalble  %}
  279.                                                 <div class="taille tailleSelect col-lg-12 pr-0  pl-0">
  280.                                                     <input type="radio" name="finition" class="select_ca_btn" data-text="{{ 'Finition Repositionnable' | trans({}, "productTranslate") }}" id="finition{{ constant('App\\Entity\\CartDetail::FINITION_REPOSITIONALBLE') }}" {% if  constant('App\\Entity\\CartDetail::FINITION_REPOSITIONALBLE') == finition %}checked="checked"{% endif %} value="{{ constant('App\\Entity\\CartDetail::FINITION_REPOSITIONALBLE') }}">
  281.                                                     <label for="finition{{ constant('App\\Entity\\CartDetail::FINITION_REPOSITIONALBLE') }}" style="width: 100%" class="block taille ">
  282.                                                         <div class="row">
  283.                                                             <div class="col-12 pl-0" >
  284.                                                                 <span class="prixProductQtyUnite">{{ 'Finition Repositionnable' | trans({}, "productTranslate") }}</span>
  285.                                                             </div>
  286.                                                         </div>
  287.                                                     </label>
  288.                                                 </div>
  289.                                             {% endif %}
  290.                                             {% if isFinitionSoftTouch  %}
  291.                                                 <div class="taille tailleSelect col-lg-12 pr-0  pl-0">
  292.                                                     <input type="radio" name="finition" class="select_ca_btn" data-text="{{ 'Finition Soft Touch' | trans({}, "productTranslate") }}" id="finition{{ constant('App\\Entity\\CartDetail::FINITION_SoftTouch') }}" {% if  constant('App\\Entity\\CartDetail::FINITION_SoftTouch') == finition %}checked="checked"{% endif %} value="{{ constant('App\\Entity\\CartDetail::FINITION_SoftTouch') }}">
  293.                                                     <label for="finition{{ constant('App\\Entity\\CartDetail::FINITION_SoftTouch') }}" style="width: 100%" class="block taille ">
  294.                                                         <div class="row">
  295.                                                             <div class="col-12 pl-0" >
  296.                                                                 <span class="prixProductQtyUnite">{{ 'Finition Soft Touch' | trans({}, "productTranslate") }}</span>
  297.                                                             </div>
  298.                                                         </div>
  299.                                                     </label>
  300.                                                 </div>
  301.                                             {% endif %}
  302.                                             {% if isFinitionPelliculemat  %}
  303.                                                 <div class="taille tailleSelect col-lg-12 pr-0  pl-0">
  304.                                                     <input type="radio" name="finition" class="select_ca_btn" data-text="{{ 'Finition Pelliculé mat' | trans({}, "productTranslate") }}" id="finition{{ constant('App\\Entity\\CartDetail::FINITION_Pelliculemat') }}" {% if  constant('App\\Entity\\CartDetail::FINITION_Pelliculemat') == finition %}checked="checked"{% endif %} value="{{ constant('App\\Entity\\CartDetail::FINITION_Pelliculemat') }}">
  305.                                                     <label for="finition{{ constant('App\\Entity\\CartDetail::FINITION_Pelliculemat') }}" style="width: 100%" class="block taille ">
  306.                                                         <div class="row">
  307.                                                             <div class="col-12 pl-0" >
  308.                                                                 <span class="prixProductQtyUnite">{{ 'Finition Pelliculé mat' | trans({}, "productTranslate") }}</span>
  309.                                                             </div>
  310.                                                         </div>
  311.                                                     </label>
  312.                                                 </div>
  313.                                             {% endif %}
  314.                                             {% if isFinitionPelliculeBrillant  %}
  315.                                                 <div class="taille tailleSelect col-lg-12 pr-0  pl-0">
  316.                                                     <input type="radio" name="finition" class="select_ca_btn" data-text="{{ 'Finition Pelliculé Brillant' | trans({}, "productTranslate") }}" id="finition{{ constant('App\\Entity\\CartDetail::FINITION_PelliculeBrillant') }}" {% if  constant('App\\Entity\\CartDetail::FINITION_PelliculeBrillant') == finition %}checked="checked"{% endif %} value="{{ constant('App\\Entity\\CartDetail::FINITION_PelliculeBrillant') }}">
  317.                                                     <label for="finition{{ constant('App\\Entity\\CartDetail::FINITION_PelliculeBrillant') }}" style="width: 100%" class="block taille ">
  318.                                                         <div class="row">
  319.                                                             <div class="col-12 pl-0" >
  320.                                                                 <span class="prixProductQtyUnite">{{ 'Finition Pelliculé Brillant' | trans({}, "productTranslate") }}</span>
  321.                                                             </div>
  322.                                                         </div>
  323.                                                     </label>
  324.                                                 </div>
  325.                                             {% endif %}
  326.                                         </div>
  327.                                     </div>
  328.                                 </div>
  329.                             </div>
  330.                         </div>
  331.                     </div>
  332.                 </div>
  333.                 {% if format is defined and format.isPlastification %}
  334.                     <div class="bx_select row_select_ca boxOptionBlocNewMobile" >
  335.                         <h2 class="boxOptionBlocNewMobileLabel">
  336.                             {{ 'Plastification' | trans({}, "productTranslate") }}
  337.                         </h2>
  338.                         <div class="d-flex">
  339.                             <div class="f_family">
  340.                                 <a aria-controls="selectOption5" aria-expanded="false" role="button" href="#selectOption5" data-toggle="collapse" class="btn btn-primary collapsed">
  341.                                     <span style="" id="">
  342.                                         {% if constant('App\\Entity\\CartDetail::PLASTIFICATION_NOT_CHECKED') == plastification %}{{ 'Sans' | trans({}, "productTranslate") }}{% endif %}
  343.                                         {% if constant('App\\Entity\\CartDetail::PLASTIFICATION_CHECKED') == plastification %}{{ 'Avec' | trans({}, "productTranslate") }}{% endif %}
  344.                                    </span>
  345.                                 </a>
  346.                                 <div class="collapse selectOptionInput" id="selectOption5" style="">
  347.                                     <div class="row_select_ca02 row p-0">
  348.                                         <div class="col-12 p-0">
  349.                                             <div class=" bx_global_radio taille_full" style="max-width: 100%;">
  350.                                                 <div class="taille tailleSelect col-lg-12 pr-0  pl-0">
  351.                                                     <input type="radio" name="plastification" class="select_ca_btn" data-text="{{ 'Sans' | trans({}, "productTranslate") }}" id="plastification{{ constant('App\\Entity\\CartDetail::PLASTIFICATION_NOT_CHECKED') }}"  {% if constant('App\\Entity\\CartDetail::PLASTIFICATION_NOT_CHECKED') == plastification %}checked="checked"{% endif %} value="{{ constant('App\\Entity\\CartDetail::PLASTIFICATION_NOT_CHECKED') }}">
  352.                                                     <label for="plastification{{ constant('App\\Entity\\CartDetail::PLASTIFICATION_NOT_CHECKED') }}" style="width: 100%" class="block taille ">
  353.                                                         <div class="row">
  354.                                                             <div class="col-12 pl-0" >
  355.                                                                  <span class="prixProductQtyUnite">{{ 'Sans' | trans({}, "productTranslate") }}</span>
  356.                                                             </div>
  357.                                                         </div>
  358.                                                     </label>
  359.                                                 </div>
  360.                                                 <div class="taille tailleSelect col-lg-12 pr-0  pl-0">
  361.                                                     <input type="radio" name="plastification" class="select_ca_btn" data-text="{{ 'Avec' | trans({}, "productTranslate") }}" id="plastification{{ constant('App\\Entity\\CartDetail::PLASTIFICATION_CHECKED') }}"  {% if constant('App\\Entity\\CartDetail::PLASTIFICATION_CHECKED') == plastification %}checked="checked"{% endif %} value="{{ constant('App\\Entity\\CartDetail::PLASTIFICATION_CHECKED') }}">
  362.                                                     <label for="plastification{{ constant('App\\Entity\\CartDetail::PLASTIFICATION_CHECKED') }}" style="width: 100%" class="block taille ">
  363.                                                         <div class="row">
  364.                                                             <div class="col-12 pl-0" >
  365.                                                                 <span class="prixProductQtyUnite">{{ 'Avec' | trans({}, "productTranslate") }}</span>
  366.                                                             </div>
  367.                                                         </div>
  368.                                                     </label>
  369.                                                 </div>
  370.                                             </div>
  371.                                         </div>
  372.                                     </div>
  373.                                 </div>
  374.                             </div>
  375.                         </div>
  376.                     </div>
  377.                 {% endif %}
  378.                 <div class="bx_select row_select_ca boxOptionBlocNewMobile" >
  379.                     <h2 class="boxOptionBlocNewMobileLabel">
  380.                         {{ 'Vérification' | trans({}, "productTranslate") }}
  381.                     </h2>
  382.                     <div class="d-flex">
  383.                         <div class="f_family">
  384.                             <a aria-controls="selectOption6" aria-expanded="false" role="button" href="#selectOption6" data-toggle="collapse" class="btn btn-primary collapsed">
  385.                                     <span style="" id="">
  386.                                         {% if constant('App\\Entity\\CartDetail::VERIFICATION_NOT_CHECKED') == verification %}{{ 'Sans' | trans({}, "productTranslate") }}{% endif %}
  387.                                         {% if constant('App\\Entity\\CartDetail::PLASTIFICATION_CHECKED') == verification %}{{ 'Avec' | trans({}, "productTranslate") }} (+3,99€ HT){% endif %}
  388.                                    </span>
  389.                             </a>
  390.                             <div class="collapse selectOptionInput" id="selectOption6" style="">
  391.                                 <div class="row_select_ca02 row p-0">
  392.                                     <div class="col-12 p-0">
  393.                                         <div class=" bx_global_radio taille_full" style="max-width: 100%;">
  394.                                             <div class="taille tailleSelect col-lg-12 pr-0  pl-0">
  395.                                                 <input type="radio" name="verification" class="select_ca_btn" data-text="{{ 'Sans' | trans({}, "productTranslate") }}" id="verification{{ constant('App\\Entity\\CartDetail::VERIFICATION_NOT_CHECKED') }}"  {% if constant('App\\Entity\\CartDetail::VERIFICATION_NOT_CHECKED') == verification %}checked="checked"{% endif %} value="{{ constant('App\\Entity\\CartDetail::VERIFICATION_NOT_CHECKED') }}">
  396.                                                 <label for="verification{{ constant('App\\Entity\\CartDetail::VERIFICATION_NOT_CHECKED') }}" style="width: 100%" class="block taille ">
  397.                                                     <div class="row">
  398.                                                         <div class="col-12 pl-0" >
  399.                                                             <span class="prixProductQtyUnite">{{ 'Sans' | trans({}, "productTranslate") }}</span>
  400.                                                         </div>
  401.                                                     </div>
  402.                                                 </label>
  403.                                             </div>
  404.                                             <div class="taille tailleSelect col-lg-12 pr-0  pl-0">
  405.                                                 <input type="radio" name="verification" class="select_ca_btn" data-text="{{ 'Avec' | trans({}, "productTranslate") }}" id="verification{{ constant('App\\Entity\\CartDetail::VERIFICATION_CHECKED') }}"  {% if constant('App\\Entity\\CartDetail::VERIFICATION_CHECKED') == verification %}checked="checked"{% endif %} value="{{ constant('App\\Entity\\CartDetail::VERIFICATION_CHECKED') }}">
  406.                                                 <label for="verification{{ constant('App\\Entity\\CartDetail::VERIFICATION_CHECKED') }}" style="width: 100%" class="block taille ">
  407.                                                     <div class="row">
  408.                                                         <div class="col-12 pl-0" >
  409.                                                             <span class="prixProductQtyUnite">{{ 'Avec' | trans({}, "productTranslate") }} (+3,99€ HT)</span>
  410.                                                         </div>
  411.                                                     </div>
  412.                                                 </label>
  413.                                             </div>
  414.                                         </div>
  415.                                     </div>
  416.                                 </div>
  417.                             </div>
  418.                         </div>
  419.                     </div>
  420.                 </div>
  421.             </div>
  422.         {% endif %}
  423.     {% endif %}
  424. {% endif %}