File tree 1 file changed +14
-1
lines changed
1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,12 @@ function puedeGravar(autoridad, impuesto) {
4
4
// Sí: 16 años después
5
5
if ( autoridad . esPoderEjecutivo ( ) && impuesto . esPorDNU ( ) ) {
6
6
7
- if ( cumpleCon755 ( autoridad , impuesto ) ) {
7
+ // Diciembre 2018 - Presupuesto 2019
8
+ if ( cumpleCon755 ( autoridad , impuesto ) &&
9
+ // 2016 - Fallo Camaronera Patagónica
10
+ cumpleConCamaronera ( autoridad , impuesto ) &&
11
+ esNuevo ( impuesto ) ) {
12
+
8
13
return comisionBicameral . autoriza ( impuesto ) ;
9
14
}
10
15
}
@@ -13,6 +18,14 @@ function puedeGravar(autoridad, impuesto) {
13
18
return autoridad . esPoderLegislativo ( ) ;
14
19
}
15
20
21
+ function cumpleConCamaronera ( autoridad , impuesto ) {
22
+ return impuesto . tieneLimites ( ) && autoridad . tienePautas ( impuesto ) ;
23
+ }
24
+
25
+ function esNuevo ( impuesto ) {
26
+ return ! impuesto . objeto . existeGravamen ( ) ;
27
+ }
28
+
16
29
function cumpleCon755 ( autoridad , impuesto ) {
17
30
// Código Aduanero 1981 - Art. 755 (Decreto Ley)
18
31
if ( autoridad . esPoderEjecutivo ( ) && impuesto . esAduanero ( ) ) {
You can’t perform that action at this time.
0 commit comments