|
R
|
rgfischerjr 12/20/2012 |
|
You can handle this in the database by setting the field to unique (or using the waybill as a primary key). |
|
|
C
|
cgphp 12/20/2012 |
|
In the "Before record added" event, enter the following code: $rs = CustomQuery("SELECT waybill FROM your_table_name WHERE waybill ='". $values['waybill']."'");
|
|