Display ref for an order
This commit is contained in:
parent
e716181a4d
commit
ef51dd969e
@ -75,6 +75,7 @@ class EnrichissementController extends Zend_Controller_Action
|
||||
$request = $this->getRequest();
|
||||
$idCriteres = $request->getParam('id', null);
|
||||
$idProfil = $request->getParam('profil', null);
|
||||
$ref = $request->getParam('ref'),
|
||||
|
||||
//Vérifier les profils du client
|
||||
if ( $idProfil===null ){
|
||||
@ -122,7 +123,7 @@ class EnrichissementController extends Zend_Controller_Action
|
||||
//car si donnée insee alors toutes les lignes doivent être comptés en unité insee
|
||||
$data = array(
|
||||
'idComptage' => $idComptage,
|
||||
'reference' => $this->getRequest()->getParam('ref'),
|
||||
'reference' => $ref,
|
||||
'idCriteres' => $criteres->id,
|
||||
'idProfil' => $idProfil,
|
||||
'identifiants' => json_encode($infosExtraction),
|
||||
@ -136,6 +137,8 @@ class EnrichissementController extends Zend_Controller_Action
|
||||
);
|
||||
$identifiantsM = new Application_Model_EnrichissementIdentifiants();
|
||||
$idIdentifiant = $identifiantsM->insert($data);
|
||||
|
||||
$this->view->assign('ref', $ref);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1,9 +1,8 @@
|
||||
Votre commande a bien été prise en compte sous la référence
|
||||
|
||||
Votre commande a bien été prise en compte sous la référence <?=$this->ref?>
|
||||
|
||||
<script>
|
||||
$('#dialog').dialog({ buttons: [ {
|
||||
text: "Quitter",
|
||||
text: "Fermer",
|
||||
click: function() { $(this).dialog('close'); }
|
||||
} ] });
|
||||
</script>
|
Loading…
Reference in New Issue
Block a user