Skip to content

Commit 64352e3

Browse files
authored
Merge pull request #14 from eclipxe13/master
Cancellation for CFDI Retentions & maintenance
2 parents 520af1c + 73102cf commit 64352e3

31 files changed

+399
-115
lines changed

.gitattributes

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,15 @@
33

44
# Do not put this files on a distribution package (by .gitignore)
55
/vendor export-ignore
6-
/build export-ignore
76
/composer.lock export-ignore
87

98
# Do not put this files on a distribution package
9+
/build/ export-ignore
1010
/docs/ export-ignore
1111
/tests/ export-ignore
1212
/.gitattributes export-ignore
1313
/.gitignore export-ignore
1414
/.php_cs.dist export-ignore
15-
/.phplint.yml export-ignore
1615
/.scrutinizer.yml export-ignore
1716
/.travis.yml export-ignore
1817
/phpcs.xml.dist export-ignore

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
# do not include this files on git
22
/vendor
3-
/build
43
/composer.lock

.phplint.yml

-11
This file was deleted.

.scrutinizer.yml

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ filter:
44
- 'vendor/'
55

66
build:
7+
dependencies:
8+
override:
9+
- composer self-update --no-interaction --no-progress
10+
- composer remove squizlabs/php_codesniffer friendsofphp/php-cs-fixer phpstan/phpstan --dev --no-interaction --no-progress --no-update
11+
- composer install --no-interaction
712
nodes:
813
build:
914
tests:

.travis.yml

+2-11
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,7 @@
11
language: php
22

33
# php compatibility
4-
php:
5-
- "7.2"
6-
- "7.3"
7-
- "7.4snapshot"
8-
9-
matrix:
10-
allow_failures:
11-
- php: "7.4snapshot"
4+
php: ["7.2", "7.3", "7.4"]
125

136
cache:
147
- directories:
@@ -17,14 +10,12 @@ cache:
1710
before_script:
1811
- phpenv config-rm xdebug.ini || true
1912
- travis_retry composer install --no-interaction --prefer-dist
20-
- mkdir -p build
2113

2214
script:
23-
- vendor/bin/phplint
2415
- vendor/bin/php-cs-fixer fix --verbose --dry-run
2516
- vendor/bin/phpcs --colors -sp src/ tests/
2617
- vendor/bin/phpunit --testdox --verbose
27-
- vendor/bin/phpstan.phar analyse --no-progress --verbose --level max src/ tests/
18+
- vendor/bin/phpstan analyse --no-progress --verbose --level max src/ tests/
2819

