Skip to content

Commit

Permalink
Ajustes polizas
Browse files Browse the repository at this point in the history
  • Loading branch information
jtorz committed Feb 23, 2023
1 parent bd2bb40 commit 8cd9712
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,6 @@ func (b Polizas) Archivo() *contabilidad13.Archivo {
RFC: b.RFC,
Mes: b.Mes,
Anio: b.Anio,
Tipo: string(b.TipoSolicitud),
Tipo: "PL",
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func Marshal(c *Polizas) ([]byte, error) {
defer enc.EndElem("Polizas")

enc.WriteAttrStr("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance")
enc.WriteAttrStr("xsi:schemaLocation", polXS.NS+" https://www.sat.gob.mx/esquemas/ContabilidadE/1_3/PolizasPeriodo/PolizasPeriodo_1_3.xsd")
enc.WriteAttrStr("xsi:schemaLocation", polXS.NS+" http://www.sat.gob.mx/esquemas/ContabilidadE/1_3/PolizasPeriodo/PolizasPeriodo_1_3.xsd")

encodePolizas(enc, c)
enc.EndAllFlush()
Expand Down Expand Up @@ -151,14 +151,14 @@ func encodeTransferencias(enc *encoder.Encoder, ctas []*Transferencia) {

func encodeOtrMetodoPagos(enc *encoder.Encoder, ctas []*OtrMetodoPago) {
for _, otrmetpag := range ctas {
enc.StartElem(polXS.Elem("OtrMetodoPagos"))
enc.StartElem(polXS.Elem("OtrMetodoPago"))
enc.WriteAttrStrZ("MetPagoPol", otrmetpag.MetPagoPol)
enc.WriteAttrStrZ("Fecha", otrmetpag.Fecha.String())
enc.WriteAttrStrZ("Benef", otrmetpag.Benef)
enc.WriteAttrStrZ("RFC", otrmetpag.RFC)
enc.WriteAttrDecimal("Monto", otrmetpag.Monto, 2)
enc.WriteAttrStrZ("Moneda", string(otrmetpag.Moneda))
enc.WriteAttrDecimal("TipCamb", otrmetpag.TipCamb, 5)
enc.EndElem("OtrMetodoPagos")
enc.EndElem("OtrMetodoPago")
}
}

0 comments on commit 8cd9712

Please sign in to comment.