As the reference field is used to indicate the number of the supplier invoice, it can be used to determine if the invoice is already entered in the system.
It will be great if we can show a warning message when trying to post the same supplier invoice multiple times (an invoice from the same supplier with the same reference)
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Child items
0
Show closed items
No child items are currently assigned. Use child items to break down this issue into smaller parts.
Linked items
0
Link issues together to show that they're related.
Learn more.
I do not think a warning is the right way because it prevents automatic creation of document. But here as the data is not controlled by Tryton, we can not guess that the reference will be unique per party.
Instead of check the duplicate on party.id, could we validate on tax identifier? We could add to the system two party, but with the same tax identifier.
> Cédric Krier added the comment:
>
> I do not think a warning is the right way because it prevents automatic creation of document.
I've added a context flag that allows to skip the test. This can be set on automatic processes to skip the warning and create the documents.
> But here as the data is not controlled by Tryton, we can not guess that the reference will be unique per party.
That's why I set it as warning so the system allows to include duplicated references but warns the user before doing so.
> On 1/4/19 18:49, Luciano Rossi wrote:
> Instead of check the duplicate on party.id, could we validate on tax identifier? We could add to the system two party, but with the same tax identifier.
Good point! I've just modified the review to test the party_tax_identifier if set, otherwise we fallback to testing the same party.
I've also used a property to define the domain used to search duplicated invoices, so third party modules can customize the behavior if needed.
On 2019-04-02 09:04, Sergi Almacellas Abellana wrote:
> > Cédric Krier added the comment:
> >
> > I do not think a warning is the right way because it prevents automatic creation of document.
> I've added a context flag that allows to skip the test. This can be set on automatic processes to skip the warning and create the documents.
This is not a good solution. We have seen that such design is broken
with the access right. Because it leads to have to set *everywhere* this
context if we want to be modular.
> > But here as the data is not controlled by Tryton, we can not guess that the reference will be unique per party.
> That's why I set it as warning so the system allows to include duplicated references but warns the user before doing so.
I doubt it adds real value for some reasons:
* Tools will never fix human workflow errors.
* Supplier invoices are assembled from purchase so already you cannot
use twice the same line.
* User will stop filling the reference field to avoid the warning.
On 2020-07-24 16:34, Sergi Almacellas Abellana wrote:
> > * Supplier invoices are assembled from purchase so already you cannot
> use twice the same line.
>
> But there are some invoices that do not come for any purchase. I.E: Internet, Phone, Water, Electricity, etc.
That's not a reason to disqualifies all other points.
> > * User will stop filling the reference field to avoid the warning.
>
> Then we can should make it required to avoid the user skiping the warning.
That's not possible. We can not assume that all supplier invoices
encoded will have a reference. And this is against Tryton principal to
not add constraint which are not required by the process.
We can not assume that all supplier invoices encoded will have a reference.
Why not? I think it is a good practices to set the supplier number as reference on the supplier invoices to encode the invoices. When receiving an invoice from a supplier you will always have a number as this is a mandatory field to have an invoice.
Do you have any example where the invoice should not have any number?