예제 #1
0
def generate_doc(path: str, new_name: str, data: Issue):
    from marer.models import Document
    doc_file = fill_docx_file_with_issue_data(path, data)
    doc_file.name = new_name
    doc = Document()
    doc.file = doc_file
    doc.save()
    doc_file.close()
    return doc