Conditions | 1 |
Total Lines | 17 |
Code Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | """pagoenespecie http://www.sat.gob.mx/pagoenespecie""" |
||
25 | def __init__( |
||
26 | self, |
||
27 | cve_pic: str, |
||
28 | folio_sol_don: str, |
||
29 | pza_art_nombre: str, |
||
30 | pza_art_tecn: str, |
||
31 | pza_art_aprod: str, |
||
32 | pza_art_dim: str, |
||
33 | ): |
||
34 | super().__init__({ |
||
35 | 'Version': self.version, |
||
36 | 'CvePIC': cve_pic, |
||
37 | 'FolioSolDon': folio_sol_don, |
||
38 | 'PzaArtNombre': pza_art_nombre, |
||
39 | 'PzaArtTecn': pza_art_tecn, |
||
40 | 'PzaArtAProd': pza_art_aprod, |
||
41 | 'PzaArtDim': pza_art_dim, |
||
42 | }) |
||
45 |