- 购货订单
- 购货入库单
- 购货退货单
- 销货订单
- 销货出库单
- 销货退货单
- 批次查询
- 盘点单
- 调拨单
- 组装单
- 拆卸单
- 其他入库单
- 其他出库单
- 成本调整单
- 付款单
- 收款单
- 转账单
- 结算单
- 应收减免单
- 应付减免单
- 其他收入单
- 其他支出单
- 单据费用
- 单据发票
- 购货订单跟踪表(单据)
- 购货订单跟踪表(商品)
- 购货明细表
- 购货汇总表
- 购货付款表
- 销货订单跟踪表(单据)
- 销货订单跟踪表(商品)
- 销货明细表
- 销货汇总表
- 销货收款单
- 销货排行表
- 销货利润表
- 销货利润明细表
- 商品库存余额表
- 商品收发明细表
- 商品收发汇总表
- 现金银行报表
- 应收账款明细表
- 应付账款明细表
- 客户对账单
- 供应商对账单
- 利润表
- 其他收支明细表
- 往来单位欠款表
- 购货排行表
- 客户管理
- 序列查询
- 库存查询
- 供应商类别
- 资金账户
- 收入类别
- 支出类别
- 供应商期初
- 结账管理
- 仓库管理
- 客户类别
- 货位管理
- 客户期初
- 供应商管理
- 人员管理
- 商品类别
- 商品品牌
- 规格属性
- 多规格型号
- 计量单位
- 条码管理
- 系统参数
- 多计量单位
- 商品期初
- 物流管理
- 价格等级
- 商品管理
- BOM管理
- 组织架构
- 用户角色
- 用户管理
- 通知消息
- 操作日志
- 数据备份
- 菜单管理
- 报表模板
- 扩展字段
- 编号规则
- 公用接口
修改
开发中
POST
/api/sre/save
请求参数
Header 参数
Authorization
string
API密钥
默认值:
Bearer 3|Reh29fr0WqqSDz8rRbpKbSU84sTBoo3zLDMhTZNH1b15d5e5
Body 参数application/json
form
object
单据详情
id
integer
数据参数
customer
integer
客户
time
integer
单据时间
number
string
单据编号
total
number
单据金额
discount
number
优惠金额
actual
number
实际金额
money
number
实付金额
account
integer
结算账户
cost
number
单据费用
frame
integer
组织结构
user
integer
制单用户
person
integer
关联人员
logistic
object
物流信息
file
array[string]
文件附件
field
object
扩展字段
data
string
备注信息
amount
number
结算金额
examine
integer
审核状态
check
integer
核对状态
nucleus
integer
结算状态
cse
integer
费用状态
invoice
integer
发票状态
info
array [object {18}]
详情内容
goods
integer
商品信息
spec
integer
规格型号
cell
integer
计量单位
warehouse
integer
仓库
price
number
单价
tpe
number
含税单价
nums
number
数量
serial
array[string]
序列号
batch
string
批次号
mfg
integer
生产日期
discount
number
折扣率
dsc
number
折扣额
total
number
金额
tax
number
税率
tat
number
税额
tpt
number
价税合计
cost
number
费用
data
string
备注信息
cost
array [object {3}]
可选
exp
integer
支持类别
money
string
金额
data
string
备注信息
示例
{
"form": {
"id": 2,
"customer": 3,
"time": "2024-09-30",
"number": "XHTHD0002",
"total": 120,
"discount": "0",
"actual": 120,
"money": 120,
"account": 3,
"cost": 10,
"frame": 1,
"user": 1,
"person": "",
"logistic": {
"key": "auto",
"number": ""
},
"file": [],
"field": {
"a": "",
"b": "",
"c": "",
"d": "",
"e": ""
},
"data": "",
"amount": 0,
"examine": 0,
"check": 0,
"nucleus": 0,
"cse": 0,
"invoice": 0
},
"info": [
{
"goods": 2,
"spec": "",
"cell": 1,
"warehouse": 2,
"price": 12,
"tpe": 12,
"nums": "10",
"serial": [],
"batch": "",
"mfg": "",
"discount": "0",
"dsc": 0,
"total": 120,
"tax": "0",
"tat": 0,
"tpt": 120,
"cost": "0",
"data": "",
"relation": {
"state": false
}
}
],
"cost": [
{
"exp": 3,
"money": "10",
"data": ""
}
]
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/sre/save' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{"form":{"id":2,"customer":3,"time":"2024-09-30","number":"XHTHD0002","total":120,"discount":"0","actual":120,"money":120,"account":3,"cost":10,"frame":1,"user":1,"person":"","logistic":{"key":"auto","number":""},"file":[],"field":{"a":"","b":"","c":"","d":"","e":""},"data":"","amount":0,"examine":0,"check":0,"nucleus":0,"cse":0,"invoice":0},"info":[{"goods":2,"spec":"","cell":1,"warehouse":2,"price":12,"tpe":12,"nums":"10","serial":[],"batch":"","mfg":"","discount":"0","dsc":0,"total":120,"tax":"0","tat":0,"tpt":120,"cost":"0","data":"","relation":{"state":false}}],"cost":[{"exp":3,"money":"10","data":""}]}'
返回响应
🟢200成功
application/json
Body
state
string
必需
info
integer
必需
示例
{
"state": "success",
"info": 2
}
修改于 2024-12-19 19:03:41