Merge
This commit is contained in:
commit
cd18a049e7
@ -75,6 +75,7 @@ class EnrichissementController extends Zend_Controller_Action
|
|||||||
$request = $this->getRequest();
|
$request = $this->getRequest();
|
||||||
$idCriteres = $request->getParam('id', null);
|
$idCriteres = $request->getParam('id', null);
|
||||||
$idProfil = $request->getParam('profil', null);
|
$idProfil = $request->getParam('profil', null);
|
||||||
|
$ref = $request->getParam('ref');
|
||||||
|
|
||||||
//Vérifier les profils du client
|
//Vérifier les profils du client
|
||||||
if ( $idProfil===null ){
|
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
|
//car si donnée insee alors toutes les lignes doivent être comptés en unité insee
|
||||||
$data = array(
|
$data = array(
|
||||||
'idComptage' => $idComptage,
|
'idComptage' => $idComptage,
|
||||||
'reference' => $this->getRequest()->getParam('ref'),
|
'reference' => $ref,
|
||||||
'idCriteres' => $criteres->id,
|
'idCriteres' => $criteres->id,
|
||||||
'idProfil' => $idProfil,
|
'idProfil' => $idProfil,
|
||||||
'identifiants' => json_encode($infosExtraction),
|
'identifiants' => json_encode($infosExtraction),
|
||||||
@ -136,6 +137,8 @@ class EnrichissementController extends Zend_Controller_Action
|
|||||||
);
|
);
|
||||||
$identifiantsM = new Application_Model_EnrichissementIdentifiants();
|
$identifiantsM = new Application_Model_EnrichissementIdentifiants();
|
||||||
$idIdentifiant = $identifiantsM->insert($data);
|
$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>
|
<script>
|
||||||
$('#dialog').dialog({ buttons: [ {
|
$('#dialog').dialog({ buttons: [ {
|
||||||
text: "Quitter",
|
text: "Fermer",
|
||||||
click: function() { $(this).dialog('close'); }
|
click: function() { $(this).dialog('close'); }
|
||||||
} ] });
|
} ] });
|
||||||
</script>
|
</script>
|
Loading…
Reference in New Issue
Block a user