Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The outstanding data needs to be prepared as a CSV or Excel file in the following format.

View file
nameoutstanding_import_sample.csv

...

On this template only the following fields needs to be updated.

  • partner_id → Patient Identifier

  • invoice_line_ids/price_unit → Outstanding Amount

  • currency_id/name → Name of your implementation currency

The following is a reference query which can be run on the openerp (or) odoo database to retrieve the patient id and their associated outstanding balance. Note: This query should be used as a reference to get the data and needs validation of the data. If your implementation uses additional addons, then the query needs to be altered.

Code Block
COPY (SELECT p.ref, p.name, SUM(l.debit-l.credit) as amount  FROM account_move_line l LEFT JOIN account_account a ON (l.account_id=a.id) LEFT JOIN res_partner p on l.partner_id=p.id WHERE a.type IN ('receivable','payable') AND p.customer=true  AND l.reconcile_id IS NULL GROUP BY p.id,p.name, p.ref HAVING SUM(l.debit-l.credit) <>0) TO '/var/lib/pgsql/outstanding.csv' WITH CSV;

We recommend preparing multiple CSV files with row count 500 to avoid memory errors during the import process.

Step 2: Importing the CSV files

Once you have prepared the CSV data, follow the steps below for each CSV file to import it.

  1. Navigate to Menu -> Invoicing -> Customers -> Invoices

  2. Click on Favorites → Import Records

  3. Upload the file by clicking on Upload File button

  4. Review the mappings and click on Test

    image-20240731-040739.pngImage Added

  5. Once there are no validation errors, click on Import.

  6. Repeat for all the CSV files.

Step 3: Setting the invoice type for imported invoices:

Once you have completed the import process for all the CSV, the type of the invoice needs to be updated. Run the following query inside the Odoo database.

Code Block
update account_move set move_type= 'out_invoice' where id in (select id from account_move where state ='draft' and narration = '<p>Import Outstanding Payments</p>')

Step 4: Posting the invoices

  1. Now navigate to Menu -> Invoicing -> Customers -> Invoices

  2. Select all the invoices by clicking the Select All checkbox

  3. Now Click on Action → Post Entries

    image-20240731-041441.pngImage Added

  4. In the following pop up, click on Post Entries to post all the invoices

Now you should be able to see that the outstanding information is visible for patients in Sales Quotation page or during the payment process.