|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/* |
|
4
|
|
|
* Copyright (C) 2019 joenilson. |
|
5
|
|
|
* |
|
6
|
|
|
* This library is free software; you can redistribute it and/or |
|
7
|
|
|
* modify it under the terms of the GNU Lesser General Public |
|
8
|
|
|
* License as published by the Free Software Foundation; either |
|
9
|
|
|
* version 3 of the License, or (at your option) any later version. |
|
10
|
|
|
* |
|
11
|
|
|
* This library is distributed in the hope that it will be useful, |
|
12
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
13
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
14
|
|
|
* Lesser General Public License for more details. |
|
15
|
|
|
* |
|
16
|
|
|
* You should have received a copy of the GNU Lesser General Public |
|
17
|
|
|
* License along with this library; if not, write to the Free Software |
|
18
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, |
|
19
|
|
|
* MA 02110-1301 USA |
|
20
|
|
|
*/ |
|
21
|
|
|
|
|
22
|
|
|
namespace FacturaScripts\Plugins\fsRepublicaDominicana\Controller; |
|
23
|
|
|
|
|
24
|
|
|
use FacturaScripts\Core\Base\DataBase\DataBaseWhere; |
|
|
|
|
|
|
25
|
|
|
use FacturaScripts\Core\Lib\ExtendedController\EditController; |
|
26
|
|
|
use FacturaScripts\Core\Tools; |
|
27
|
|
|
|
|
28
|
|
|
use FacturaScripts\Plugins\fsRepublicaDominicana\Model\NCFTipoMovimiento; |
|
29
|
|
|
|
|
30
|
|
|
/** |
|
31
|
|
|
* Description of EditNCFTipoMovimiento |
|
32
|
|
|
* |
|
33
|
|
|
* @author joenilson |
|
34
|
|
|
*/ |
|
35
|
|
|
class EditNCFTipoMovimiento extends EditController |
|
36
|
|
|
{ |
|
37
|
|
|
public function getModelClassName(): string |
|
38
|
|
|
{ |
|
39
|
|
|
return 'NCFTipoMovimiento'; |
|
40
|
|
|
} |
|
41
|
|
|
|
|
42
|
|
|
public function getPageData(): array |
|
43
|
|
|
{ |
|
44
|
|
|
$pagedata = parent::getPageData(); |
|
45
|
|
|
$pagedata['menu'] = 'RepublicaDominicana'; |
|
46
|
|
|
$pagedata['title'] = 'edit-ncf-movement-type'; |
|
47
|
|
|
$pagedata['icon'] = 'fa-solid fa-tasks'; |
|
48
|
|
|
|
|
49
|
|
|
return $pagedata; |
|
50
|
|
|
} |
|
51
|
|
|
|
|
52
|
|
|
public function execAfterAction($action) |
|
53
|
|
|
{ |
|
54
|
|
|
switch ($action) { |
|
55
|
|
|
case 'busca_movimiento': |
|
56
|
|
|
$this->setTemplate(false); |
|
57
|
|
|
$tipomovimiento = new NCFTipoMovimiento(); |
|
58
|
|
|
$where = [new DatabaseWhere('tipomovimiento', $_REQUEST['tipomovimiento'])]; |
|
59
|
|
|
$movimientos = $tipomovimiento->all($where); |
|
60
|
|
|
if ($movimientos) { |
|
61
|
|
|
//header('Content-Type: application/json'); |
|
62
|
|
|
echo json_encode(['movimientos' => $movimientos], JSON_THROW_ON_ERROR); |
|
63
|
|
|
} else { |
|
64
|
|
|
echo ''; |
|
65
|
|
|
} |
|
66
|
|
|
break; |
|
67
|
|
|
default: |
|
68
|
|
|
break; |
|
69
|
|
|
} |
|
70
|
|
|
} |
|
71
|
|
|
|
|
72
|
|
|
} |
|
73
|
|
|
|
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths