Hi all,
I am building an order capture app.
I have a table “Products”, “Suppliers”, “Suppliers_Orders”,“Suppliers_Orders_Items”.
Suppliers_Orders_Items => ID product/ID Order/Qte
What I want to do is: from a Product, add the product to a pending order.
It means, from the product:
open a form autofilled with
– the Id product selected,
– ID order must be prefilled with the list of Suppliers_Orders in a State=“Doing” and only from the Supplier of the Product selected (it should be only one order)
– qty must be prefilled with a formula (product.minimum qty + product.current stock for example)
Thanks, it works, but then, I am wondering how to reduce the Dropdown list to only the items possible.
I mean I did this :
LINKTOFORM(“Fournisseur_Commande_Detail_Form”,“SKU Produit”,[SKU],“Qte”,[Seuil bas]*2-[Current Stock],“ID Commande”,FILTER(Fournisseur_Commande,AND([Etat]=“A commander”,[ID Fournisseur]=[Fournisseur])))
So now, the order selected is ok, but if I click on it, I can select something else, from an other supplier