Commit 83564aef authored by Hamza Arfaoui's avatar Hamza Arfaoui

CAF199

parent 2784c3f7
...@@ -1455,7 +1455,8 @@ app.controller("CaisseController", ['$http', '$scope', '$controller', '$timeout' ...@@ -1455,7 +1455,8 @@ app.controller("CaisseController", ['$http', '$scope', '$controller', '$timeout'
case "choice-page": case "choice-page":
var nom = $scope.currentLang == 'ar' ? that.params.nom_ar : that.params.nom; var nom = $scope.currentLang == 'ar' ? that.params.nom_ar : that.params.nom;
var lastname = $scope.client.lastname ? $scope.client.lastname.toLowerCase() : ""; var lastname = $scope.client.lastname ? $scope.client.lastname.toLowerCase() : "";
var client = $scope.client.civilite+" "+lastname.charAt(0).toUpperCase() + lastname.slice(1); var firstname = $scope.client.firstname ? $scope.client.firstname.toLowerCase() : "";
var client = $scope.client.civilite+" "+ firstname.charAt(0).toUpperCase() + firstname.slice(1) +" "+lastname.charAt(0).toUpperCase() + lastname.slice(1);
that.title = that.config.titles.WELCOME.replace("[AGENCY]", nom).replace("[CLIENT]", client); that.title = that.config.titles.WELCOME.replace("[AGENCY]", nom).replace("[CLIENT]", client);
if (!$scope.borne.CLIENT_TYPE && (!$scope.backoffice.AGENCE.TYPES || !$scope.backoffice.AGENCE.TYPES[$scope.params.type]["CLIENT_SCREEN"]) && !$scope.borne.KEYBOARD_FIRST) if (!$scope.borne.CLIENT_TYPE && (!$scope.backoffice.AGENCE.TYPES || !$scope.backoffice.AGENCE.TYPES[$scope.params.type]["CLIENT_SCREEN"]) && !$scope.borne.KEYBOARD_FIRST)
$scope.previousScreenStack = ["choice-page"]; $scope.previousScreenStack = ["choice-page"];
......
...@@ -58,7 +58,7 @@ msgid "SRDV" ...@@ -58,7 +58,7 @@ msgid "SRDV"
msgstr "Sélectionnez l'objet de votre visite" msgstr "Sélectionnez l'objet de votre visite"
msgid "KEYBOARD" msgid "KEYBOARD"
msgstr "Indiquez votre Civilité, Nom et prénom" msgstr "Indiquez votre Civilité, Nom, Prénom|et Matricule"
msgid "KEYBOARD_SPACE" msgid "KEYBOARD_SPACE"
msgstr "Espace" msgstr "Espace"
...@@ -85,7 +85,7 @@ msgid "CIV_ERROR" ...@@ -85,7 +85,7 @@ msgid "CIV_ERROR"
msgstr "Veuillez sélectionner|votre civilité" msgstr "Veuillez sélectionner|votre civilité"
msgid "NAME_ERROR" msgid "NAME_ERROR"
msgstr "Veuillez saisir votre|noms, prénom|et matricule" msgstr "Veuillez saisir votre|nom, prénom|et matricule"
msgid "NFC_ERROR" msgid "NFC_ERROR"
msgstr "Désolé, vous n'avez pas été identifié(e)" msgstr "Désolé, vous n'avez pas été identifié(e)"
......
...@@ -120,7 +120,7 @@ $BORNE_CONF["ORIENTATIONS"]["DEFAULT_MESSAGES"]["EVENT"] = "Bienvenue, veuillez ...@@ -120,7 +120,7 @@ $BORNE_CONF["ORIENTATIONS"]["DEFAULT_MESSAGES"]["EVENT"] = "Bienvenue, veuillez
$BORNE_CONF["ORIENTATIONS"]["DEFAULT_MESSAGES"]["SHIP"] = "Bienvenue, votre arrivée est annoncée, veuillez patienter dans la file d'attente."; $BORNE_CONF["ORIENTATIONS"]["DEFAULT_MESSAGES"]["SHIP"] = "Bienvenue, votre arrivée est annoncée, veuillez patienter dans la file d'attente.";
$BORNE_CONF["ORIENTATIONS"]["CLIENT"]["prenom"] = false; $BORNE_CONF["ORIENTATIONS"]["CLIENT"]["prenom"] = true;
$BORNE_CONF["ORIENTATIONS"]["AGENT"]["prenom"] = false; $BORNE_CONF["ORIENTATIONS"]["AGENT"]["prenom"] = false;
$BORNE_CONF["ORIENTATIONS"]["CLIENT"]["FIRST_CAPITALIZE"] = true; $BORNE_CONF["ORIENTATIONS"]["CLIENT"]["FIRST_CAPITALIZE"] = true;
$BORNE_CONF["ORIENTATIONS"]["AGENT"]["FIRST_CAPITALIZE"] = true; $BORNE_CONF["ORIENTATIONS"]["AGENT"]["FIRST_CAPITALIZE"] = true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment