maozw2018
1 year ago
committed by
Gitee
1 changed files with 56 additions and 0 deletions
@ -0,0 +1,56 @@ |
|||
1. ### 创建生产退料单 ### |
|||
|
|||
1、接口测试地址 |
|||
方法:POST |
|||
URL: http://localhost:7889/Issue/CreatRecedeIssueDocSV |
|||
|
|||
--- |
|||
单据头 |
|||
| 参数 | 含义 |类型 | 格式 | 是否必填 | 默认值 | 说明 | |
|||
| --- | --- |--- | --- | --- | --- | --- | |
|||
| MO | 生产订单 | string | | 是 | |
|||
| DocType | 单据类型编码 | string | | 否 | |
|||
| User| 业务员编码 | string | | 是 | |
|||
|
|||
单据行 Lines |
|||
|
|||
| 参数 | 含义 |类型 | 格式 | 是否必填 | 默认值 | 说明 | |
|||
| --- | --- | --- | --- | --- |--- |--- | |
|||
| FlagLine | 生产领料行ID| string | | 是 | |
|||
| IssueQty | 退料数量 | decimal | | 是 | |
|||
| wh | 仓库编码 | string | | 是 | |
|||
|
|||
返回参数 |
|||
|
|||
|
|||
|
|||
输入格式示例 |
|||
``` |
|||
{ |
|||
"MO":"230449", |
|||
"User":"IT", |
|||
"DocType":"", |
|||
"lines":[{ |
|||
"IssueQty":1, |
|||
"Wh":"001", |
|||
|
|||
"FlagLine":"1002305160001309" |
|||
}] |
|||
|
|||
} |
|||
``` |
|||
|
|||
返回报文 |
|||
|
|||
``` |
|||
{ |
|||
"status": true, |
|||
"Msg": null, |
|||
"errorCode": null, |
|||
"Data": "LL-0003113" |
|||
} |
|||
``` |
|||
|
|||
|
|||
1. ### 修改杂收单 ### |
|||
同上 |
Loading…
Reference in new issue