Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
Here is my sql query
SELECTOrder_Date,File_No,Job_No,Customer_ID,Order_Time,Contract,Order_Site_Address,Job_Description,VAT,Invoice_Printed,Invoice_Printing_Date,Invoice_Tax_Date,Payment_Received,Job_Finished,CustomerRef,Customer_Name,Payment_Due_date,Payment_Date,Locked,NoteFROM job
If JOB-finished is checked, how can I disable the edit functions on this job so it can not be altered?ThanksPaul
Hi,you can do the following:
{if $row.allowedit}<A class=tablelinks id=editlink{$row.1recno} href="TableName_edit.php?{$row.1editlink}">Edit</A>{/if}
2. add following code to the List page: After record processed event on the Events tab:
if ($data["Job_Finished"])
Thanks Jane.Will try thatPaul.