This commit is contained in:
2020-07-11 20:53:21 +08:00
parent ab64739382
commit ac03de0387
69 changed files with 4130 additions and 1218 deletions

View File

@@ -241,6 +241,8 @@ NetProto.cmds = {
update_customer = "update_customer", -- 更新客户信息
save_customer = "save_customer", -- 新建客户
create_followUp_record = "create_followUp_record", -- 新建跟进
load_wfTicket_Settings = "load_wfTicket_Settings", -- 工单配置信息
selectProductInfo = "selectProductInfo", -- 商品列表
}
---------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------
@@ -530,5 +532,21 @@ NetProto.send.create_followUp_record = function(followUpRecordJson, callback, ti
content.followUpRecordJson = followUpRecordJson
NetProto.sendSocket(content, callback, timeOutSec)
end
NetProto.send.load_wfTicket_Settings = function(callback, timeOutSec)
local content = {}
content.action = NetProto.cmds.load_wfTicket_Settings
content.loginNo = NetProto.loginNo
content.groupId = NetProto.groupId
NetProto.sendSocket(content, callback, timeOutSec)
end
NetProto.send.selectProductInfo = function(callback, timeOutSec)
local content = {}
content.action = NetProto.cmds.selectProductInfo
content.loginNo = NetProto.loginNo
content.groupId = NetProto.groupId
NetProto.sendSocket(content, callback, timeOutSec)
end
------------------------------------------------------
return NetProto