58 lines
No EOL
3 KiB
Text
58 lines
No EOL
3 KiB
Text
<cfset this_looper = incrementvalue(attributes.looper)>
|
|
|
|
<cfquery name="check_for_children" datasource="#application.datasource#">
|
|
SELECT ItemName, ItemPrice, ItemID, ItemRequiresChildSelection, ItemMaxNumSelectionReq, ItemIsCollapsible
|
|
FROM Items
|
|
WHERE ItemParentItemID = #attributes.sending_ItemID#
|
|
AND
|
|
ItemIsActive = 1
|
|
ORDER BY ItemSortOrder DESC
|
|
</cfquery>
|
|
|
|
<cfif check_for_children.recordcount gt 0>
|
|
|
|
<cfquery name="check_for_children_of_new_item" datasource="#application.datasource#">
|
|
SELECT ItemID
|
|
FROM Items
|
|
WHERE ItemParentItemID = #check_for_children.ItemID#
|
|
AND
|
|
ItemIsActive = 1
|
|
</cfquery>
|
|
|
|
<cfif check_for_children_of_new_item.recordcount GT 0>
|
|
|
|
<cfoutput query="check_for_children">
|
|
|
|
<cfif check_for_children.ItemIsCollapsible eq 1>
|
|
|
|
<cfloop index="this_many_spaces" from="1" to="#this_looper#" step="1"> </cfloop> <a data-bs-toggle="collapse" href="##multiCollapseExample#check_for_children.ItemID#" role="button" aria-expanded="false" aria-controls="multiCollapseExample#check_for_children.ItemID#">+</a> #check_for_children.ItemName#<cfif ItemPrice gt 0> - #dollarformat(ItemPrice)#</cfif><cfif ItemRequiresChildSelection eq 1 and ItemMaxNumSelectionReq gt 1> (must choose 1, up to #ItemMaxNumSelectionReq#)<cfelseif ItemRequiresChildSelection eq 1> (must choose 1)<cfelseif ItemMaxNumSelectionReq gt 0> (choose up to #ItemMaxNumSelectionReq#)</cfif><br>
|
|
|
|
<!--- </p> --->
|
|
<div class="row">
|
|
<div class="col">
|
|
<div class="collapse multi-collapse" id="multiCollapseExample#check_for_children.ItemID#">
|
|
|
|
<cfmodule template="#application.wwwrootprefix#modules/get_children_of_item_id_browsemenu_new.cfm" sending_ItemID=#check_for_children.ItemID# looper=#this_looper#>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<cfelse>
|
|
|
|
<cfloop index="this_many_spaces" from="1" to="#this_looper#" step="1"> </cfloop> <font color="FFFFFF">+</font> #check_for_children.ItemName#<cfif ItemRequiresChildSelection eq 1 and ItemMaxNumSelectionReq gt 1> (must choose 1, up to #ItemMaxNumSelectionReq#)<cfelseif ItemRequiresChildSelection eq 1> (must choose 1)<cfelseif ItemMaxNumSelectionReq gt 0> (choose up to #ItemMaxNumSelectionReq#)</cfif><br>
|
|
<cfmodule template="#application.wwwrootprefix#modules/get_children_of_item_id_browsemenu_new.cfm" sending_ItemID=#check_for_children.ItemID# looper=#this_looper#>
|
|
|
|
</cfif>
|
|
</cfoutput>
|
|
|
|
<cfelse>
|
|
|
|
<cfoutput query="check_for_children">
|
|
<cfloop index="this_many_spaces" from="1" to="#this_looper#" step="1"> </cfloop> <font color="FFFFFF">+</font> #check_for_children.ItemName#<cfif check_for_children.ItemPrice gt 0> (+#dollarformat(check_for_children.ItemPrice)#)</cfif><br>
|
|
<cfmodule template="#application.wwwrootprefix#modules/get_children_of_item_id_browsemenu_new.cfm" sending_ItemID=#check_for_children.ItemID# looper=#this_looper#>
|
|
</cfoutput>
|
|
|
|
</cfif>
|
|
|
|
</cfif> |