oc-facho/facho/fe/form_xml/attached_document.py
bit4bit 48c56631ec inicio AttachedDocument
FossilOrigin-Name: 45488436368ceeb9cbe6ed5b1b63b004821b868b1eba6a80aec6db5504a21f07
2022-02-05 18:37:31 +00:00

15 lines
356 B
Python

from .. import fe
__all__ = ['AttachedDocument']
class AttachedDocument():
def __init__(self, id):
schema = 'urn:oasis:names:specification:ubl:schema:xsd:AttachedDocument-2'
self.fexml = fe.FeXML('AttachedDocument', schema)
self.fexml.set_element('./cbc:ID', id)
def toFachoXML(self):
return self.fexml