From 916acbcd904ac4e8432471a78c8fe23350e8e936 Mon Sep 17 00:00:00 2001 From: msyu Date: Wed, 19 Mar 2025 14:18:18 +0300 Subject: [PATCH] 073 billingObject, contragentCode for create operation only --- v1/Application.cfc | 2 +- v1/resources/instance_operation_run.cfc | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/v1/Application.cfc b/v1/Application.cfc index 22b313e..693090c 100644 --- a/v1/Application.cfc +++ b/v1/Application.cfc @@ -51,7 +51,7 @@ //variables.framework.docs={}; variables.framework.docs.APIName="Deck API"; - variables.framework.docs.APIVersion="0.072"; + variables.framework.docs.APIVersion="0.073"; variables.framework.globalHeaders = structNew(); variables.framework.globalHeaders["Access-Control-Expose-Headers"] = "Location"; diff --git a/v1/resources/instance_operation_run.cfc b/v1/resources/instance_operation_run.cfc index e504aee..09c3784 100644 --- a/v1/resources/instance_operation_run.cfc +++ b/v1/resources/instance_operation_run.cfc @@ -122,7 +122,7 @@ ---> - select so.svc_operation_id, io.instance_uid + select so.svc_operation_id, io.instance_uid, so.operation from instance_operation io join instance e on (io.instance_uid=e.instance_uid) join svc_operation so on (e.service_id=so.svc_id AND io.operation=so.operation) @@ -133,8 +133,10 @@ - - + + + + insert into instance_operation_param (instance_operation_uid,param,param_value)