You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem: min_order_quantity was originally intended to be just a textual description and is therefore a string. This is confusing to users, some don't know whether to enter 25 Euro, 25 €, or just 25, or they enter something like 20 kg.
Later, a very useful feature to only auto-send the order to the supplier if the minimum order quantity is fulfilled was added, which compares this string to the order sum (I believe it is the gross sum, but this should be clarified in a tooltip as well).
My suggestion:
Add a text field supplier.order_note which prefills the order.note field of each order opened for this supplier. This could be used for various information like minimum order quantity in crates etc., transport cost, link to supplier's website etc. (Additionally, we could also extend the custom fields feature to orders, but that would take more work.)
Then we could migrate min_order_quantity to a monetary field (rename it to min_order_value?), detect all non-numeric / non-monetary data saved in it, and move it into supplier.order_note (with a label Minimum order quantity: in the respective locale). E.g. 25 Euro or 25 € should be converted to 25, but 20 kg should be moved to supplier.order_note.
Add currency symbol and clarification tooltip to minimum order value.
The text was updated successfully, but these errors were encountered:
See discussion in #838
Problem:
min_order_quantity
was originally intended to be just a textual description and is therefore a string. This is confusing to users, some don't know whether to enter25 Euro
,25 €
, or just25
, or they enter something like20 kg
.Later, a very useful feature to only auto-send the order to the supplier if the minimum order quantity is fulfilled was added, which compares this string to the order sum (I believe it is the gross sum, but this should be clarified in a tooltip as well).
My suggestion:
supplier.order_note
which prefills theorder.note
field of each order opened for this supplier. This could be used for various information like minimum order quantity in crates etc., transport cost, link to supplier's website etc. (Additionally, we could also extend thecustom fields
feature to orders, but that would take more work.)min_order_quantity
to a monetary field (rename it tomin_order_value
?), detect all non-numeric / non-monetary data saved in it, and move it intosupplier.order_note
(with a labelMinimum order quantity:
in the respective locale). E.g.25 Euro
or25 €
should be converted to25
, but20 kg
should be moved tosupplier.order_note
.The text was updated successfully, but these errors were encountered: