コード例 #1
0
ファイル: ApiLoader.php プロジェクト: kailIII/pos-erp
 protected function GenerateResponse()
 {
     try {
         $this->response = ProductosController::DetallesUnidadUdm(isset($_GET['id_unidad_medida']) ? $_GET['id_unidad_medida'] : null);
     } catch (Exception $e) {
         //Logger::error($e);
         throw new ApiException($this->error_dispatcher->invalidDatabaseOperation($e->getMessage()));
     }
 }
コード例 #2
0
ファイル: UnidadesUdmTest.php プロジェクト: kailIII/pos-erp
 public function testDetalles()
 {
     $resultado = ProductosController::DetallesUnidadUdm(1);
     $this->assertNotNull($resultado['unidad_medida']);
 }