Add quote_number in invoices list partial_invoice_table.php

I was able to add the quote number inside the invoice pdf according to
https://community2.invoiceplane.com/t/display-quote-number-in-invoice/1972

but not in the outside list in page : partial_invoice_table.php

I was able to add a custom field in the quote list partial_quote_table.php
like this

<?php $CI = &get_instance(); $CI->load->model('custom_fields/mdl_custom_fields'); $custom_fields = array( 'quote' => $this->mdl_custom_fields->get_values_for_fields('mdl_quote_custom', $quote->quote_id),); echo nl2br($custom_fields['quote']['Projet']); ?>

which works fine until you consult this page from inside the client tab ??
gives Severity: Error
Message: Call to undefined method Custom_Fields::get_values_for_fields()

So maybe the code inside partial_quote_table.php needs to be in another file for all outside scopes ??

Please do not create several new posts for the same topic!

See

hello,
I already have this line in pdf_helper.php

thank you I was able to display the quote number in invoices list, but the other error is different as I said I was able to add a custom field in the quote list partial_quote_table.php, but gives error when loaded from clients tabs “Call to undefined method Custom_Fields::get_values_for_fields()”