UFN_RESERVATION_TOTAL

Gets the total for all items in an order with an adjustment for flat rate reservations.

Return

Return Type
money

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN

Definition

Copy


CREATE function dbo.UFN_RESERVATION_TOTAL
(    
    @ID uniqueidentifier
)
returns money
with execute as caller
as 
begin
    declare @TOTAL money;
    select @TOTAL = TOTAL from dbo.UFN_SALESORDER_TOTALS(@ID);
    return @TOTAL;
end