li.shaoyi hai 11 meses
pai
achega
d8c5864b4e
Modificáronse 4 ficheiros con 208 adicións e 3 borrados
  1. 1 1
      app/package.json
  2. 2 2
      oem/gzcj/config/appconfig.json
  3. 156 0
      public/proto/mtp.js
  4. 49 0
      public/proto/mtp.proto

+ 1 - 1
app/package.json

@@ -1,6 +1,6 @@
 {
   "name": "trading",
-  "version": "1.0.29",
+  "version": "1.0.8",
   "main": "main.js",
   "dependencies": {
     "electron-updater": "^6.1.4",

+ 2 - 2
oem/gzcj/config/appconfig.json

@@ -1,8 +1,8 @@
 {
   "appId": "com.muchinfo.gzcj",
   "appName": "贵州茶交",
-  "version": "1.0.7",
-  "versionCode": "100007",
+  "version": "1.0.8",
+  "versionCode": "100008",
   "apiUrl": "http://192.168.31.204:8080/cfg?key=test_204",
   "tradeChannel": "ws",
   "modules": [

+ 156 - 0
public/proto/mtp.js

@@ -4022,6 +4022,46 @@ var $root = ($protobuf.roots["default"] || ($protobuf.roots["default"] = new $pr
       }
     }
   },
+  UserAuditConfigChangeNtf: {
+    fields: {
+      Header: {
+        type: "MessageHead",
+        id: 1
+      },
+      NtfHeader: {
+        type: "NotifyHead",
+        id: 2
+      },
+      AccountID: {
+        type: "uint64",
+        id: 3
+      },
+      UserID: {
+        type: "uint32",
+        id: 4
+      },
+      GoodsID: {
+        type: "uint64",
+        id: 5
+      },
+      GroupType: {
+        type: "uint32",
+        id: 6
+      },
+      ClosedDays: {
+        type: "int32",
+        id: 7
+      },
+      GoodsTradeType: {
+        type: "uint32",
+        id: 8
+      },
+      ChangeType: {
+        type: "uint32",
+        id: 9
+      }
+    }
+  },
   OrderReq: {
     fields: {
       Header: {
@@ -9356,6 +9396,122 @@ var $root = ($protobuf.roots["default"] || ($protobuf.roots["default"] = new $pr
       }
     }
   },
+  GoodsInventoryApplyReq: {
+    fields: {
+      Header: {
+        type: "MessageHead",
+        id: 1
+      },
+      UserID: {
+        type: "uint32",
+        id: 2
+      },
+      GoodsID: {
+        type: "uint32",
+        id: 3
+      },
+      InoutType: {
+        type: "uint32",
+        id: 4
+      },
+      Qty: {
+        type: "double",
+        id: 5
+      },
+      Remark: {
+        type: "string",
+        id: 6
+      },
+      InOutModel: {
+        type: "uint32",
+        id: 7
+      },
+      ClientSerialNo: {
+        type: "string",
+        id: 8
+      }
+    }
+  },
+  GoodsInventoryApplyRsp: {
+    fields: {
+      Header: {
+        type: "MessageHead",
+        id: 1
+      },
+      RetCode: {
+        type: "int32",
+        id: 2
+      },
+      RetDesc: {
+        type: "string",
+        id: 3
+      },
+      ApplyID: {
+        type: "uint64",
+        id: 4
+      },
+      ApplyStatus: {
+        type: "uint32",
+        id: 5
+      },
+      ClientSerialNo: {
+        type: "string",
+        id: 6
+      }
+    }
+  },
+  GoodsInventoryApplyAuditReq: {
+    fields: {
+      Header: {
+        type: "MessageHead",
+        id: 1
+      },
+      ApplyID: {
+        type: "uint64",
+        id: 2
+      },
+      UserID: {
+        type: "uint32",
+        id: 3
+      },
+      RealQty: {
+        type: "double",
+        id: 4
+      },
+      AuditID: {
+        type: "uint64",
+        id: 5
+      },
+      Remark: {
+        type: "string",
+        id: 6
+      },
+      AuditType: {
+        type: "uint32",
+        id: 7
+      }
+    }
+  },
+  GoodsInventoryApplyAuditRsp: {
+    fields: {
+      Header: {
+        type: "MessageHead",
+        id: 1
+      },
+      RetCode: {
+        type: "int32",
+        id: 2
+      },
+      RetDesc: {
+        type: "string",
+        id: 3
+      },
+      ApplyID: {
+        type: "uint64",
+        id: 4
+      }
+    }
+  },
   SubCommand: {
     fields: {
       CommandCode: {

+ 49 - 0
public/proto/mtp.proto

@@ -1196,6 +1196,18 @@ message UpdateCheckoutTimeNtf {
 		optional NotifyHead NtfHeader = 2; // NotifyHead 公共消息头
 		optional string NotifyTime = 3; // string 通知发送时间
 }
+// 用户审核配置变更通知
+message UserAuditConfigChangeNtf {
+	optional MessageHead Header = 1; // 消息头
+		optional NotifyHead NtfHeader = 2; // NotifyHead 公共消息头
+		optional uint64 AccountID = 3; // uint64 资金帐户
+		optional uint32 UserID = 4; // uint32 用户ID
+		optional uint64 GoodsID = 5; // uint64 商品ID
+		optional uint32 GroupType = 6; // uint32 个性化类型-1:开户免复审会员
+		optional int32 ClosedDays = 7; // int32 最大持仓天数(3)-1为不限
+		optional uint32 GoodsTradeType = 8; // uint32 商品交易权限类型(3)-1:可建可平
+		optional uint32 ChangeType = 9; // uint32 变更类型(增1、改2
+}
 // 交易委托请求
 message OrderReq {
 	optional MessageHead Header = 1;
@@ -2839,6 +2851,43 @@ message DeliveryCloseRsp {
 		optional string ClientSerialNo = 6; // 流水号
 		optional double TradeAmount = 7; // 交割成交货款
 }
+// 用户出入库申请请求
+message GoodsInventoryApplyReq {
+	optional MessageHead Header = 1;
+		optional uint32 UserID = 2; // 用户Id
+		optional uint32 GoodsID = 3; // 商品Id
+		optional uint32 InoutType = 4; // 出入库类型1:入库,2:出库
+		optional double Qty = 5; // 出入库数量
+		optional string Remark = 6; // 申请备注
+		optional uint32 InOutModel = 7; // 出入库方式1:邮寄,3:自提,4:配送
+		optional string ClientSerialNo = 8; // 流水号
+}
+// 用户出入库申请应答
+message GoodsInventoryApplyRsp {
+	optional MessageHead Header = 1; // 消息头
+	optional int32 RetCode = 2; // 返回码
+	optional string RetDesc = 3; // 描述信息
+		optional uint64 ApplyID = 4; // 申请单Id
+		optional uint32 ApplyStatus = 5; // 申请状态1:待审核
+		optional string ClientSerialNo = 6; // 流水号
+}
+// 用户出入库审核请求
+message GoodsInventoryApplyAuditReq {
+	optional MessageHead Header = 1;
+		optional uint64 ApplyID = 2; // 申请单Id
+		optional uint32 UserID = 3; // 用户Id
+		optional double RealQty = 4; // 实际数量
+		optional uint64 AuditID = 5; // 审核人Id
+		optional string Remark = 6; // 审核备注
+		optional uint32 AuditType = 7; // 审核类型1:通过,2:拒绝
+}
+// 用户出入库审核应答
+message GoodsInventoryApplyAuditRsp {
+	optional MessageHead Header = 1; // 消息头
+	optional int32 RetCode = 2; // 返回码
+	optional string RetDesc = 3; // 描述信息
+		optional uint64 ApplyID = 4; // 申请单Id
+}
 // 账户操作子指令
 message SubCommand {
 		optional uint32 CommandCode = 1; // 子指令操作码