| | |
| | | rpc UpdateMaterialApplyStatus(UpdateMaterialApplyStatusRequest) returns(UpdateMaterialApplyStatusResponse) {} |
| | | rpc GetWarehouseInfo(GetWarehouseInfoRequest) returns(GetWarehouseInfoResponse) {} |
| | | rpc UpdateOutsourceOrder(UpdateOutsourceOrderRequest) returns(UpdateOutsourceOrderResponse) {} |
| | | rpc GetOperationInfo(GetOperationInfoRequest) returns(GetOperationInfoResponse) {} |
| | | } |
| | | |
| | | message CreateNewOrderRequest{ |
| | |
| | | } |
| | | |
| | | message UpdateOutsourceOrderResponse{} |
| | | |
| | | //-------------------------------------------------GetOperationInfo----------------------------------------- |
| | | |
| | | message GetOperationInfoRequest{ |
| | | repeated string SourceNumber = 1;//来源编码 |
| | | repeated string SalesDetailsNumber = 2;//销售明细编码 |
| | | int64 Status = 3;//状态 |
| | | } |
| | | |
| | | message GetOperationInfoResponse{ |
| | | repeated OperationInfo list = 1; |
| | | } |
| | | |
| | | message OperationInfo { |
| | | string SourceNumber = 1;//来源编码 |
| | | string SalesDetailsNumber = 2;//销售明细编码 |
| | | string ProductId = 3; |
| | | int64 Amount = 4; |
| | | } |