Loading data/ddl/table/MISSION_TAUX_REMU.php +12 −0 Original line number Diff line number Diff line Loading @@ -117,6 +117,18 @@ return [ 'position' => 3, 'commentaire' => NULL, ], 'MISSION_TAUX_REMU_ID' => [ 'name' => 'MISSION_TAUX_REMU_ID', 'type' => 'int', 'bdd-type' => 'NUMBER', 'length' => 0, 'scale' => NULL, 'precision' => NULL, 'nullable' => TRUE, 'default' => NULL, 'position' => 10, 'commentaire' => NULL, ], ], ]; Loading module/Mission/src/Service/MissionTauxService.php +10 −0 Original line number Diff line number Diff line Loading @@ -54,6 +54,16 @@ class MissionTauxService extends AbstractEntityService return $query->getResult(); } public function getTauxRemusIndexable(): array { $dql = "SELECT mtr, mtrv FROM " . MissionTauxRemu::class . " mtr LEFT JOIN mtr.tauxRemuValeurs mtrv WHERE mtr.histoDestruction IS NULL AND mtr.missionTauxRemu IS NULL"; $query = $this->getEntityManager()->createQuery($dql); return $query->getResult(); } public function getTauxRemusValeur(mixed $tauxRemuValeurId) Loading Loading
data/ddl/table/MISSION_TAUX_REMU.php +12 −0 Original line number Diff line number Diff line Loading @@ -117,6 +117,18 @@ return [ 'position' => 3, 'commentaire' => NULL, ], 'MISSION_TAUX_REMU_ID' => [ 'name' => 'MISSION_TAUX_REMU_ID', 'type' => 'int', 'bdd-type' => 'NUMBER', 'length' => 0, 'scale' => NULL, 'precision' => NULL, 'nullable' => TRUE, 'default' => NULL, 'position' => 10, 'commentaire' => NULL, ], ], ]; Loading
module/Mission/src/Service/MissionTauxService.php +10 −0 Original line number Diff line number Diff line Loading @@ -54,6 +54,16 @@ class MissionTauxService extends AbstractEntityService return $query->getResult(); } public function getTauxRemusIndexable(): array { $dql = "SELECT mtr, mtrv FROM " . MissionTauxRemu::class . " mtr LEFT JOIN mtr.tauxRemuValeurs mtrv WHERE mtr.histoDestruction IS NULL AND mtr.missionTauxRemu IS NULL"; $query = $this->getEntityManager()->createQuery($dql); return $query->getResult(); } public function getTauxRemusValeur(mixed $tauxRemuValeurId) Loading