From 375b111ea95b838fbd787a8eea8e3b9cc6d1b23d Mon Sep 17 00:00:00 2001 From: msyu Date: Sat, 1 Mar 2025 11:00:06 +0300 Subject: [PATCH] 062 svc_operation_cfs_param.sort --- v1/resources/instance_operation.cfc | 3 ++- v1/resources/instance_operation_cfs_param_ls.cfc | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/v1/resources/instance_operation.cfc b/v1/resources/instance_operation.cfc index f9d073f..00cc54c 100644 --- a/v1/resources/instance_operation.cfc +++ b/v1/resources/instance_operation.cfc @@ -111,6 +111,7 @@ sop.regex sop.unique_scope sop.descr + sop.sort iop.note from svc_operation_cfs_param sop @@ -123,7 +124,7 @@ where sop.svc_operation_id = - order by sop.svc_operation_cfs_param_id + order by sop.sort, sop.svc_operation_cfs_param_id diff --git a/v1/resources/instance_operation_cfs_param_ls.cfc b/v1/resources/instance_operation_cfs_param_ls.cfc index 07c3ca6..06a35e7 100644 --- a/v1/resources/instance_operation_cfs_param_ls.cfc +++ b/v1/resources/instance_operation_cfs_param_ls.cfc @@ -64,6 +64,7 @@ u.login as creator_login u.shortname as creator_shortname sop.svc_operation_cfs_param + sop.sort from instance_operation_cfs_param iop join instance_operation io on (iop.instance_operation_uid=io.instance_operation_uid)