19/01/23 - 20h
parent
4c5bc4b64d
commit
c5ff0db848
|
@ -1434,10 +1434,10 @@ const DisplayDetailClass_new_v2 = (props) => {
|
||||||
{parse(String(JSON.parse(formation).title))}
|
{parse(String(JSON.parse(formation).title))}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="mob_cross_sell_card_content_price">
|
{JSON.parse(formation).price && <div className="mob_cross_sell_card_content_price">
|
||||||
{(String(JSON.parse(formation).price))} €HT
|
{(String(JSON.parse(formation).price))} €HT
|
||||||
|
|
||||||
</div>
|
</div>}
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -1772,7 +1772,7 @@ const DisplayDetailClass_new_v2 = (props) => {
|
||||||
|
|
||||||
<div className="block_sticky_info">
|
<div className="block_sticky_info">
|
||||||
|
|
||||||
<div className="block_sticky_info_price"> {String(DetailTraining["price"])} HT </div>
|
{DetailTraining["price"] && <div className="block_sticky_info_price"> {String(DetailTraining["price"])} HT </div>}
|
||||||
{String(ismetiermanaged) !== "0" && String(ismetiermanaged) !== "1" && <div className="block_sticky_info_img">
|
{String(ismetiermanaged) !== "0" && String(ismetiermanaged) !== "1" && <div className="block_sticky_info_img">
|
||||||
|
|
||||||
{(!DetailTraining.img_url || String(DetailTraining.img_url).length <= 0) &&
|
{(!DetailTraining.img_url || String(DetailTraining.img_url).length <= 0) &&
|
||||||
|
@ -2087,9 +2087,9 @@ const DisplayDetailClass_new_v2 = (props) => {
|
||||||
<div className="sous_crossell_list_card_card_content_title"> {parse(String(JSON.parse(formation).title)).substring(0, 50)}
|
<div className="sous_crossell_list_card_card_content_title"> {parse(String(JSON.parse(formation).title)).substring(0, 50)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="sous_crossell_list_card_card_content_price">
|
{JSON.parse(formation).price && <div className="sous_crossell_list_card_card_content_price">
|
||||||
{(String(JSON.parse(formation).price))} €HT
|
{(String(JSON.parse(formation).price))} €HT
|
||||||
</div>
|
</div>}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -2375,7 +2375,11 @@ function GestionAdministrative(props) {
|
||||||
|
|
||||||
{(JSON.parse(session).date_debut).substring(0, 10)} au {(JSON.parse(session).date_fin).substring(0, 10)} -
|
{(JSON.parse(session).date_debut).substring(0, 10)} au {(JSON.parse(session).date_fin).substring(0, 10)} -
|
||||||
{(JSON.parse(session).distantiel) === "1" && " A Distance - "}
|
{(JSON.parse(session).distantiel) === "1" && " A Distance - "}
|
||||||
{(JSON.parse(session).presentiel) === "1" && " En Présentiel - " + (JSON.parse(session).adresse)} {(JSON.parse(session).code_postal)}
|
{(JSON.parse(session).presentiel) === "1" && (JSON.parse(session).adresse) && " En Présentiel - " + (JSON.parse(session).adresse)}
|
||||||
|
{(JSON.parse(session).presentiel) === "1" && (!JSON.parse(session).adresse) && " En Présentiel - " }
|
||||||
|
{(JSON.parse(session).code_postal) && " "+(JSON.parse(session).code_postal) }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</option>
|
</option>
|
||||||
|
|
|
@ -633,10 +633,12 @@ function Inscription_Information(props) {
|
||||||
|
|
||||||
<option value={JSON.parse(formation).formation_session_id}>
|
<option value={JSON.parse(formation).formation_session_id}>
|
||||||
|
|
||||||
{(JSON.parse(formation).date_debut).substring(0, 10)} au {(JSON.parse(formation).date_fin).substring(0, 10)} -
|
|
||||||
{(JSON.parse(formation).distantiel) === "1" && " A Distance - "}
|
|
||||||
{(JSON.parse(formation).presentiel) === "1" && " En Présentiel - " + (JSON.parse(formation).adresse) + " " + (JSON.parse(formation).code_postal)}
|
|
||||||
|
|
||||||
|
{(JSON.parse(formation).date_debut).substring(0, 10)} au {(JSON.parse(formation).date_fin).substring(0, 10)} -
|
||||||
|
{(JSON.parse(formation).distantiel) === "1" && " A Distance - "}
|
||||||
|
{(JSON.parse(formation).presentiel) === "1" && (JSON.parse(formation).adresse) && " En Présentiel - " + (JSON.parse(formation).adresse)}
|
||||||
|
{(JSON.parse(formation).presentiel) === "1" && (!JSON.parse(formation).adresse) && " En Présentiel - " }
|
||||||
|
{(JSON.parse(formation).code_postal) && " "+(JSON.parse(formation).code_postal) }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue