zhangqian
2024-03-15 2eb20330dfbda6136f1b8cc804cc21438ae4dc13
proto/product_inventory/product_inventory.pb.go
@@ -1,7 +1,7 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
//    protoc-gen-go v1.26.0
//    protoc        v4.24.0
//    protoc-gen-go v1.31.0
//    protoc        v3.19.0
// source: product_inventory.proto
package product_inventory
@@ -19,6 +19,52 @@
   // Verify that runtime/protoimpl is sufficiently up-to-date.
   _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type FinishStatus int32
const (
   FinishStatus_Ready  FinishStatus = 0
   FinishStatus_Finish FinishStatus = 1
)
// Enum value maps for FinishStatus.
var (
   FinishStatus_name = map[int32]string{
      0: "Ready",
      1: "Finish",
   }
   FinishStatus_value = map[string]int32{
      "Ready":  0,
      "Finish": 1,
   }
)
func (x FinishStatus) Enum() *FinishStatus {
   p := new(FinishStatus)
   *p = x
   return p
}
func (x FinishStatus) String() string {
   return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}
func (FinishStatus) Descriptor() protoreflect.EnumDescriptor {
   return file_product_inventory_proto_enumTypes[0].Descriptor()
}
func (FinishStatus) Type() protoreflect.EnumType {
   return &file_product_inventory_proto_enumTypes[0]
}
func (x FinishStatus) Number() protoreflect.EnumNumber {
   return protoreflect.EnumNumber(x)
}
// Deprecated: Use FinishStatus.Descriptor instead.
func (FinishStatus) EnumDescriptor() ([]byte, []int) {
   return file_product_inventory_proto_rawDescGZIP(), []int{0}
}
type CreateOperationRequest struct {
   state         protoimpl.MessageState
@@ -596,6 +642,267 @@
   return ""
}
type InputAndOutputInfo struct {
   state         protoimpl.MessageState
   sizeCache     protoimpl.SizeCache
   unknownFields protoimpl.UnknownFields
   Number      string       `protobuf:"bytes,1,opt,name=Number,proto3" json:"Number,omitempty"`
   Name        string       `protobuf:"bytes,2,opt,name=Name,proto3" json:"Name,omitempty"`
   OrderAmount string       `protobuf:"bytes,3,opt,name=OrderAmount,proto3" json:"OrderAmount,omitempty"` //订单数量
   Unit        string       `protobuf:"bytes,4,opt,name=Unit,proto3" json:"Unit,omitempty"`
   Invoice     string       `protobuf:"bytes,5,opt,name=Invoice,proto3" json:"Invoice,omitempty"`     //发货单
   Carrier     string       `protobuf:"bytes,6,opt,name=Carrier,proto3" json:"Carrier,omitempty"`     //承运商
   Waybill     string       `protobuf:"bytes,7,opt,name=Waybill,proto3" json:"Waybill,omitempty"`     //运单号
   SalePrice   string       `protobuf:"bytes,8,opt,name=SalePrice,proto3" json:"SalePrice,omitempty"` //销售单价
   Valorem     string       `protobuf:"bytes,9,opt,name=Valorem,proto3" json:"Valorem,omitempty"`     //价税合计
   Warehouse   string       `protobuf:"bytes,10,opt,name=Warehouse,proto3" json:"Warehouse,omitempty"`
   Amount      string       `protobuf:"bytes,11,opt,name=Amount,proto3" json:"Amount,omitempty"` //数量
   Status      FinishStatus `protobuf:"varint,13,opt,name=Status,proto3,enum=FinishStatus" json:"Status,omitempty"`
   CreateTime  string       `protobuf:"bytes,14,opt,name=CreateTime,proto3" json:"CreateTime,omitempty"`
}
func (x *InputAndOutputInfo) Reset() {
   *x = InputAndOutputInfo{}
   if protoimpl.UnsafeEnabled {
      mi := &file_product_inventory_proto_msgTypes[8]
      ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
      ms.StoreMessageInfo(mi)
   }
}
func (x *InputAndOutputInfo) String() string {
   return protoimpl.X.MessageStringOf(x)
}
func (*InputAndOutputInfo) ProtoMessage() {}
func (x *InputAndOutputInfo) ProtoReflect() protoreflect.Message {
   mi := &file_product_inventory_proto_msgTypes[8]
   if protoimpl.UnsafeEnabled && x != nil {
      ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
      if ms.LoadMessageInfo() == nil {
         ms.StoreMessageInfo(mi)
      }
      return ms
   }
   return mi.MessageOf(x)
}
// Deprecated: Use InputAndOutputInfo.ProtoReflect.Descriptor instead.
func (*InputAndOutputInfo) Descriptor() ([]byte, []int) {
   return file_product_inventory_proto_rawDescGZIP(), []int{8}
}
func (x *InputAndOutputInfo) GetNumber() string {
   if x != nil {
      return x.Number
   }
   return ""
}
func (x *InputAndOutputInfo) GetName() string {
   if x != nil {
      return x.Name
   }
   return ""
}
func (x *InputAndOutputInfo) GetOrderAmount() string {
   if x != nil {
      return x.OrderAmount
   }
   return ""
}
func (x *InputAndOutputInfo) GetUnit() string {
   if x != nil {
      return x.Unit
   }
   return ""
}
func (x *InputAndOutputInfo) GetInvoice() string {
   if x != nil {
      return x.Invoice
   }
   return ""
}
func (x *InputAndOutputInfo) GetCarrier() string {
   if x != nil {
      return x.Carrier
   }
   return ""
}
func (x *InputAndOutputInfo) GetWaybill() string {
   if x != nil {
      return x.Waybill
   }
   return ""
}
func (x *InputAndOutputInfo) GetSalePrice() string {
   if x != nil {
      return x.SalePrice
   }
   return ""
}
func (x *InputAndOutputInfo) GetValorem() string {
   if x != nil {
      return x.Valorem
   }
   return ""
}
func (x *InputAndOutputInfo) GetWarehouse() string {
   if x != nil {
      return x.Warehouse
   }
   return ""
}
func (x *InputAndOutputInfo) GetAmount() string {
   if x != nil {
      return x.Amount
   }
   return ""
}
func (x *InputAndOutputInfo) GetStatus() FinishStatus {
   if x != nil {
      return x.Status
   }
   return FinishStatus_Ready
}
func (x *InputAndOutputInfo) GetCreateTime() string {
   if x != nil {
      return x.CreateTime
   }
   return ""
}
type GetOrderInputAndOutputInfoRequest struct {
   state         protoimpl.MessageState
   sizeCache     protoimpl.SizeCache
   unknownFields protoimpl.UnknownFields
   Number string `protobuf:"bytes,1,opt,name=Number,proto3" json:"Number,omitempty"` //明细单编码
}
func (x *GetOrderInputAndOutputInfoRequest) Reset() {
   *x = GetOrderInputAndOutputInfoRequest{}
   if protoimpl.UnsafeEnabled {
      mi := &file_product_inventory_proto_msgTypes[9]
      ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
      ms.StoreMessageInfo(mi)
   }
}
func (x *GetOrderInputAndOutputInfoRequest) String() string {
   return protoimpl.X.MessageStringOf(x)
}
func (*GetOrderInputAndOutputInfoRequest) ProtoMessage() {}
func (x *GetOrderInputAndOutputInfoRequest) ProtoReflect() protoreflect.Message {
   mi := &file_product_inventory_proto_msgTypes[9]
   if protoimpl.UnsafeEnabled && x != nil {
      ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
      if ms.LoadMessageInfo() == nil {
         ms.StoreMessageInfo(mi)
      }
      return ms
   }
   return mi.MessageOf(x)
}
// Deprecated: Use GetOrderInputAndOutputInfoRequest.ProtoReflect.Descriptor instead.
func (*GetOrderInputAndOutputInfoRequest) Descriptor() ([]byte, []int) {
   return file_product_inventory_proto_rawDescGZIP(), []int{9}
}
func (x *GetOrderInputAndOutputInfoRequest) GetNumber() string {
   if x != nil {
      return x.Number
   }
   return ""
}
type GetOrderInputAndOutputInfoResponse struct {
   state         protoimpl.MessageState
   sizeCache     protoimpl.SizeCache
   unknownFields protoimpl.UnknownFields
   Code       int32                 `protobuf:"varint,1,opt,name=Code,proto3" json:"Code,omitempty"`
   Msg        string                `protobuf:"bytes,2,opt,name=Msg,proto3" json:"Msg,omitempty"`
   InputList  []*InputAndOutputInfo `protobuf:"bytes,3,rep,name=InputList,proto3" json:"InputList,omitempty"`
   OutputList []*InputAndOutputInfo `protobuf:"bytes,4,rep,name=OutputList,proto3" json:"OutputList,omitempty"`
}
func (x *GetOrderInputAndOutputInfoResponse) Reset() {
   *x = GetOrderInputAndOutputInfoResponse{}
   if protoimpl.UnsafeEnabled {
      mi := &file_product_inventory_proto_msgTypes[10]
      ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
      ms.StoreMessageInfo(mi)
   }
}
func (x *GetOrderInputAndOutputInfoResponse) String() string {
   return protoimpl.X.MessageStringOf(x)
}
func (*GetOrderInputAndOutputInfoResponse) ProtoMessage() {}
func (x *GetOrderInputAndOutputInfoResponse) ProtoReflect() protoreflect.Message {
   mi := &file_product_inventory_proto_msgTypes[10]
   if protoimpl.UnsafeEnabled && x != nil {
      ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
      if ms.LoadMessageInfo() == nil {
         ms.StoreMessageInfo(mi)
      }
      return ms
   }
   return mi.MessageOf(x)
}
// Deprecated: Use GetOrderInputAndOutputInfoResponse.ProtoReflect.Descriptor instead.
func (*GetOrderInputAndOutputInfoResponse) Descriptor() ([]byte, []int) {
   return file_product_inventory_proto_rawDescGZIP(), []int{10}
}
func (x *GetOrderInputAndOutputInfoResponse) GetCode() int32 {
   if x != nil {
      return x.Code
   }
   return 0
}
func (x *GetOrderInputAndOutputInfoResponse) GetMsg() string {
   if x != nil {
      return x.Msg
   }
   return ""
}
func (x *GetOrderInputAndOutputInfoResponse) GetInputList() []*InputAndOutputInfo {
   if x != nil {
      return x.InputList
   }
   return nil
}
func (x *GetOrderInputAndOutputInfoResponse) GetOutputList() []*InputAndOutputInfo {
   if x != nil {
      return x.OutputList
   }
   return nil
}
var File_product_inventory_proto protoreflect.FileDescriptor
var file_product_inventory_proto_rawDesc = []byte{
@@ -670,28 +977,75 @@
   0x61, 0x6c, 0x65, 0x73, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
   0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x43, 0x6f, 0x64, 0x65,
   0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03,
   0x4d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x4d, 0x73, 0x67, 0x32, 0xa1,
   0x02, 0x0a, 0x17, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74,
   0x6f, 0x72, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x46, 0x0a, 0x0f, 0x43, 0x72,
   0x65, 0x61, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x17, 0x2e,
   0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52,
   0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x18, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f,
   0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
   0x22, 0x00, 0x12, 0x5e, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f,
   0x72, 0x79, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1f, 0x2e,
   0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x64,
   0x75, 0x63, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20,
   0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x50, 0x72, 0x6f,
   0x64, 0x75, 0x63, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
   0x22, 0x00, 0x12, 0x5e, 0x0a, 0x17, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x61, 0x6c, 0x65,
   0x73, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1f, 0x2e,
   0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x61, 0x6c, 0x65, 0x73, 0x44, 0x65, 0x74, 0x61, 0x69,
   0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20,
   0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x61, 0x6c, 0x65, 0x73, 0x44, 0x65, 0x74, 0x61,
   0x69, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
   0x22, 0x00, 0x42, 0x15, 0x5a, 0x13, 0x2e, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
   0x69, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
   0x33,
   0x4d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x4d, 0x73, 0x67, 0x22, 0xf9,
   0x02, 0x0a, 0x12, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x41, 0x6e, 0x64, 0x4f, 0x75, 0x74, 0x70, 0x75,
   0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18,
   0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x12, 0x0a,
   0x04, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x4e, 0x61, 0x6d,
   0x65, 0x12, 0x20, 0x0a, 0x0b, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74,
   0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x6d, 0x6f,
   0x75, 0x6e, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x55, 0x6e, 0x69, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28,
   0x09, 0x52, 0x04, 0x55, 0x6e, 0x69, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x49, 0x6e, 0x76, 0x6f, 0x69,
   0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63,
   0x65, 0x12, 0x18, 0x0a, 0x07, 0x43, 0x61, 0x72, 0x72, 0x69, 0x65, 0x72, 0x18, 0x06, 0x20, 0x01,
   0x28, 0x09, 0x52, 0x07, 0x43, 0x61, 0x72, 0x72, 0x69, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x57,
   0x61, 0x79, 0x62, 0x69, 0x6c, 0x6c, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x57, 0x61,
   0x79, 0x62, 0x69, 0x6c, 0x6c, 0x12, 0x1c, 0x0a, 0x09, 0x53, 0x61, 0x6c, 0x65, 0x50, 0x72, 0x69,
   0x63, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x53, 0x61, 0x6c, 0x65, 0x50, 0x72,
   0x69, 0x63, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x56, 0x61, 0x6c, 0x6f, 0x72, 0x65, 0x6d, 0x18, 0x09,
   0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x56, 0x61, 0x6c, 0x6f, 0x72, 0x65, 0x6d, 0x12, 0x1c, 0x0a,
   0x09, 0x57, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
   0x52, 0x09, 0x57, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x41,
   0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x41, 0x6d, 0x6f,
   0x75, 0x6e, 0x74, 0x12, 0x25, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x0d, 0x20,
   0x01, 0x28, 0x0e, 0x32, 0x0d, 0x2e, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x53, 0x74, 0x61, 0x74,
   0x75, 0x73, 0x52, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x72,
   0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
   0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x3b, 0x0a, 0x21, 0x47, 0x65,
   0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x41, 0x6e, 0x64, 0x4f, 0x75,
   0x74, 0x70, 0x75, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
   0x16, 0x0a, 0x06, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
   0x06, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x22, 0xb2, 0x01, 0x0a, 0x22, 0x47, 0x65, 0x74, 0x4f,
   0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x41, 0x6e, 0x64, 0x4f, 0x75, 0x74, 0x70,
   0x75, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12,
   0x0a, 0x04, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x43, 0x6f,
   0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x4d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
   0x03, 0x4d, 0x73, 0x67, 0x12, 0x31, 0x0a, 0x09, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x4c, 0x69, 0x73,
   0x74, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x41,
   0x6e, 0x64, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, 0x49, 0x6e,
   0x70, 0x75, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x33, 0x0a, 0x0a, 0x4f, 0x75, 0x74, 0x70, 0x75,
   0x74, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x49, 0x6e,
   0x70, 0x75, 0x74, 0x41, 0x6e, 0x64, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x49, 0x6e, 0x66, 0x6f,
   0x52, 0x0a, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x2a, 0x25, 0x0a, 0x0c,
   0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x09, 0x0a, 0x05,
   0x52, 0x65, 0x61, 0x64, 0x79, 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x46, 0x69, 0x6e, 0x69, 0x73,
   0x68, 0x10, 0x01, 0x32, 0x8a, 0x03, 0x0a, 0x17, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49,
   0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12,
   0x46, 0x0a, 0x0f, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
   0x6f, 0x6e, 0x12, 0x17, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61,
   0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x18, 0x2e, 0x43, 0x72,
   0x65, 0x61, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73,
   0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5e, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x49, 0x6e,
   0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, 0x6e,
   0x66, 0x6f, 0x12, 0x1f, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72,
   0x79, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75,
   0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f,
   0x72, 0x79, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73,
   0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5e, 0x0a, 0x17, 0x55, 0x70, 0x64, 0x61, 0x74,
   0x65, 0x53, 0x61, 0x6c, 0x65, 0x73, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x53, 0x74, 0x61, 0x74,
   0x75, 0x73, 0x12, 0x1f, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x61, 0x6c, 0x65, 0x73,
   0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75,
   0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x61, 0x6c, 0x65,
   0x73, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73,
   0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x67, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x4f, 0x72,
   0x64, 0x65, 0x72, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x41, 0x6e, 0x64, 0x4f, 0x75, 0x74, 0x70, 0x75,
   0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x22, 0x2e, 0x47, 0x65, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72,
   0x49, 0x6e, 0x70, 0x75, 0x74, 0x41, 0x6e, 0x64, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x49, 0x6e,
   0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x47, 0x65, 0x74, 0x4f,
   0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x41, 0x6e, 0x64, 0x4f, 0x75, 0x74, 0x70,
   0x75, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
   0x42, 0x15, 0x5a, 0x13, 0x2e, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x69, 0x6e,
   0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
@@ -706,31 +1060,41 @@
   return file_product_inventory_proto_rawDescData
}
var file_product_inventory_proto_msgTypes = make([]protoimpl.MessageInfo, 8)
var file_product_inventory_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
var file_product_inventory_proto_msgTypes = make([]protoimpl.MessageInfo, 11)
var file_product_inventory_proto_goTypes = []interface{}{
   (*CreateOperationRequest)(nil),          // 0: CreateOperationRequest
   (*InventoryProduct)(nil),                // 1: InventoryProduct
   (*CreateOperationResponse)(nil),         // 2: CreateOperationResponse
   (*GetInventoryProductInfoRequest)(nil),  // 3: GetInventoryProductInfoRequest
   (*ProductInfo)(nil),                     // 4: ProductInfo
   (*GetInventoryProductInfoResponse)(nil), // 5: GetInventoryProductInfoResponse
   (*UpdateSalesDetailStatusRequest)(nil),  // 6: UpdateSalesDetailStatusRequest
   (*UpdateSalesDetailStatusResponse)(nil), // 7: UpdateSalesDetailStatusResponse
   (FinishStatus)(0),                          // 0: FinishStatus
   (*CreateOperationRequest)(nil),             // 1: CreateOperationRequest
   (*InventoryProduct)(nil),                   // 2: InventoryProduct
   (*CreateOperationResponse)(nil),            // 3: CreateOperationResponse
   (*GetInventoryProductInfoRequest)(nil),     // 4: GetInventoryProductInfoRequest
   (*ProductInfo)(nil),                        // 5: ProductInfo
   (*GetInventoryProductInfoResponse)(nil),    // 6: GetInventoryProductInfoResponse
   (*UpdateSalesDetailStatusRequest)(nil),     // 7: UpdateSalesDetailStatusRequest
   (*UpdateSalesDetailStatusResponse)(nil),    // 8: UpdateSalesDetailStatusResponse
   (*InputAndOutputInfo)(nil),                 // 9: InputAndOutputInfo
   (*GetOrderInputAndOutputInfoRequest)(nil),  // 10: GetOrderInputAndOutputInfoRequest
   (*GetOrderInputAndOutputInfoResponse)(nil), // 11: GetOrderInputAndOutputInfoResponse
}
var file_product_inventory_proto_depIdxs = []int32{
   1, // 0: CreateOperationRequest.ProductList:type_name -> InventoryProduct
   4, // 1: GetInventoryProductInfoResponse.ProductList:type_name -> ProductInfo
   0, // 2: productInventoryService.CreateOperation:input_type -> CreateOperationRequest
   3, // 3: productInventoryService.GetInventoryProductInfo:input_type -> GetInventoryProductInfoRequest
   6, // 4: productInventoryService.UpdateSalesDetailStatus:input_type -> UpdateSalesDetailStatusRequest
   2, // 5: productInventoryService.CreateOperation:output_type -> CreateOperationResponse
   5, // 6: productInventoryService.GetInventoryProductInfo:output_type -> GetInventoryProductInfoResponse
   7, // 7: productInventoryService.UpdateSalesDetailStatus:output_type -> UpdateSalesDetailStatusResponse
   5, // [5:8] is the sub-list for method output_type
   2, // [2:5] is the sub-list for method input_type
   2, // [2:2] is the sub-list for extension type_name
   2, // [2:2] is the sub-list for extension extendee
   0, // [0:2] is the sub-list for field type_name
   2,  // 0: CreateOperationRequest.ProductList:type_name -> InventoryProduct
   5,  // 1: GetInventoryProductInfoResponse.ProductList:type_name -> ProductInfo
   0,  // 2: InputAndOutputInfo.Status:type_name -> FinishStatus
   9,  // 3: GetOrderInputAndOutputInfoResponse.InputList:type_name -> InputAndOutputInfo
   9,  // 4: GetOrderInputAndOutputInfoResponse.OutputList:type_name -> InputAndOutputInfo
   1,  // 5: productInventoryService.CreateOperation:input_type -> CreateOperationRequest
   4,  // 6: productInventoryService.GetInventoryProductInfo:input_type -> GetInventoryProductInfoRequest
   7,  // 7: productInventoryService.UpdateSalesDetailStatus:input_type -> UpdateSalesDetailStatusRequest
   10, // 8: productInventoryService.GetOrderInputAndOutputInfo:input_type -> GetOrderInputAndOutputInfoRequest
   3,  // 9: productInventoryService.CreateOperation:output_type -> CreateOperationResponse
   6,  // 10: productInventoryService.GetInventoryProductInfo:output_type -> GetInventoryProductInfoResponse
   8,  // 11: productInventoryService.UpdateSalesDetailStatus:output_type -> UpdateSalesDetailStatusResponse
   11, // 12: productInventoryService.GetOrderInputAndOutputInfo:output_type -> GetOrderInputAndOutputInfoResponse
   9,  // [9:13] is the sub-list for method output_type
   5,  // [5:9] is the sub-list for method input_type
   5,  // [5:5] is the sub-list for extension type_name
   5,  // [5:5] is the sub-list for extension extendee
   0,  // [0:5] is the sub-list for field type_name
}
func init() { file_product_inventory_proto_init() }
@@ -835,19 +1199,56 @@
            return nil
         }
      }
      file_product_inventory_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
         switch v := v.(*InputAndOutputInfo); i {
         case 0:
            return &v.state
         case 1:
            return &v.sizeCache
         case 2:
            return &v.unknownFields
         default:
            return nil
         }
      }
      file_product_inventory_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
         switch v := v.(*GetOrderInputAndOutputInfoRequest); i {
         case 0:
            return &v.state
         case 1:
            return &v.sizeCache
         case 2:
            return &v.unknownFields
         default:
            return nil
         }
      }
      file_product_inventory_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
         switch v := v.(*GetOrderInputAndOutputInfoResponse); i {
         case 0:
            return &v.state
         case 1:
            return &v.sizeCache
         case 2:
            return &v.unknownFields
         default:
            return nil
         }
      }
   }
   type x struct{}
   out := protoimpl.TypeBuilder{
      File: protoimpl.DescBuilder{
         GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
         RawDescriptor: file_product_inventory_proto_rawDesc,
         NumEnums:      0,
         NumMessages:   8,
         NumEnums:      1,
         NumMessages:   11,
         NumExtensions: 0,
         NumServices:   1,
      },
      GoTypes:           file_product_inventory_proto_goTypes,
      DependencyIndexes: file_product_inventory_proto_depIdxs,
      EnumInfos:         file_product_inventory_proto_enumTypes,
      MessageInfos:      file_product_inventory_proto_msgTypes,
   }.Build()
   File_product_inventory_proto = out.File