Merge branch 'hotfixes/hotfix-activate-fec' into staging
This commit is contained in:
commit
b9648105ff
@ -1112,7 +1112,7 @@ class PageController extends Controller {
|
|||||||
public function getFactures() {
|
public function getFactures() {
|
||||||
//$this->synchronize_facture();
|
//$this->synchronize_facture();
|
||||||
$result = $this->myDb->getFactures($this->idNextcloud);
|
$result = $this->myDb->getFactures($this->idNextcloud);
|
||||||
// $this->refreshFEC();
|
$this->refreshFEC();
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1122,7 +1122,7 @@ class PageController extends Controller {
|
|||||||
*/
|
*/
|
||||||
public function getFacturesWithProduits() {
|
public function getFacturesWithProduits() {
|
||||||
$result = $this->myDb->getFacturesWithProduits($this->idNextcloud);
|
$result = $this->myDb->getFacturesWithProduits($this->idNextcloud);
|
||||||
// $this->refreshFEC();
|
$this->refreshFEC();
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1376,7 +1376,7 @@ class PageController extends Controller {
|
|||||||
*/
|
*/
|
||||||
public function insertFacture(){
|
public function insertFacture(){
|
||||||
$result = $this->myDb->insertFacture($this->idNextcloud);
|
$result = $this->myDb->insertFacture($this->idNextcloud);
|
||||||
// $this->refreshFEC();
|
$this->refreshFEC();
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1488,7 +1488,7 @@ class PageController extends Controller {
|
|||||||
// $this->generer_document_comptable($facturecourant->date_paiement);
|
// $this->generer_document_comptable($facturecourant->date_paiement);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// $this->refreshFEC();
|
$this->refreshFEC();
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
return $this->myDb->gestion_update($table, $column, $data, $id, $this->idNextcloud);
|
return $this->myDb->gestion_update($table, $column, $data, $id, $this->idNextcloud);
|
||||||
@ -1503,7 +1503,7 @@ class PageController extends Controller {
|
|||||||
public function exportDevisToFacture($devisToFacture,$paymentDate) {
|
public function exportDevisToFacture($devisToFacture,$paymentDate) {
|
||||||
$factureIdsGenerated = $this->myDb->insertFactureForeEachDevisId($this->idNextcloud,$devisToFacture,$paymentDate);
|
$factureIdsGenerated = $this->myDb->insertFactureForeEachDevisId($this->idNextcloud,$devisToFacture,$paymentDate);
|
||||||
$this->invoicePdfService->generateFacturePdfByFactureIds($factureIdsGenerated,$this->idNextcloud);
|
$this->invoicePdfService->generateFacturePdfByFactureIds($factureIdsGenerated,$this->idNextcloud);
|
||||||
// $this->refreshFEC();
|
$this->refreshFEC();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1522,7 +1522,7 @@ class PageController extends Controller {
|
|||||||
} else {
|
} else {
|
||||||
$result = $this->myDb->gestion_delete($table, $id, $this->idNextcloud);
|
$result = $this->myDb->gestion_delete($table, $id, $this->idNextcloud);
|
||||||
}
|
}
|
||||||
// $this->refreshFEC();
|
$this->refreshFEC();
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
return $this->myDb->gestion_delete($table, $id, $this->idNextcloud);
|
return $this->myDb->gestion_delete($table, $id, $this->idNextcloud);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user