<!---
This file is Copyright © 1998-2009 by Home Care Business Services. This work may not be reproduced, in whole or in part, 
using any medium, including, but not limited to, electronic transmission, CD-ROM or published in print, without the express 
permission of Home Care Business Services.

$Revision: 1.3 $
$Id: delete_orders.cfm,v 1.3 2009/02/16 20:14:41 arlen Exp $
$Date: 2009/02/16 20:14:41 $
--->
<!--- Process is used to "delete" 485s and 7s from the Unsigned Orders page --->
<!--- Records are not deleted, but the Deleted field is set to 1 --->
<!--- So they can be restored by an Administrator --->

<cfquery  datasource="#Application.DataSrc#" name="Delete_Orders">
	UPDATE #Request.prefix_db_agency#.Assessment_Forms
	SET Delete = '1'
	WHERE Assessment_Forms_ID = #URL.ID#
</cfquery>

<cflocation url="index.cfm?page=dashboard&cat=chartcompliance&rpt=unsigned_orders" addtoken="no">
