-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Régimen de capital CFDI v4 #94
Comments
Tienes algún listado de los regímenes de capital (siglas y descripción) para poder crear un método para quitarlos? |
No, no lo tengo. De hecho creo que no hay como un catálogo pero deja investigo y doy un update. |
Yo por el momento tengo estos identificados, espero y sean de utilidad: /**
* Posibles régimenes de capital con los que puede terminar
* una razón social
* @var array
*/
const TIPOS_REGIMEN_CAPITAL = [
' AC',
' SA',
' SA DE CV',
' SA DE CV SOFOM ENR',
' S DE RL',
' S DE RL DE CV',
' SAS',
' S EN C',
]; Luego los elimino con la siguiente rutina: foreach(self::TIPOS_REGIMEN_CAPITAL as $RegimenCapital){
// Se remueve el régimen capital al final de la cadena de texto
$Razon = preg_replace('/'.$RegimenCapital.'$/', '', $Razon);
} |
Sus respectivas descripciones:
|
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
Hola! una duda.... hay algún método implementado en la librería para quitar el régimen de capital cuando se genera un CFDI v4.0 ? Muchas gracias de antemano.
The text was updated successfully, but these errors were encountered: