zhangqian
2024-03-14 527bc709815b9ea0f2ed14450262c9a5832c141f
proto/product_inventory.proto
@@ -34,6 +34,7 @@
message GetInventoryProductInfoRequest {
  string Number = 1;//明细单编码
  bool   GroupByWarehouse = 2; //是否按仓库分组
}
message ProductInfo{
@@ -55,8 +56,16 @@
  int32   Code = 1;
  string  Msg = 2;
  repeated ProductInfo ProductList = 3;
  repeated WarehouseProducts WarehouseProductsList = 4;
}
message WarehouseProducts {
  string WarehouseID = 1;
  string WarehouseName = 2;
  repeated ProductInfo ProductList = 3;
}
//------------------------------------------------------------
message UpdateSalesDetailStatusRequest {