So far when you “Search” you can only search in every form with just one searching item, i.e. you cannot search for a customer and a date at the same time, or you cannot search invoices between two dates, or a custom field and a date at the same time.
Is it possible in the next updates to be able to put in the search filed two or more labels and a value for searching, for example:
from date=30/12/2017 to date=30/01/2018 and supplier=Mr. Supplier
or
Invoice Value>=1.000 and customer=Mr. Customer
Learn SQL and use custom reports.
I’ve provided a rough starting point below, not sure if the queries work properly.
SELECT * FROM PurchaseInvoices WHERE PurchaseInvoice.Date > 30/12/2017 AND PurchaseInvoice.Date < 30/01/2018 AND PurchaseInvoice.Supplier == “Mr. Supplier”
SELECT * FROM SalesInvoices WHERE SalesInvoice.Amount == 1.000 AND SalesInvoice.Customer == “Mr. Customer”
I’ve dredged quite a number of topics on custom reports and know a little of the schema, but it keeps on changing as different functionality comes and goes. I’m still not very good at formatting my queries, so it could be either really.
I would have tested the queries before I posted them, but the version of Manager I’m running tends to just run SQL queries indefinitely and never give a result.