Explorar el Código

added BoltSaleinv module

vnc-console hace 3 meses
padre
commit
4823267525
Se han modificado 1 ficheros con 12 adiciones y 0 borrados
  1. 12 0
      py_mentor_imports/sale_invoices.py

+ 12 - 0
py_mentor_imports/sale_invoices.py

@@ -0,0 +1,12 @@
+'''Created on 3 Jun 2024 @author: vnc-console'''
+
+class BoltSaleInvoice(object):
+    '''classdocs'''
+
+    def __init__(self, doc_data, buyer_name, buyer_code, total_value, doc_number, doc_notes):
+        self.buyer_name = buyer_name
+        self.buyer_code = buyer_code
+        self.total_value = total_value
+        self.doc_number = doc_number
+        self.doc_notes = doc_notes
+        self.doc_data = doc_data