PHP code example of strappberry / facturama-laravel
1. Go to this page and download the library: Download strappberry/facturama-laravel library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
strappberry / facturama-laravel example snippets
// Instancia Laravel Facturama
$api = new \Strappberry\FacturamaLaravel\Classes\ApiFacturama();
// Obtener instancia de api web
$apiWeb = $api->web();
// Obtener instancia de api multiemisor
$apiMultiemisor = $api->multiemisor();
use Strappberry\FacturamaLaravel\Classes\CertificadoSelloDigital;
// Crear objeto con los datos del Certificado de Sello Digital
$csd = new CertificadoSelloDigital();
$csd->agregarRFC('RFC del CSD');
$csd->agregarCertificado(
base64_encode(file_get_contents("/ruta/a/archivo.key"))
);
$csd->agregarLlavePrivada(
base64_encode(file_get_contents("/ruta/a/archivo.key"))
);
$csd->agregarPasswordDeLlavePrivada('contraseña del csd');
$apiMultiemisor->agregarNuevoCertificado($csd);
use Strappberry\FacturamaLaravel\Classes\CertificadoSelloDigital;
// Crear objeto con los datos del Certificado de Sello Digital
$csd = new CertificadoSelloDigital();
$csd->agregarRFC('RFC del CSD');
$csd->agregarCertificado(
base64_encode(file_get_contents("/ruta/a/archivo.key"))
);
$csd->agregarLlavePrivada(
base64_encode(file_get_contents("/ruta/a/archivo.key"))
);
$csd->agregarPasswordDeLlavePrivada('contraseña del csd');
$apiMultiemisor->actualizarCertificado($csd);
// Ejemplo tomado de la documenctación de la api de facturama
// Es importante agregar la clave Issuer
$datosAFacturar = [
"Serie" => "R",
"Currency" => "MXN",
"ExpeditionPlace" => "78116",
"PaymentConditions" => "CREDITO A SIETE DIAS",
"Folio" => "100",
"CfdiType" => "I",
"PaymentForm" => "03",
"PaymentMethod" => "PUE",
"Issuer"=> [
"FiscalRegime"=> "601",
"Rfc"=> "RFC con el que desea timbrar",
"Name"=> "Nombre del emisor"
],
"Receiver" => [
"Rfc" => "XAXX010101000",
"Name" => "Público en general",
"CfdiUse" => "P01",
],
"Items" => [
[
"ProductCode" => "10101504",
"IdentificationNumber" => "EDL",
"Description" => "Estudios de viabilidad",
"Unit" => "NO APLICA",
"UnitCode" => "MTS",
"UnitPrice" => 50.0,
"Quantity" => 2.0,
"Subtotal" => 100.0,
"Taxes" => [
[
"Total" => 16.0,
"Name" => "IVA",
"Base" => 100.0,
"Rate" => 0.16,
"IsRetention" => false,
],
],
"Total" => 116.0,
],
[
"ProductCode" => "10101504",
"IdentificationNumber" => "001",
"Description" => "SERVICIO DE COLOCACION",
"Unit" => "NO APLICA",
"UnitCode" => "E49",
"UnitPrice" => 100.0,
"Quantity" => 15.0,
"Subtotal" => 1500.0,
"Discount" => 0.0,
"Taxes" => [
[
"Total" => 240.0,
"Name" => "IVA",
"Base" => 1500.0,
"Rate" => 0.16,
"IsRetention" => false,
],
],
"Total" => 1740.0,
],
],
];
// Solicitamos la generación de la factura y el timbrado
$resultado = $apiMultiemisor->emitirCfdi($datosAFacturar)