12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- package http
- type TransferReq struct {
- Dest `json:"DEST"`
- Data TransferMaster `json:"DATA"`
- }
- type TransferMaster struct {
- TransferCode string `json:"ZEBELN"`
- OrderDate string `json:"BEDAT"`
- PostDate string `json:"BUDAT"`
- Group string `json:"EKGRP"`
- Detail []TransferDetail `json:"TEKPO"`
- }
- type TransferDetail struct {
- RowNumber string `json:"EBELP"`
- MaterialCode string `json:"MATNR"`
- Quantity string `json:"MENGE"`
- Unit string `json:"MEINS"`
- NetPrice string `json:"NETPR"`
- DeliverDate string `json:"EINDT"`
- Per string `json:"PEINH"`
- OutFactory string `json:"UMWRK"`
- OutLocation string `json:"UMLGO"`
- InFactory string `json:"WERKS"`
- InLocation string `json:"LGORT"`
- TaxCode string `json:"MWSKZ"`
- }
- type TransferResp struct {
- Data TransferRespData `json:"DATA"`
- Dest Dest `json:"DEST"`
- }
- type TransferRespData struct {
- Proof TransferProof `json:"EKKO"`
- }
- type TransferProof struct {
- SapInCode string `json:"EBELN"`
- SapOutCode string `json:"VBELN"`
- ProofCode string `json:"MBLNR"`
- ProofYear string `json:"MJAHR"`
- EqTransferCode string `json:"ZEBELN"`
- }
|