2012-01-13 13:35:11 +00:00
|
|
|
<?php
|
|
|
|
class IndexController extends Zend_Controller_Action
|
|
|
|
{
|
|
|
|
|
|
|
|
public function indexAction()
|
|
|
|
{
|
2012-01-17 11:44:02 +00:00
|
|
|
//Liste des profils
|
|
|
|
$profilM = new Application_Model_Profil();
|
|
|
|
$sql = $profilM->select();
|
2012-01-19 15:25:47 +00:00
|
|
|
$this->view->assign('listProfil', $profilM->fetchAll($sql));
|
2012-01-13 13:35:11 +00:00
|
|
|
|
2012-01-17 11:44:02 +00:00
|
|
|
$commandesM = new Application_Model_Commandes($db);
|
2012-01-13 13:35:11 +00:00
|
|
|
|
2012-01-15 17:43:37 +00:00
|
|
|
//Liste des fichiers en attente de profil
|
|
|
|
$sql = $commandesM->select()->where('idProfil = ?', 0);
|
|
|
|
$this->view->assign('fileAttenteProfil', $commandesM->fetchAll($sql));
|
2012-01-13 13:35:11 +00:00
|
|
|
|
2012-01-15 17:43:37 +00:00
|
|
|
//Liste des enrichissements en cours
|
|
|
|
$sql = $commandesM->select()
|
|
|
|
->where('idProfil != ?', 0)
|
|
|
|
->where("dateStop = '0000-00-00 00:00:00'");
|
|
|
|
$this->view->assign('fileEnCours', $commandesM->fetchAll($sql));
|
|
|
|
|
|
|
|
//Liste des enrichissements terminé
|
|
|
|
$sql = $commandesM->select()
|
|
|
|
->where("dateStop != '0000-00-00 00:00:00'")
|
2012-01-30 15:39:24 +00:00
|
|
|
->where("error = ''");
|
2012-01-15 17:43:37 +00:00
|
|
|
$this->view->assign('fileFinish', $commandesM->fetchAll($sql));
|
2012-01-30 15:42:37 +00:00
|
|
|
|
|
|
|
|
2012-01-15 17:43:37 +00:00
|
|
|
}
|
2012-01-19 16:53:34 +00:00
|
|
|
|
|
|
|
public function getinfoAction()
|
|
|
|
{
|
|
|
|
$this->_helper->layout()->disableLayout();
|
|
|
|
$this->_helper->viewRenderer->setNoRender(true);
|
|
|
|
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$id = $request->getParam('id');
|
|
|
|
if (!empty($id)){
|
2012-01-30 15:18:55 +00:00
|
|
|
$commandesM = new Application_Model_Commandes();
|
|
|
|
$result = $commandesM->find($id);
|
2012-01-30 15:19:38 +00:00
|
|
|
$info = $result->current();
|
2012-01-30 15:18:55 +00:00
|
|
|
$output = array(
|
|
|
|
'nbLigneT' => $info->nbLigne,
|
|
|
|
);
|
|
|
|
echo json_encode($output);
|
2012-01-19 16:53:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-30 15:42:37 +00:00
|
|
|
public function getfileAction(){
|
|
|
|
$this->_helper->layout()->disableLayout();
|
|
|
|
$this->_helper->viewRenderer->setNoRender(true);
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$file = $request->getParam('file');
|
|
|
|
echo file_get_contents('/sites/dataenrichissement/export/'.file);
|
|
|
|
}
|
2012-01-13 13:35:11 +00:00
|
|
|
}
|