pabloacastillo/ruc-paraguay
Composer 安装命令:
composer require pabloacastillo/ruc-paraguay
包简介
This laravel package fetch, search and retrieve RUC codes from the official taxes database from SET. Este es un paquete de laravel para descargar, buscar y brindar información sobre los numeros de RUC desde la fuente oficial del SET en Paraguay.
关键字:
README 文档
README
Fetch, search and retrieve RUC codes from the official taxes database from SET.
Descargar, buscar y brindar información sobre los numeros de RUC desde la fuente oficial del SET en Paraguay.
Install
Use composer to install the package, just run this comamnd to add it to the composer.json
composer require pabloacastillo/ruc-paraguay
The autodiscovery option should take care of things, but if that doesnt work follow the next steps.
Add the package to config/app.php to the providers list:
pabloacastillo\RUCParaguay\RUCParaguayServiceProvider::class
Add the package to config/app.php to the aliases list:
'RUCParaguay' => pabloacastillo\RUCParaguay\Facades\RUCParaguayFacade::class
Artisan Commands
This are the artisan commands avaible, you should hook update the data at least once a month.
php artisan ruc:update
Fetchs and updates all the local data from the source. Will download several zip files, decompress to text files and load them into the database.
php artisan ruc:search Castillo Pablo
Performs a searchs inside the database with the provided information. Will return results and some debug info.
HOW TO USE
To search for information inside the database you can especify the fields you are looking for like this:
$toSearch=array(
'nro_ruc' =>'4600',
'denominacion' =>'alejandro',
'ruc_anterior' =>'ca',
);
RUCParaguay::search($toSearch);
You can also search with only one field:
$toSearch=array(
'nro_ruc' =>'460018',
);
RUCParaguay::search($toSearch);
Or you can search the whole thing like this:
RUCParaguay::search('46001');
To update the database periodically run the artisan command, it should be hooked to a cron command to run every couple of days. The update is hardset inside the code to be able to be executed a maximun of once every 48 hours.
php artisan ruc:update
TODO
-
Add code examples.
-
Find a way to make it faster without dumping direct-to-database.
统计信息
- 总下载量: 74
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 13
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-01-07