保存操作接口

栏目:云苍穹知识作者:金蝶来源:金蝶云社区发布:2024-09-23浏览:1

保存操作接口

1 接口介绍

保存操作服务是指通过在请求体中按规范输入json格式的参数,调用界面保存操作,快速保存单笔或大批量的数据。


2 注意事项

1)当一次保存多条数据时,请求体的参数data需要修改为datas;

2)当请求体的list数据中携带有主键id时,默认是更新操作,否则判断为新增保存操作,可以在同一批数据中既执行新增又执行更新操作。


3 接口示例

采购订单保存

URL:{{host}}/kapi/sys/pm_purorderbill/save


请求方式:POST


请求Header参数:

Content-Type=application/json

accessToken: xxxxxxxxxxxxx


请求Body:

{

   "data": {

       "org": {

           "number": "xyd2024"

       },

       "biztype": {

           "number": "110"

       },

       "billtype": {

           "number": "pm_PurOrderBill_Cost_BT_S"

       },

       "biztime": "2021-07-25 15:15:22",

       "billstatus": "A",

       "bizorg": {

           "number": "xyd2024"

       },

       "supplier": {

           "number": "sup-00122"

       },

       "settlecurrency": {

           "number": "CNY"

       },

       "exratetable": {

           "number": "0001"

       },

       "comment":"采购订单备注",

       "exratedate": "2021-07-25 15:15:22",

       "paymode": "CREDIT",

       "exchangerate": 1.0000000000,

       "istax": "1",

       "billentry": [

           {  

               "material": {

                   "number": "ZH-00009257"

               },

               "qty": "1010",

               "unit": {

                   "number": "ZH-TON"

               },

               "entrysettleorg":{

                   "number":"xyd2024"

               },

"entrycomment":"分录1"

           },

{  

               "material": {

                   "number": "ZH-00009257"

               },

               "qty": "1020",

               "unit": {

                   "number": "ZH-TON"

               },

               "entrysettleorg":{

                   "number":"xyd2024"

               },

"entrycomment":"分录2"


           }


       ]

   }

}


请求结果:

{

   "data": {

       "success": true,

       "needSign": false,

       "needWfAssignPersons": false,

       "cancelWriteLog": true,

       "showMessage": true,

       "billCount": 1,

       "successPkIds": [

           1235479318616893440

       ],

       "billNos": {

           "1235479318616893440": "CGDD-202109-152203"

       },

       "validateResult": {

           "validateErrors": [],

           "success": true,

           "message": "",

           "errorPkIds": [],

           "errorDataIndexs": []

       },

       "allErrorOrValidateInfo": [],

       "runSecond": 0,

       "allErrorInfo": []

   },

   "success": true,

   "errorCode": "success",

   "message": null

}


4 返回参数说明

序号

参数

解释

返回值实例

1

success

是否成功

true/false

2

errorCode

错误编码

success/false

3

message

提示信息

成功时为null,失败时会返回错误信息

4

data

业务对象数据

{"successPkIds":[1235479318616893440],"billNos":{"1235479318616893440": "CGDD-202109-152203"},}


5. 参数格式示例

保存接口所有字段类型的入参格式可参考下表,其中基础资料类型的字段在入参时,建议通过id或number保存。


序号

参数名称

入参示例

1

单据ID

"id": "1007171369592427520"

2

单据编码

"billno" : "4"

3

单据状态

"billstatus": "A"

4

创建人

"creator": {
           "id": "13466739",
           "number": "13466739",
           "name": "IERP"

       }

5

创建时间

"createtime": "2020-10-22 14:12:46"

6

组织

"org": {
           "id": "100000",
           "number": "00",
           "name": "环宇国际集团有限公司"

       }

7

文本

textfield: "4"

8

整数

"integerfield": 4

9

小数

"decimalfield": "4.0000000000"

10

长整数

"bigintfield": 4

11

多行文本

"textareafield": "4"

12

大文本

"largetextfield": "4"

13

多语言文本

"mulilangtextfield": {
           "zh_TW": "4",
           "zh_CN": "4"
       }

14

复选框

"checkboxfield": true

15

单选按钮

"radiofield": false

16

单选按钮组

"radiogroupfield": "1"

17

下拉列表

"combofield": "1"

18

多选下拉列表

"mulcombofield": "a,b"

19

基础资料

用户基础资料
"userfield": {
           "id": "577197513895838720",
           "number": "",
           "name": "周云冲"

       }

20

辅助资料

"assistantfield": {
           "id": "438033444614721536",
           "number": "COT01",
           "name": "畜禽养殖"

       }

21

单据体/子单据体

"entryentity": [
           {
               "id": "1007191118741270528",
               "seq": 1,
               "integerfield1": 4,
               "textfield1": "单据体4",
               "subentryentity": [
                   {
                       "id": "1007191118741246976",
                       "seq": 1,
                       "integerfield2": 4,
                       "textfield2": "子单据体4"
                   }
               ]
           }
       ]

22核算维度

 "assgrp": {

                        "客户": {

                            "number": "Cus-000001"

                        },

                        "费用项目":{

                            "number": "111"

                        }

                    }

23辅助属性


"auxpty": {

                    "颜色": {

                        "number": "blue"

                    }

24多选基础资料

"mulbasedatafield": {

    "importprop": "number/name", 支持指定按编码或名称查找赋值

    "number": "基础资料编码",

    "name": "基础资料名称"

}


以高等院校的院校特性(多选基础资料)为例,入参格式如下:


"collegecharact":

                {

                    "number":"1010_S,1020_S,1030_S"

                    }

不同的基础资料编码之间用逗号","分隔


6. 特殊参数

option(该参数与data同级):

  • importtype:引入类型,设置值如新增new、更新override、更新并新增overridenew。

  • KeyFields:分隔字串,引入数据时的匹配字段,用来查找待更新的数据 比如单据编码billno、名称name等其他候选键。

  • OverrideEntry:设置值为true,会完整覆盖分录,例:某个单据有10条分录,调用请求,会把10条全删除,然后只保留新增的分录。若设置为false,会根据请求体数据中有分录内码的分录来更新分录行,若没有就会追加分录。

  • firePropChanged:设置值为true,覆盖引入单据时,是否触发值更新事件。值更新事件非常消耗性能,可设置为false,默认不触发。

  • fireAfterImportData:设置值为true,引入单据结束后,是否触发afterImportData事件,并执行业务服务规则。默认执行,可设置为false,参数关闭,提升性能 。

  • ForUpdateMultiLangFields:设置值为true ,更新数据时仅更新多语言字段。


使用示例:

{

    "data": {
        "billno":  "CGDD-202110-153158"
             ...
            },
     "option": {
         "importtype""override",
          "KeyFields""id",

          "OverrideEntry"true,

          "ForUpdateMultiLangFields"true

            ...

            }

 

Forcedsubmit:单据上的操作Key,在请求体中可以添加参数"forcedsubmit",设置值为submit,调用保存操作,业务对象会在保存后自动提交。


appid:可以指定API路由到某个应用,入参时传入对应的appid。


updateFields:仅更新body参数中的指定字段。


使用示例:

{

    "data": {
        "billno":  "CGDD-202110-153158"
             ...

            },

 "forcedsubmit""submit",
 "updateFields": [
         "billno",
         "billentry",
         "material",

         "unit"

          ...

            ]

}



保存操作接口

1 接口介绍保存操作服务是指通过在请求体中按规范输入json格式的参数,调用界面保存操作,快速保存单笔或大批量的数据。2 注意事项1)当...
点击下载文档
上一篇:更新操作接口下一篇:加载操作接口
确认删除?
回到顶部
客服QQ
  • 客服QQ点击这里给我发消息