Hi all,
On a Credit Memo, whenever you update one of the fields on a line the unit price is automatically updated from the Item Card as well - is there a way to stop this? Most of our items don't have unit prices stored against them, so the prices are often getting blanked out.
0
Comments
NSC/Development answer: Yes of course 8) It just takes a little recoding ( <<< that when it starts to cost you :twisted: )
I wouldn't recommend removing the standard code from the table, but add a check routine into the equation:
i.e.
if "Unit Price"<>0 then
if confirm("Do you wish to check the item Price ?") begin
'Standard routine to fetch item price.......';
end;
this does one of two jobs:
1) Checks the item price being zero
2) only runs the price validation routine if the user wants it to
Hope that helps
Dean