Commit 59915aa2 by Angel MAS

calcula impuestos

parent ef060a8c
...@@ -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;
}
} }
...@@ -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->getConceptos()) { if (!$this->getData()) {
return $this->setConceptos(array($concepto)); return $this->setConceptos(array($concepto));
} else { } else {
return $this->setConceptos( return $this->setConceptos(
array_merge($this->getConceptos(), array($concepto)) array_merge($this->getData(), array($concepto))
); );
} }
} }
......
...@@ -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;
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment