丽瀑ERP接口文档
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

1.7 KiB

  1. 创建调入单

1、接口测试地址 方法:POST URL: http://localhost:7889/TransferIn/CreateTransferInSV


单据头

参数 含义 类型 格式 是否必填 默认值 说明
BusinessDate 交易时间 Datetime yyyy-MM-dd HH:ss:mm
DocType 单据类型编码 string
Org 组织 string
User 用户 long 修改填写

单据行 lines

参数 含义 类型 格式 是否必填 默认值 说明
Item 料号 string
Qty 数量 decimal
Wh 存储仓库 string
OutWh 调出存储仓库 string
Bin 调入库位 string
OutBin 调出库位 string
LotNo 批号 string
Memo 调入组织编码 string
返回参数
参数 含义 类型 格式 是否必填 默认值 说明
--- --- --- --- --- --- ---
DocID 单据ID int
参数 含义 类型 格式 是否必填 默认值 说明
Data 单据号 string

输入格式示例

{
    "BusinessDate":"2023-07-7 12:25:25",
    "DocType":"",
    "Org":"100",
    "User":"IT",
    "lines":[{
        "Item":"2.08.0.0001",
        "Qty":1,
        "Wh":"009",
        "OutWh":"001",
        "Bin":"MOD2",
        "OutBin":"A07",
        "LotNo":"P-0083230509001"
        }]
}


返回报文 Data "Data": "Tra2023070002"

{
    "status": true,
    "Msg": null,
    "errorCode": null,
    "Data": "Tra2023070002"
}
  1. 修改杂收单

同上