Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/AfipSDK/afip.php
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanalemunioz committed Jun 15, 2022
2 parents 851c9d6 + 968beda commit 1d99115
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
* [Padrón alcance 5](#padr%C3%B3n-alcance-5)
* [Padrón alcance 10](#padr%C3%B3n-alcance-10)
* [Padrón alcance 13](#padr%C3%B3n-alcance-13)
* [Otro web service](#otro-web-service)
* [🎉 Otro web service](#otro-web-service)
* [Migración](#migraci%C3%B3n)
* [Proyectos relacionados](#proyectos-relacionados)
* [¿Necesitas ayuda? 🚀](#necesitas-ayuda-)
Expand Down Expand Up @@ -70,7 +70,7 @@ composer require afipsdk/afip.php
```

#### Via Manual
1. Clonarlo con `git clone` o descargar el repositorio desde [aqui](https://github.com/AfipSDK/afip.php/archive/v0.6.0.zip "Descargar repositorio").
1. Clonarlo con `git clone` o descargar el repositorio desde [aqui](https://github.com/AfipSDK/afip.php/archive/refs/heads/master.zip "Descargar repositorio").
2. Copiar el contenido de la carpeta *res* a tu aplicación.

**Importante**
Expand Down Expand Up @@ -104,8 +104,6 @@ Una vez realizado esto podemos comenzar a usar el SDK con los Web Services dispo

Si necesitas más información de cómo utilizar algún web service echa un vistazo a la [documentación completa de afip.php](https://github.com/afipsdk/afip.php/wiki)

**Además si necesitas usar otro web service que aún no está disponible aquí podes utilizar esta librería como base para que se te haga más fácil, pronto haremos un tutorial explicando paso a paso como hacerlo, pero por el momento te recomendamos comenzar haciendo una copia y modificando el código de [consulta al padrón alcance 5](https://github.com/afipsdk/afip.php/blob/master/src/Class/RegisterScopeFive.php)**

### Factura electrónica
Podes encontrar la documentación necesaria para utilizar la [facturación electrónica](https://github.com/afipsdk/afip.php/wiki/Facturaci%C3%B3n-Electr%C3%B3nica) 👈 aquí

Expand Down
6 changes: 3 additions & 3 deletions src/Class/ElectronicBilling.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ public function CreateNextVoucher($data, $return_response = FALSE)

$data['CbteDesde'] = $voucher_number;
$data['CbteHasta'] = $voucher_number;

$res = $this->CreateVoucher($data, $return_response);
$res->voucher_number = $voucher_number;
$res = $this->CreateVoucher($data, $return_response);
$res['voucher_number'] = $voucher_number;

return $res;
}
Expand Down

0 comments on commit 1d99115

Please sign in to comment.