2920
notifications:
3021
email: false

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,5 @@ vendor/bin/parallel-lint src/ tests/
7979
vendor/bin/phpcs -sp src/ tests/
8080
vendor/bin/php-cs-fixer fix -v --dry-run
8181
vendor/bin/phpunit --coverage-text
82-
vendor/bin/phpstan.phar analyse --no-progress --level max src/ tests/
82+
vendor/bin/phpstan analyse --no-progress --level max src/ tests/
8383
```

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2019 PHPCFDI
3+
Copyright (c) 2019 - 2020 PHPCFDI
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+14-4
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,8 @@ En la herramienta de ayuda no se especifica el RFC, cuando se fabrica la solicit
137137
se obtiene el RFC directamente de las propiedades del certificado.
138138

139139
Los métodos de ayuda utilizan una fecha opcional (`DateTimeImmutable` o `null`), si no se especifica
140-
entonces se toma la fecha actual del sistema, ten en cuenta que para la creación se toma en cuenta
141-
el reloj del sistema y el uso horario. Si no estás seguro de poder controlar estas configuraciones te
140+
entonces se toma la fecha actual del sistema, ten en cuenta que para la creación se utiliza el reloj
141+
del sistema y el uso horario. Si no estás seguro de poder controlar estas configuraciones te
142142
recomiendo que establezcas el parámetro.
143143

144144
### Solicitud de cancelación
@@ -158,6 +158,16 @@ Para crear la solicitud de respuesta usa el método `signCancellationAnswer`.
158158
Requiere el UUID para el cual estás estableciendo la respuesta, la respuesta (aceptación o cancelación)
159159
y el RFC del PAC por el cual se realiza la consulta.
160160

161+
### Solicitud de cancelación de RET
162+
163+
Existe un CFDI especial de *"Retenciones e información de pagos"*, donde también se requiere una solicitud
164+
firmada tal como en una cancelación de CFDI pero su contenido cambia.
165+
166+
Para crear la solicitud firmada para RET se puede hacer con los métodos `signRetentionCancellation` para un sólo UUID
167+
o `signRetentionCancellationUuids` para varios UUID. Como primer parámetro reciben qué UUID será cancelado.
168+
169+
TIP: Por la experiencia en el uso de los servicios de SAT se comienda usar siempre cancelaciones individuales.
170+
161171
## Objetos de trabajo
162172

163173
**`CapsuleInterface`** son los objetos que contienen toda la información relacionada con los datos a firmar,
@@ -213,15 +223,15 @@ and licensed for use under the MIT License (MIT). Please see [LICENSE][] for mor
213223
[source]: https://github.com/phpcfdi/xml-cancelacion
214224
[release]: https://github.com/phpcfdi/xml-cancelacion/releases
215225
[license]: https://github.com/phpcfdi/xml-cancelacion/blob/master/LICENSE
216-
[build]: https://travis-ci.org/phpcfdi/xml-cancelacion?branch=master
226+
[build]: https://travis-ci.com/phpcfdi/xml-cancelacion?branch=master
217227
[quality]: https://scrutinizer-ci.com/g/phpcfdi/xml-cancelacion/
218228
[coverage]: https://scrutinizer-ci.com/g/phpcfdi/xml-cancelacion/code-structure/master/code-coverage/src/
219229
[downloads]: https://packagist.org/packages/phpcfdi/xml-cancelacion
220230

221231
[badge-source]: https://img.shields.io/badge/source-phpcfdi/xml--cancelacion-blue?style=flat-square
222232
[badge-release]: https://img.shields.io/github/release/phpcfdi/xml-cancelacion?style=flat-square
223233
[badge-license]: https://img.shields.io/github/license/phpcfdi/xml-cancelacion?style=flat-square
224-
[badge-build]: https://img.shields.io/travis/phpcfdi/xml-cancelacion/master?style=flat-square
234+
[badge-build]: https://img.shields.io/travis/com/phpcfdi/xml-cancelacion/master?style=flat-square
225235
[badge-quality]: https://img.shields.io/scrutinizer/g/phpcfdi/xml-cancelacion/master?style=flat-square
226236
[badge-coverage]: https://img.shields.io/scrutinizer/coverage/g/phpcfdi/xml-cancelacion/master?style=flat-square
227237
[badge-downloads]: https://img.shields.io/packagist/dt/phpcfdi/xml-cancelacion?style=flat-square

build/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*
2+
!.gitignore

composer.json

+3-5
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,14 @@
2626
"ext-dom": "*",
2727
"ext-openssl": "*",
2828
"eclipxe/enum": "^0.2",
29-
"phpcfdi/credentials": "^1.0"
29+
"phpcfdi/credentials": "^1.1.1"
3030
},
3131
"require-dev": {
3232
"robrichards/xmlseclibs": "^3.0.4",
3333
"phpunit/phpunit": "^8.3.5",
34-
"overtrue/phplint": "^1.0",
3534
"squizlabs/php_codesniffer": "^3.0",
3635
"friendsofphp/php-cs-fixer": "^2.4",
37-
"phpstan/phpstan-shim": "^0.11"
36+
"phpstan/phpstan": "^0.12"
3837
},
3938
"suggest": {
4039
"robrichards/xmlseclibs": "Create document signatures (partially) using xmlseclibs"
@@ -60,7 +59,6 @@
6059
"vendor/bin/phpcbf --colors -sp src/ tests/"
6160
],
6261
"dev:test": [
63-
"vendor/bin/phplint",
6462
"@dev:check-style",
6563
"vendor/bin/phpunit --testdox --verbose --stop-on-failure",
6664
"vendor/bin/phpstan analyse --verbose --no-progress --level max src/ tests/"
@@ -73,7 +71,7 @@
7371
"dev:build": "DEV: run dev:fix-style dev:tests and dev:docs, run before pull request",
7472
"dev:check-style": "DEV: search for code style errors using php-cs-fixer and phpcs",
7573
"dev:fix-style": "DEV: fix code style errors using php-cs-fixer and phpcbf",
76-
"dev:test": "DEV: run phplint, phpunit and phpstan",
74+
"dev:test": "DEV: run dev:check-style, phpunit and phpstan",
7775
"dev:coverage": "DEV: run phpunit with xdebug and storage coverage in build/coverage/html/"
7876
}
7977
}

docs/CHANGELOG.md

+20-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,29 @@
11
# CHANGELOG
22

3-
# Version 1.0.1 2019-10-02
3+
## Version 1.1.0 2020-01-23
4+
5+
- Update license year, happy 2020!
6+
- Include cancellation document for document *"CFDI de retención e información de pagos"*.
7+
- Add `DocumentType` enumerator with keys `cfdi` and `retention` to specify the correct namespace of the request.
8+
- Add `XmlCancellationHelper::signRetentionCancellation` and `XmlCancellationHelper::signRetentionCancellationUuids`
9+
that create cancellation request for retentions.
10+
- Refactor `XmlCancelacionHelper` and delegate the creation of the `Cancellation` object to a specific
11+
protected method.
12+
- Other capsules uses also `DocumentType` to set the main namespace but as hardcoded.
13+
- Development:
14+
- Move from `phpstan/phpstan-shim` to `phpstan/phpstan`.
15+
- Upgrade to `phpstan/phpstan: ^0.12`
16+
- Testing:
17+
- Improve `CancellationTest` to check that `DocumentType` is used correctly.
18+
- Create a testing class `XmlCancelacionHelperSpy` to spy on `XmlCancelacionHelper`.
19+
- Refactor tests on `XmlCancelacionHelperTest` to test against the spy class.
20+
21+
## Version 1.0.1 2019-10-02
422

523
- Fix documentation to point out version 1.0 instead of 0.5.
624
- Fix documentation PHP examples.
725

8-
# Version 1.0.0 2019-09-28
26+
## Version 1.0.0 2019-09-28
927

1028
- This version is a major change, it is not compatible with previous versions
1129
Read [UPGRADE-1.0](https://github.com/phpcfdi/xml-cancelacion/blob/master/docs/UPGRADE-1.0.md)

docs/TODO.md

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# phpcfdi/xml-cancelacion To Do List
22

3-
- [X] Generar excepciones internas en lugar de excepciones genéricas de SPL.
4-
- [X] Poner el copyright correcto en cuanto esté el sitio de PhpCfdi
5-
- [X] Dejar de usar CfdiUtils y usar phpcfdi/credentials cuando esté publicada y estable
3+
## Pendientes
4+
5+
- El tercer parámetro del constructor de `Cancellation` que recibe el `DocumentType` debería ser obligatorio,
6+
es opcional para compatibilidad con la versión actual.
7+
8+
## Resueltas
9+
10+
- Generar excepciones internas en lugar de excepciones genéricas de SPL.
11+
- Poner el copyright correcto en cuanto esté el sitio de PhpCfdi
12+
- Dejar de usar CfdiUtils y usar phpcfdi/credentials cuando esté publicada y estable

phpunit.xml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<phpunit xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.0/phpunit.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
bootstrap="./tests/bootstrap.php" colors="true" verbose="true" cacheResultFile="./build/phpunit.result.cache">
2+
bootstrap="./tests/bootstrap.php" colors="true" verbose="true" cacheResult="false">
33
<testsuites>
44
<testsuite name="Default">
55
<directory>./tests/</directory>

src/Capsules/BaseDocumentBuilder.php

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ public function __construct(array $extraNamespaces = null)
3535
$this->extraNamespaces = $extraNamespaces;
3636
}
3737

38+
/** @return array<string, string> */
3839
public function extraNamespaces(): array
3940
{
4041
return $this->extraNamespaces;

src/Capsules/Cancellation.php

+20-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
use DateTimeImmutable;
99
use DOMDocument;
1010
use DOMElement;
11+
use PhpCfdi\XmlCancelacion\Definitions\DocumentType;
1112

1213
class Cancellation implements Countable, CapsuleInterface
1314
{
@@ -20,11 +21,23 @@ class Cancellation implements Countable, CapsuleInterface
2021
/** @var array<string, bool> This is a B-Tree array, values are stored in keys */
2122
private $uuids;
2223

23-
public function __construct(string $rfc, array $uuids, DateTimeImmutable $date)
24+
/** @var DocumentType */
25+
private $documentType;
26+
27+
/**
28+
* DTO for cancellation request, it support CFDI and Retention
29+
*
30+
* @param string $rfc
31+
* @param string[] $uuids
32+
* @param DateTimeImmutable $date
33+
* @param DocumentType|null $type Uses CFDI if non provided
34+
*/
35+
public function __construct(string $rfc, array $uuids, DateTimeImmutable $date, DocumentType $type = null)
2436
{
2537
$this->rfc = $rfc;
2638
$this->date = $date;
2739
$this->uuids = [];
40+
$this->documentType = $type ?? DocumentType::cfdi();
2841
foreach ($uuids as $uuid) {
2942
$this->uuids[strtoupper($uuid)] = true;
3043
}
@@ -40,6 +53,11 @@ public function date(): DateTimeImmutable
4053
return $this->date;
4154
}
4255

56+
public function documentType(): DocumentType
57+
{
58+
return $this->documentType;
59+
}
60+
4361
/**
4462
* The list of UUIDS
4563
* @return string[]
@@ -56,7 +74,7 @@ public function count(): int
5674

5775
public function exportToDocument(): DOMDocument
5876
{
59-
$document = (new BaseDocumentBuilder())->createBaseDocument('Cancelacion', 'http://cancelacfd.sat.gob.mx');
77+
$document = (new BaseDocumentBuilder())->createBaseDocument('Cancelacion', $this->documentType->value());
6078

6179
/** @var DOMElement $cancelacion */
6280
$cancelacion = $document->documentElement;

src/Capsules/CancellationAnswer.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
use DOMDocument;
99
use DOMElement;
1010
use PhpCfdi\XmlCancelacion\Definitions\CancelAnswer;
11+
use PhpCfdi\XmlCancelacion\Definitions\DocumentType;
1112

1213
class CancellationAnswer implements CapsuleInterface
1314
{
@@ -68,7 +69,7 @@ public function pacRfc(): string
6869
public function exportToDocument(): DOMDocument
6970
{
7071
$document = (new BaseDocumentBuilder())
71-
->createBaseDocument('SolicitudAceptacionRechazo', 'http://cancelacfd.sat.gob.mx');
72+
->createBaseDocument('SolicitudAceptacionRechazo', DocumentType::cfdi()->value());
7273

7374
/** @var DOMElement $solicitudAceptacionRechazo */
7475
$solicitudAceptacionRechazo = $document->documentElement;

src/Capsules/ObtainRelated.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
use DOMDocument;
88
use DOMElement;
99
use PhpCfdi\XmlCancelacion\Definitions;
10+
use PhpCfdi\XmlCancelacion\Definitions\DocumentType;
1011
use PhpCfdi\XmlCancelacion\Definitions\RfcRole;
1112

1213
class ObtainRelated implements CapsuleInterface
@@ -54,7 +55,7 @@ public function pacRfc(): string
5455
public function exportToDocument(): DOMDocument
5556
{
5657
$document = (new BaseDocumentBuilder())
57-
->createBaseDocument('PeticionConsultaRelacionados', 'http://cancelacfd.sat.gob.mx');
58+
->createBaseDocument('PeticionConsultaRelacionados', DocumentType::cfdi()->value());
5859

5960
/** @var DOMElement $peticion */
6061
$peticion = $document->documentElement;

src/Credentials.php

+1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ public function certificateAsPEM(): string
7272
return $this->getCsd()->certificate()->pem();
7373
}
7474

75+
/** @return array<mixed> */
7576
public function publicKeyData(): array
7677
{
7778
return $this->getCsd()->certificate()->publicKey()->parsed();

src/Definitions/CancelAnswer.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@
1616
*/
1717
class CancelAnswer extends Enum
1818
{
19-
/** @noinspection PhpMissingParentCallCommonInspection */
19+
/**
20+
* @inheritDoc
21+
* @noinspection PhpMissingParentCallCommonInspection
22+
*/
2023
protected static function overrideValues(): array
2124
{
2225
return [

src/Definitions/DocumentType.php

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace PhpCfdi\XmlCancelacion\Definitions;
6+
7+
use Eclipxe\Enum\Enum;
8+
9+
/**
10+
* Define the answer to the cancellation request (accept/reject)
11+
*
12+
* @method static self cfdi()
13+
* @method static self retention()
14+
* @method bool isCfdi()
15+
* @method bool isRetention()
16+
*/
17+
final class DocumentType extends Enum
18+
{
19+
/**
20+
* @inheritDoc
21+
* @noinspection PhpMissingParentCallCommonInspection
22+
*/
23+
protected static function overrideValues(): array
24+
{
25+
return [
26+
'cfdi' => 'http://cancelacfd.sat.gob.mx',
27+
'retention' => 'http://cancelaretencion.sat.gob.mx',
28+
];
29+
}
30+
}

0 commit comments

Comments
 (0)