Conditions | 1 |
Total Lines | 6 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import yaml |
||
11 | def log_email(receptor, notify_invoices, facturas_pendientes): |
||
12 | print_yaml({ |
||
13 | "Rfc": Code(receptor["Rfc"], receptor["RazonSocial"]), |
||
14 | "Facturas": [f"{i.name} - {i.uuid}" for i in notify_invoices], |
||
15 | "PendientesMesesAnteriores": [f"{i.name} - {i.uuid}" for i in facturas_pendientes], |
||
16 | "Correos": receptor["Email"] |
||
17 | }) |
||
37 |