dragos-constantin-stoica / euro-invoice.eu

Invoicing platform for EU companies
GNU General Public License v3.0
1 stars 0 forks source link

Information flow for invoices and payments #35

Open dragos-constantin-stoica opened 1 year ago

dragos-constantin-stoica commented 1 year ago

The invoice should be automatically transmitted to the account of the Client in UnityBill - evenutally with an email. The Client should be able to registre the payment of an invoice. Sync the invoice payments between the Company and Client. Import CODA format files to process payments. Use Communication Structuree code in BE or UnityBill Unique Identifier to reconciliate the invoices with payments.

---
title: Invoice payment reconciliation
---
graph TD;
    subgraph Supplier
        A[Supplier] -- Register payment --> A[Supplier];
        B(CODA Supplier) -- Import -->A[Supplier];
    end

    subgraph Client
      C[Client] -- Register payment -->C[Client];
      D(Coda Client)-- Import --> C[Client] ;
    end

   Client -- Sync --> Supplier;
   Supplier -- Sync --> Client;