Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
onestartup-factura-digital
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Angel Martin
onestartup-factura-digital
Commits
59915aa2
Commit
59915aa2
authored
Jun 27, 2018
by
Angel MAS
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
calcula impuestos
parent
ef060a8c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
96 additions
and
23 deletions
+96
-23
Factura.php
src/libs/Factura.php
+0
-0
FacturaConcepto.php
src/libs/FacturaConcepto.php
+62
-17
FacturaConceptoLista.php
src/libs/FacturaConceptoLista.php
+24
-2
FacturaImpuesto.php
src/libs/FacturaImpuesto.php
+10
-4
No files found.
src/libs/Factura.php
View file @
59915aa2
This diff is collapsed.
Click to expand it.
src/libs/FacturaConcepto.php
View file @
59915aa2
...
@@ -14,13 +14,14 @@ class FacturaConcepto
...
@@ -14,13 +14,14 @@ class FacturaConcepto
private
$ValorUnitario
;
private
$ValorUnitario
;
private
$Importe
;
private
$Importe
;
private
$Descuento
;
private
$Descuento
;
private
$Impuesto
;
private
$Impuesto
=
'002'
;
private
$ImpuestoBase
;
private
$ImpuestoBase
;
private
$ImpuestoTipoFactor
;
private
$ImpuestoTipoFactor
=
'Tasa'
;
private
$ImpuestoTasaOCuota
;
private
$ImpuestoTasaOCuota
=
'0.160000'
;
private
$ImpuestoImporte
;
private
$ImpuestoImporte
;
private
$data
;
private
$data
;
private
$traslado
;
private
$traslado
;
private
$CalculoManual
=
false
;
/**
/**
* @return mixed
* @return mixed
...
@@ -78,7 +79,7 @@ class FacturaConcepto
...
@@ -78,7 +79,7 @@ class FacturaConcepto
public
function
setCantidad
(
$Cantidad
)
public
function
setCantidad
(
$Cantidad
)
{
{
$this
->
Cantidad
=
$Cantidad
;
$this
->
Cantidad
=
$Cantidad
;
$this
->
data
[
'Cantidad'
]
=
$Cantidad
;
$this
->
data
[
'Cantidad'
]
=
number_format
(
$Cantidad
,
0
,
'.'
,
''
)
;
return
$this
;
return
$this
;
}
}
...
@@ -158,7 +159,21 @@ class FacturaConcepto
...
@@ -158,7 +159,21 @@ class FacturaConcepto
public
function
setValorUnitario
(
$ValorUnitario
)
public
function
setValorUnitario
(
$ValorUnitario
)
{
{
$this
->
ValorUnitario
=
$ValorUnitario
;
$this
->
ValorUnitario
=
$ValorUnitario
;
$this
->
data
[
'ValorUnitario'
]
=
$ValorUnitario
;
$valor_final
=
$this
->
getCalculoManual
()
?
$this
->
ValorUnitario
:
$this
->
precioSinIva
(
$ValorUnitario
);
if
(
!
$this
->
getCalculoManual
())
{
$importe
=
$valor_final
*
$this
->
getCantidad
();
$this
->
setImpuesto
(
'002'
);
$this
->
setImpuestoTipoFactor
(
'Tasa'
);
$this
->
setImporte
(
$importe
);
$this
->
setImpuestoBase
(
$importe
);
$this
->
setImpuestoTasaOCuota
(
'0.160000'
);
$this
->
setImpuestoImporte
(
$importe
*
$this
->
getImpuestoTasaOCuota
());
}
$this
->
data
[
'ValorUnitario'
]
=
number_format
(
$valor_final
,
2
,
'.'
,
''
);
return
$this
;
return
$this
;
}
}
...
@@ -178,7 +193,7 @@ class FacturaConcepto
...
@@ -178,7 +193,7 @@ class FacturaConcepto
public
function
setImporte
(
$Importe
)
public
function
setImporte
(
$Importe
)
{
{
$this
->
Importe
=
$Importe
;
$this
->
Importe
=
$Importe
;
$this
->
data
[
'Importe'
]
=
$Importe
;
$this
->
data
[
'Importe'
]
=
number_format
(
$Importe
,
2
,
'.'
,
''
)
;
return
$this
;
return
$this
;
}
}
...
@@ -198,7 +213,7 @@ class FacturaConcepto
...
@@ -198,7 +213,7 @@ class FacturaConcepto
public
function
setDescuento
(
$Descuento
)
public
function
setDescuento
(
$Descuento
)
{
{
$this
->
Descuento
=
$Descuento
;
$this
->
Descuento
=
$Descuento
;
$this
->
data
[
'Descuento'
]
=
$Descuento
;
$this
->
data
[
'Descuento'
]
=
number_format
(
$Descuento
,
2
,
'.'
,
''
)
;
return
$this
;
return
$this
;
}
}
...
@@ -218,7 +233,7 @@ class FacturaConcepto
...
@@ -218,7 +233,7 @@ class FacturaConcepto
public
function
setImpuestoBase
(
$Base
)
public
function
setImpuestoBase
(
$Base
)
{
{
$this
->
Base
=
$Base
;
$this
->
Base
=
$Base
;
$this
->
traslado
[
'Base'
]
=
$Base
;
$this
->
traslado
[
'Base'
]
=
number_format
(
$Base
,
2
,
'.'
,
''
)
;
return
$this
;
return
$this
;
}
}
...
@@ -278,15 +293,15 @@ class FacturaConcepto
...
@@ -278,15 +293,15 @@ class FacturaConcepto
public
function
setImpuestoTasaOCuota
(
$TasaOCuota
)
public
function
setImpuestoTasaOCuota
(
$TasaOCuota
)
{
{
$this
->
TasaOCuota
=
$TasaOCuota
;
$this
->
TasaOCuota
=
$TasaOCuota
;
$this
->
traslado
[
'TasaOCuota'
]
=
$TasaOCuota
;
$this
->
traslado
[
'TasaOCuota'
]
=
number_format
(
$TasaOCuota
,
6
,
'.'
,
''
)
;
return
$this
;
return
$this
;
}
}
/**
/**
* @return mixed
* @return mixed
*/
*/
public
function
getImpuestoImporte
()
public
function
getImpuestoImporte
()
{
{
return
$this
->
TasaOCuota
;
return
$this
->
TasaOCuota
;
}
}
...
@@ -298,7 +313,7 @@ class FacturaConcepto
...
@@ -298,7 +313,7 @@ class FacturaConcepto
public
function
setImpuestoImporte
(
$Importe
)
public
function
setImpuestoImporte
(
$Importe
)
{
{
$this
->
Importe
=
$Importe
;
$this
->
Importe
=
$Importe
;
$this
->
traslado
[
'Importe'
]
=
$Importe
;
$this
->
traslado
[
'Importe'
]
=
number_format
(
$Importe
,
2
,
'.'
,
''
)
;
return
$this
;
return
$this
;
}
}
...
@@ -309,11 +324,41 @@ class FacturaConcepto
...
@@ -309,11 +324,41 @@ class FacturaConcepto
public
function
getData
()
public
function
getData
()
{
{
return
array_merge
(
$this
->
data
,
[
return
array_merge
(
$this
->
data
,
[
'Impuestos'
=>
[
'Impuestos'
=>
[
'Traslados'
=>
[
$this
->
traslado
]
'Traslados'
=>
[
$this
->
traslado
]
]
]
]);
]);
}
}
/**
* @return mixed
*/
public
function
getCalculoManual
()
{
return
$this
->
CalculoManual
;
}
/**
* @param boolean $CalculoManual
*
* @return self
*/
public
function
setCalculoManual
(
$CalculoManual
)
{
$this
->
CalculoManual
=
$CalculoManual
;
return
$this
;
}
public
function
precioSinIva
(
$precioConIva
)
{
$data
=
[];
$precioSin
=
$precioConIva
/
1.16
;
return
$precioSin
;
}
}
}
src/libs/FacturaConceptoLista.php
View file @
59915aa2
...
@@ -19,6 +19,28 @@ class FacturaConceptoLista
...
@@ -19,6 +19,28 @@ class FacturaConceptoLista
return
$this
;
return
$this
;
}
}
public
function
getTotalImpuestos
()
{
$total
=
0
;
foreach
(
$this
->
conceptos
as
$concepto
)
{
$total
=
$total
+
$concepto
[
'Impuestos'
][
'Traslados'
][
0
][
'Importe'
];
}
return
$total
;
}
public
function
getTotalConceptos
()
{
$total
=
0
;
foreach
(
$this
->
conceptos
as
$concepto
)
{
$total
=
$total
+
$concepto
[
'Importe'
];
}
return
$total
;
}
/**
/**
* List of items.
* List of items.
*
*
...
@@ -37,11 +59,11 @@ class FacturaConceptoLista
...
@@ -37,11 +59,11 @@ class FacturaConceptoLista
*/
*/
public
function
addConcepto
(
$concepto
)
public
function
addConcepto
(
$concepto
)
{
{
if
(
!
$this
->
get
Conceptos
())
{
if
(
!
$this
->
get
Data
())
{
return
$this
->
setConceptos
(
array
(
$concepto
));
return
$this
->
setConceptos
(
array
(
$concepto
));
}
else
{
}
else
{
return
$this
->
setConceptos
(
return
$this
->
setConceptos
(
array_merge
(
$this
->
get
Conceptos
(),
array
(
$concepto
))
array_merge
(
$this
->
get
Data
(),
array
(
$concepto
))
);
);
}
}
}
}
...
...
src/libs/FacturaImpuesto.php
View file @
59915aa2
...
@@ -13,8 +13,14 @@ class FacturaImpuesto
...
@@ -13,8 +13,14 @@ class FacturaImpuesto
private
$data
;
private
$data
;
private
$traslado
;
private
$traslado
;
public
function
getData
()
public
function
getData
(
$impuestos
)
{
{
$this
->
setTotalImpuestosTrasladados
(
$impuestos
);
$this
->
setImpuesto
(
'002'
);
$this
->
setTipoFactor
(
'Tasa'
);
$this
->
setTasaOCuota
(
'0.16000'
);
$this
->
setImporte
(
$impuestos
);
return
array_merge
(
$this
->
data
,
[
'Traslados'
=>
[
$this
->
traslado
]]);
return
array_merge
(
$this
->
data
,
[
'Traslados'
=>
[
$this
->
traslado
]]);
}
}
...
@@ -34,7 +40,7 @@ class FacturaImpuesto
...
@@ -34,7 +40,7 @@ class FacturaImpuesto
public
function
setTotalImpuestosTrasladados
(
$TotalImpuestosTrasladados
)
public
function
setTotalImpuestosTrasladados
(
$TotalImpuestosTrasladados
)
{
{
$this
->
TotalImpuestosTrasladados
=
$TotalImpuestosTrasladados
;
$this
->
TotalImpuestosTrasladados
=
$TotalImpuestosTrasladados
;
$this
->
data
[
'TotalImpuestosTrasladados'
]
=
$TotalImpuestosTrasladados
;
$this
->
data
[
'TotalImpuestosTrasladados'
]
=
number_format
(
$TotalImpuestosTrasladados
,
2
,
'.'
,
''
)
;
return
$this
;
return
$this
;
}
}
...
@@ -94,7 +100,7 @@ class FacturaImpuesto
...
@@ -94,7 +100,7 @@ class FacturaImpuesto
public
function
setTasaOCuota
(
$TasaOCuota
)
public
function
setTasaOCuota
(
$TasaOCuota
)
{
{
$this
->
TasaOCuota
=
$TasaOCuota
;
$this
->
TasaOCuota
=
$TasaOCuota
;
$this
->
traslado
[
'TasaOCuota'
]
=
$TasaOCuota
;
$this
->
traslado
[
'TasaOCuota'
]
=
number_format
(
$TasaOCuota
,
6
,
'.'
,
''
)
;
return
$this
;
return
$this
;
}
}
...
@@ -114,7 +120,7 @@ class FacturaImpuesto
...
@@ -114,7 +120,7 @@ class FacturaImpuesto
public
function
setImporte
(
$Importe
)
public
function
setImporte
(
$Importe
)
{
{
$this
->
Importe
=
$Importe
;
$this
->
Importe
=
$Importe
;
$this
->
traslado
[
'Importe'
]
=
$Importe
;
$this
->
traslado
[
'Importe'
]
=
number_format
(
$Importe
,
2
,
'.'
,
''
)
;
return
$this
;
return
$this
;
}
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment