Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tl_estate
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hujun
tl_estate
Commits
f66921b2
Commit
f66921b2
authored
Feb 08, 2018
by
clone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增顾客模块
parent
2b6c71ee
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
290 additions
and
118 deletions
+290
-118
Client.php
application/api_broker/controller/Client.php
+26
-0
OrderLog.php
application/api_broker/controller/OrderLog.php
+103
-60
Report.php
application/api_broker/controller/Report.php
+23
-24
Basic.php
application/api_broker/extend/Basic.php
+9
-8
OrderLogService.php
application/api_broker/service/OrderLogService.php
+6
-1
ReportService.php
application/api_broker/service/ReportService.php
+55
-17
AAgents.php
application/model/AAgents.php
+23
-2
GHouses.php
application/model/GHouses.php
+14
-0
OBargainModel.php
application/model/OBargainModel.php
+22
-2
OMarchInModel.php
application/model/OMarchInModel.php
+1
-1
OPayLogModel.php
application/model/OPayLogModel.php
+1
-1
OReportModel.php
application/model/OReportModel.php
+1
-1
OrderModel.php
application/model/OrderModel.php
+1
-1
route.php
application/route.php
+5
-0
No files found.
application/api_broker/controller/Client.php
0 → 100644
View file @
f66921b2
<?php
namespace
app\api_broker\controller
;
use
app\api_broker\extend\Basic
;
use
think\Request
;
/**
* Created by PhpStorm.
* User : zw
* Date : 2018/2/8
* Time : 11:31
* Intro:
*/
class
Client
extends
Basic
{
function
__construct
(
$request
=
null
)
{
parent
::
__construct
(
$request
);
}
public
function
selectUser
(){
}
}
application/api_broker/controller/OrderLog.php
View file @
f66921b2
...
...
@@ -4,6 +4,7 @@ namespace app\api_broker\controller;
use
app\api_broker\extend\Basic
;
use
app\api_broker\service\OrderLogService
;
use
app\model\OBargainModel
;
use
app\model\OMarchInModel
;
use
app\model\ORefundModel
;
...
...
@@ -40,16 +41,17 @@ class OrderLog extends Basic
||
!
isset
(
$params
[
"order_id"
])
||
!
isset
(
$params
[
"order_no"
]))
{
return
$this
->
response
(
"101"
,
"请求参数错误"
);
}
/* $params = array(
"reception_id" => 1,//带看经纪人id
"report_id" => 1,//报备id
"order_id" =>1, //关联order表id
"order_no" =>1, //订单no
"march_in_remark" =>1, //进场备注
"march_in_img" =>1, //备注图片
"march_in_area" =>1, //进场地址
);*/
$is_ok
=
$this
->
o_march_in_model
->
addMarchIn
(
$params
);
/* $params = array(
"reception_id" => 1,//带看经纪人id
"report_id" => 1,//报备id
"order_id" =>1, //关联order表id
"order_no" =>"123123123123123", //订单no
"march_in_remark" =>"有意向购买", //进场备注
"march_in_img" =>"123123", //备注图片
"march_in_area" =>"上海市虹口区中山公园", //进场地址
);*/
$params
[
"reception_id"
]
=
$this
->
agentName
;
$is_ok
=
$this
->
o_march_in_model
->
addMarchIn
(
$params
);
if
(
$is_ok
>
0
)
{
return
$this
->
response
(
"200"
,
"request success"
,
[]);
}
else
{
...
...
@@ -70,22 +72,22 @@ class OrderLog extends Basic
||
!
isset
(
$params
[
"industry_type"
]))
{
return
$this
->
response
(
"101"
,
"请求参数错误"
);
}
/* $params = array(
"agent_id" => 1,//收款经纪人id
"report_id" =>
1,//报备id
"order_id" => 1
, //关联order表id
"order_no" => 1
, //订单no
// `type` '付款类型 10意向金 20定金 30保管金 40押金 50 租金 60 进场费 70转让费 80其他',
//`pay_type` '支付方式 10支付宝 20 微信 30pos机器 40转账 50现金',
// `money` '入账金额 存分',
"collecting_bill" => [ [ "type" => 10, "pay_type" => 10, "money" => 1100 ], [ "type" => 10, "pay_type" => 10, "money" => 1200 ] ],
"house_number" => "3301号",
"industry_type" => "asdasdasd",
"remark" => "没什么备注",
"transfer_img" => "12312312312"
);*/
/*
$params = array(
"agent_id" => 1,//收款经纪人id
"report_id" => 11
1,//报备id
"order_id" => 2
, //关联order表id
"order_no" => "123123123"
, //订单no
// `type` '付款类型 10意向金 20定金 30保管金 40押金 50 租金 60 进场费 70转让费 80其他',
//`pay_type` '支付方式 10支付宝 20 微信 30pos机器 40转账 50现金',
// `money` '入账金额 存分',
"collecting_bill" => [ [ "type" => 10, "pay_type" => 10, "money" => 1100 ], [ "type" => 10, "pay_type" => 10, "money" => 1200 ] ],
"house_number" => "3301号",
"industry_type" => "asdasdasd",
"remark" => "没什么备注",
"transfer_img" => "12312312312"
);*/
$remark
=
isset
(
$params
[
"remark"
])
?
$params
[
"remark"
]
:
""
;
$transfer_img
=
isset
(
$params
[
"transfer_img"
])
?
$params
[
"transfer_img"
]
:
""
;
...
...
@@ -110,18 +112,18 @@ class OrderLog extends Basic
||
!
isset
(
$params
[
"refund_money"
]))
{
return
$this
->
response
(
"101"
,
"请求参数错误"
);
}
/* $params = array(
"agent_id" => 1,//退款经纪人id
"report_id" => 1,//报备id
"order_id" => 1, //关联order表id
"order_no" => 1
, //订单no
"refund_money" => 1200, //退款金额 存分
"name" => "qweqwe", //收款人姓名
"bank" => "asdasdasd", //收款人银行
"card_no" => "123123123123", //银行卡号
"remark" => "没什么备注",
"remark_img" => "12312312312"
);*/
/*
$params = array(
"agent_id" => 1,//退款经纪人id
"report_id" => 1,//报备id
"order_id" => 1, //关联order表id
"order_no" => "12312312312312"
, //订单no
"refund_money" => 1200, //退款金额 存分
"name" => "qweqwe", //收款人姓名
"bank" => "asdasdasd", //收款人银行
"card_no" => "123123123123", //银行卡号
"remark" => "没什么备注",
"remark_img" => "12312312312"
);*/
//todo 判断此单是否有付款
$is_ok
=
$this
->
o_refund_model
->
addRefund
(
$params
);
if
(
$is_ok
>
0
)
{
...
...
@@ -144,24 +146,24 @@ class OrderLog extends Basic
||
!
isset
(
$params
[
"commission_arr"
][
0
][
"scale"
])
||
!
isset
(
$params
[
"commission_arr"
][
0
][
"scale_fee"
]))
{
return
$this
->
response
(
"101"
,
"请求参数错误"
);
}
/*
$params = array(
"submit_agent_id" => 1,//申请经纪人id
"report_id" => 1,//报备id
"order_id" => 1, //关联order表id
"order_no" => 1
, //订单no
"trade_type" => 1
, //成交类型 10出租 20 增佣 30 代理 40 好处费
"price" =>
1, //成交价格 存分
"commission" =>
1, //佣金 存分
//`role` '分佣方 1盘方 2客方 3 反签 4独家 5合作方',
//`agent_id`'分佣经纪人id',
//`scale`'分佣比例 如 5表示百分之5',
// `scale_fee` '应分佣金 存分 ',
"commission_arr" => [ [ "role" => 10, "agent_id" => 10, "scale" => 10, "scale_fee" => 1222 ],
[ "role" => 10, "agent_id" => 10, "scale" => 10, "scale_fee" => 122
2 ] ],
);*/
/*
$params = array(
"submit_agent_id" => 1,//申请经纪人id
"report_id" => 1,//报备id
"order_id" => 1, //关联order表id
"order_no" => "123123123"
, //订单no
"trade_type" => 10
, //成交类型 10出租 20 增佣 30 代理 40 好处费
"price" => 11213
1, //成交价格 存分
"commission" => 11
1, //佣金 存分
//`role` '分佣方 1盘方 2客方 3 反签 4独家 5合作方',
//`agent_id`'分佣经纪人id',
//`scale`'分佣比例 如 5表示百分之5',
// `scale_fee` '应分佣金 存分 ',
"commission_arr" => [ [ "role" => 10, "agent_id" => 10, "scale" => 10, "scale_fee" => 1222 ],
[ "role" => 11, "agent_id" => 12, "scale" => 13, "scale_fee" => 111
2 ] ],
);*/
$is_ok
=
$this
->
service_
->
addBargain
(
$params
[
"submit_agent_id"
],
$params
[
"report_id"
],
$params
[
"order_id"
],
$params
[
"order_no"
],
$params
[
"trade_type"
],
$params
[
"price"
],
$params
[
"commission"
],
$params
[
"commission_arr"
]);
...
...
@@ -173,15 +175,55 @@ class OrderLog extends Basic
}
public
function
selectReportAll
(){
/**
* 报备时间轴
* @return \think\Response
*/
public
function
selectReportAll
()
{
$params
=
$this
->
params
;
if
(
!
isset
(
$params
[
"order_no"
]))
{
if
(
!
isset
(
$params
[
"order_no"
]))
{
return
$this
->
response
(
"101"
,
"请求参数错误"
);
}
$params
=
array
(
"order_no"
=>
"1212312312"
,
"order_no"
=>
"1212312312"
,
);
$data
=
$this
->
service_
->
selectListByOrderNo
(
$params
[
"order_no"
]);
$data
=
$this
->
service_
->
selectListByOrderNo
(
$params
[
"order_no"
]);
}
/**
* 修改成单状态
* @return \think\Response
*/
public
function
statusBargain
()
{
$params
=
$this
->
params
;
/* $params = array(
"id" => 1,
"type" => 210 //20撤销 21已撤销 30已审核
);*/
if
(
!
isset
(
$params
[
"id"
]))
{
return
$this
->
response
(
"101"
,
"请求参数错误"
);
}
if
(
!
isset
(
$params
[
"type"
])
||
$params
[
"type"
]
!=
20
&&
$params
[
"type"
]
!=
21
&&
$params
[
"type"
]
!=
30
)
{
return
$this
->
response
(
"101"
,
"要修改的状态类型错误"
);
}
$obm
=
new
OBargainModel
();
$save_param
[
"status"
]
=
$params
[
"type"
];
$is_ok
=
$obm
->
updateBargainById
(
$params
[
"id"
],
$save_param
);
if
(
$is_ok
>
0
)
{
return
$this
->
response
(
"200"
,
"request success"
,
[
"msg"
=>
"状态修改成功"
]);
}
else
{
return
$this
->
response
(
"101"
,
"request error"
);
}
}
}
\ No newline at end of file
application/api_broker/controller/Report.php
View file @
f66921b2
...
...
@@ -37,18 +37,17 @@ class Report extends Basic
return
$this
->
response
(
"101"
,
"请求参数错误"
);
}
/* $params = array(
"report_agent_id" => 1,//报备经纪人id
"report_store_id" => 1,//门店id
"user_id" => 1,//用户id
"house_ids" => "1,2,3",//楼盘id
"vehicle" => 10,//交通工具
"intro" => "123123123",//备注
"predict_see_time" => date("Y-m-d H:i:s", time()
),//预计到看时间
);*/
/*
$params = array(
"report_agent_id" => 1,//报备经纪人id
"report_store_id" => 1,//门店id
"user_id" => 1,//用户id
"house_ids" => "1,2,3",//楼盘id
"vehicle" => 10,//交通工具
"intro" => "123123123",//备注
"predict_see_time" => time(
),//预计到看时间
);*/
//todo 检查经纪人状态 basic类做
//todo 验证用户id是否正常
$agent_id
=
$params
[
"report_agent_id"
];
$store_id
=
$params
[
"report_store_id"
];
...
...
@@ -58,7 +57,15 @@ class Report extends Basic
$intro
=
$params
[
"intro"
];
$predict_see_time
=
$params
[
"predict_see_time"
];
$is_ok
=
$this
->
service_
->
verifyReport
(
$agent_id
,
$store_id
,
$user_id
,
$house_ids
,
$vehicle
,
$intro
,
$predict_see_time
);
//todo 验证用户id是否正常
$userArr
=
$this
->
service_
->
verifyUser
(
$user_id
);
if
(
!
$userArr
)
{
return
$this
->
response
(
"101"
,
"不存在此用户"
);
}
$is_ok
=
$this
->
service_
->
verifyReport
(
$agent_id
,
$this
->
agentName
,
$store_id
,
$user_id
,
$userArr
[
"user_phone"
],
$userArr
[
"user_name"
],
$house_ids
,
$vehicle
,
$intro
,
$predict_see_time
);
if
(
$is_ok
>
0
)
{
return
$this
->
response
(
"200"
,
"request success"
,
[]);
}
else
{
...
...
@@ -68,14 +75,6 @@ class Report extends Basic
}
/**
* 根据报备的编号 进场
* @return \think\Response
*/
public
function
marchInByOrderId
()
{
return
$this
->
response
();
}
/**
* 新增跟进
...
...
@@ -83,7 +82,7 @@ class Report extends Basic
*/
public
function
addFollowUp
()
{
/*
$params = array(
$params
=
array
(
"report_id"
=>
1
,
"agent_id"
=>
12
,
"user_type"
=>
"1,2"
,
// 用户类型
...
...
@@ -98,14 +97,14 @@ class Report extends Basic
"other_area"
=>
"1,2"
,
//其他地区
"explain"
=>
"1,2"
,
//备注
"explain_img"
=>
"1,2"
//备注图
);
*/
);
$params
=
$this
->
params
;
//
$params = $this->params;
if
(
!
isset
(
$params
[
'report_id'
])
||
!
isset
(
$params
[
'agent_id'
])
||
!
isset
(
$params
[
'user_type'
])
||
!
isset
(
$params
[
'industry_type'
])
||
!
isset
(
$params
[
'area_requirement'
])
||
!
isset
(
$params
[
'price_requirement'
]))
{
return
$this
->
response
(
"101"
,
"请求参数错误"
);
}
$params
[
"agent_name"
]
=
$this
->
agentName
;
$is_ok
=
$this
->
fulModel
->
addFollowUpLog
(
$params
);
if
(
$is_ok
>
0
)
{
return
$this
->
response
(
"200"
,
"request success"
,
[]);
...
...
@@ -139,7 +138,7 @@ class Report extends Basic
if
(
isset
(
$params
[
"agent_id"
]))
{
$where_
[
"agent_id"
]
=
$params
[
"agent_id"
];
}
$result
=
$this
->
fulModel
->
selectFollowUpList
(
$field_
,
$where_
,
$order_
);
$result
=
$this
->
fulModel
->
selectFollowUpList
(
$field_
,
$where_
,
$order_
);
if
(
count
(
$result
)
>
0
)
{
return
$this
->
response
(
"200"
,
"request success"
,
$result
);
}
else
{
...
...
application/api_broker/extend/Basic.php
View file @
f66921b2
...
...
@@ -9,6 +9,7 @@ namespace app\api_broker\extend;
* Time: 9:35
* 基类
*/
use
app\model\AAgents
;
use
app\model\Users
;
use
think\Controller
;
use
think\Request
;
...
...
@@ -30,9 +31,9 @@ class Basic extends Controller
/**
* @var int userId
*/
protected
$
user
Id
;
protected
$
userNick
;
protected
$
p
hone
;
protected
$
agent
Id
;
protected
$
agentName
;
protected
$
agentP
hone
;
protected
$timeStamp_
;
protected
$filterVerify
=
array
(
...
...
@@ -81,7 +82,7 @@ class Basic extends Controller
echo
json_encode
(
array
(
"code"
=>
"300"
,
"msg"
=>
"AuthToken不能为空!"
,
"data"
=>
[],
"type"
=>
"json"
));
exit
;
}
$this
->
verify
User
Info
();
$this
->
verify
Agent
Info
();
$this
->
verifyTime
();
}
...
...
@@ -95,11 +96,11 @@ class Basic extends Controller
}
}
public
function
verify
User
Info
()
public
function
verify
Agent
Info
()
{
$
userModel
=
new
User
s
();
$
userArr
=
$userModel
->
selectUser
(
$this
->
userId
);
if
(
count
(
$
userArr
)
>
0
&&
(
$userArr
[
"id"
]
!=
$this
->
userId
||
$userArr
[
"user_phone"
]
!=
$this
->
p
hone
))
{
$
agentModel
=
new
AAgent
s
();
$
agentArr
=
$agentModel
->
getAgentById
(
"id,store_id,name,phone"
);
if
(
count
(
$
agentArr
)
>
0
&&
(
$agentArr
[
"id"
]
!=
$this
->
agentId
||
$agentArr
[
"user_phone"
]
!=
$this
->
agentP
hone
))
{
echo
json_encode
(
array
(
"code"
=>
"300"
,
"msg"
=>
"用户验证失败,重新登录!"
,
"data"
=>
[],
"type"
=>
"json"
));
exit
;
}
...
...
application/api_broker/service/OrderLogService.php
View file @
f66921b2
...
...
@@ -52,6 +52,7 @@ class OrderLogService
$house_number
,
$industry_type
,
$remark
,
$transfer_img
));
}
}
dump
(
$bill_arr
);
//todo if bill_arr not null, save database table
if
(
!
empty
(
$bill_arr
))
{
return
$this
->
payLogModel
->
addPayLog
(
$bill_arr
);
...
...
@@ -96,12 +97,14 @@ class OrderLogService
{
$bargain_arr
=
[];
foreach
(
$commission_arr
as
$commission_val
)
{
if
(
isset
(
$co
llecting
[
"role"
])
&&
isset
(
$collecting
[
"agent_id"
])
&&
isset
(
$collecting
[
"scale"
])
&&
isset
(
$collecting
[
"scale_fee"
]))
{
if
(
isset
(
$co
mmission_val
[
"role"
])
&&
isset
(
$commission_val
[
"agent_id"
])
&&
isset
(
$commission_val
[
"scale"
])
&&
isset
(
$commission_val
[
"scale_fee"
]))
{
array_push
(
$bargain_arr
,
$this
->
bargainBin
(
$commission_val
,
$submit_agent_id
,
$report_id
,
$order_id
,
$order_no
,
$trade_type
,
$price
,
$commission
));
}
}
//todo if bill_arr not null, save database table
dump
(
$bargain_arr
);
if
(
!
empty
(
$bargain_arr
))
{
return
$this
->
bargainModel
->
addBargain
(
$bargain_arr
);
}
...
...
@@ -206,4 +209,5 @@ class OrderLogService
return
array
();
}
}
\ No newline at end of file
application/api_broker/service/ReportService.php
View file @
f66921b2
...
...
@@ -2,8 +2,11 @@
namespace
app\api_broker\service
;
use
app\model\GHouses
;
use
app\model\HouseInfos
;
use
app\model\OrderModel
;
use
app\model\OReportModel
;
use
app\model\Users
;
/**
* Created by PhpStorm.
...
...
@@ -24,21 +27,44 @@ class ReportService
$this
->
orderModel
=
new
OrderModel
();
}
/**
* 验证用户信息
* @param $user_id
* @return array|null
*/
public
function
verifyUser
(
$user_id
)
{
$userResult
=
[];
$userModel
=
new
Users
();
$userArr
=
$userModel
->
selectUser
(
$user_id
,
"id,user_nick,user_phone"
);
if
(
count
(
$userArr
)
>
0
)
{
$userResult
[
"user_phone"
]
=
$userArr
[
"user_phone"
];
$userResult
[
"user_name"
]
=
$userArr
[
"user_nick"
];
}
else
{
return
null
;
}
return
$userResult
;
}
/**
* 生成报备和保存订单
* @param $agent_id
* @param $agent_name
* @param $store_id
* @param $user_id
* @param $user_phone
* @param $user_name
* @param $house_ids
* @param $vehicle
* @param $intro
* @param $predict_see_time
* @return int
*/
public
function
verifyReport
(
$agent_id
,
$
store_id
,
$user_id
,
$house_ids
,
$vehicle
,
$intro
,
$predict_see_time
)
public
function
verifyReport
(
$agent_id
,
$
agent_name
,
$store_id
,
$user_id
,
$user_phone
,
$user_name
,
$house_ids
,
$vehicle
,
$intro
,
$predict_see_time
)
{
$id
=
$this
->
reportBin
(
$agent_id
,
$store_id
,
$user_id
,
$vehicle
,
$intro
,
$predict_see_time
);
$id
=
$this
->
reportBin
(
$agent_id
,
$agent_name
,
$store_id
,
$user_id
,
$user_phone
,
$user_name
,
$vehicle
,
$intro
,
$predict_see_time
);
if
(
$id
>
0
)
{
$house_arr
=
explode
(
","
,
$house_ids
);
...
...
@@ -65,27 +91,33 @@ class ReportService
return
time
()
.
mt_rand
(
100000
,
999999
);
}
/**
* 报备主表
/**报备主表
* @param $report_agent_id
* @param $report_agent_name
* @param $report_store_id
* @param $user_id
* @param $user_phone
* @param $user_name
* @param $vehicle
* @param $intro
* @param $predict_see_time
* @return array
*/
private
function
reportBin
(
$report_agent_id
,
$report_store_id
,
$user_id
,
$vehicle
,
$intro
,
$predict_see_time
)
private
function
reportBin
(
$report_agent_id
,
$report_agent_name
,
$report_store_id
,
$user_id
,
$user_phone
,
$user_name
,
$vehicle
,
$intro
,
$predict_see_time
)
{
$param
[
"report_agent_id"
]
=
$report_agent_id
;
$param
[
"report_store_id"
]
=
$report_store_id
;
$param
[
"user_id"
]
=
$user_id
;
$param
[
"vehicle"
]
=
$vehicle
;
$param
[
"status"
]
=
0
;
$param
[
"intro"
]
=
$intro
;
$param
[
"predict_see_time"
]
=
date
(
"Y-m-d H:i:s"
,
$predict_see_time
);
$param
[
"create_time"
]
=
date
(
"Y-m-d H:i:s"
,
time
());
$param
[
"update_time"
]
=
date
(
"Y-m-d H:i:s"
,
time
());
$param
[
"report_agent_id"
]
=
$report_agent_id
;
$param
[
"report_agent_name"
]
=
$report_agent_name
;
$param
[
"report_store_id"
]
=
$report_store_id
;
$param
[
"user_id"
]
=
$user_id
;
$param
[
"user_phone"
]
=
$user_phone
;
$param
[
"user_name"
]
=
$user_name
;
$param
[
"vehicle"
]
=
$vehicle
;
$param
[
"status"
]
=
0
;
$param
[
"intro"
]
=
$intro
;
$param
[
"predict_see_time"
]
=
date
(
"Y-m-d H:i:s"
,
$predict_see_time
);
$param
[
"create_time"
]
=
date
(
"Y-m-d H:i:s"
,
time
());
$param
[
"update_time"
]
=
date
(
"Y-m-d H:i:s"
,
time
());
return
$this
->
reportModel
->
addReport
(
$param
);
}
...
...
@@ -98,9 +130,15 @@ class ReportService
*/
private
function
orderBin
(
$order_no
,
$f_id
,
$house_id
)
{
$param
[
"order_no"
]
=
$order_no
;
$param
[
"f_id"
]
=
$f_id
;
$param
[
"house_id"
]
=
$house_id
;
$houseModel
=
new
GHouses
();
$houseResult
=
$houseModel
->
getHouseDetail
(
"id,internal_title"
,[
"id"
=>
$house_id
]);
$house_title
=
count
(
$houseResult
)
>
0
&&
isset
(
$houseResult
[
"internal_title"
])
?
$houseResult
[
"internal_title"
]
:
null
;
$param
[
"order_no"
]
=
$order_no
;
$param
[
"f_id"
]
=
$f_id
;
$param
[
"house_id"
]
=
$house_id
;
$param
[
"house_title"
]
=
$house_title
;
$param
[
"create_time"
]
=
date
(
"Y-m-d H:i:s"
,
time
());
$param
[
"update_time"
]
=
date
(
"Y-m-d H:i:s"
,
time
());
return
$param
;
}
...
...
application/model/AAgents.php
View file @
f66921b2
...
...
@@ -144,10 +144,10 @@ public function saveList(){
*/
public
function
verifyUser
(
$field
,
$join
,
$params
)
{
$r
=
$this
->
field
(
$field
)
->
alias
(
'a'
)
->
join
(
$join
)
->
join
(
$join
)
->
where
(
$params
)
->
find
();
//echo $this->getLastSql();
...
...
@@ -205,4 +205,24 @@ public function saveList(){
->
count
();
}
/**
* 获取经纪人
* @param $field
* @param $params
* @return false|\PDOStatement|string|\think\Collection
*/
public
function
getAgentById
(
$field
=
"id"
,
$params
){
$where_
=
[];
if
(
isset
(
$params
[
"agent_id"
])){
$where_
[
"id"
]
=
$params
[
"agent_id"
];
}
return
$this
->
field
(
$field
)
->
where
(
$where_
)
->
select
();
}
}
\ No newline at end of file
application/model/GHouses.php
View file @
f66921b2
...
...
@@ -367,4 +367,18 @@ class GHouses extends BaseModel
}
return
$return
;
}
/**
* 获取商铺详情
* @param $field
* @param $params
* @return mixed
*/
function
getHouseDetail
(
$field
,
$params
)
{
return
$data
=
$this
->
field
(
$field
)
->
where
(
$params
)
->
find
();
}
}
application/model/OBargainModel.php
View file @
f66921b2
...
...
@@ -26,7 +26,27 @@ class OBargainModel extends Model
{
Db
::
startTrans
();
try
{
$this
->
db
->
inserAll
(
$params
);
$this
->
db_
->
insertAll
(
$params
);
Db
::
commit
();
return
1
;
}
catch
(
\Exception
$e
)
{
Db
::
rollback
();
return
0
;
}
}
/**
* 修改信息
* @param $id
* @param $params
* @return int
*/
public
function
updateBargainById
(
$id
,
$params
)
{
$params
[
"update_time"
]
=
date
(
"Y-m-d H:i:s"
,
time
());
Db
::
startTrans
();
try
{
$this
->
db_
->
where
(
'id'
,
$id
)
->
update
(
$params
);
Db
::
commit
();
return
1
;
}
catch
(
\Exception
$e
)
{
...
...
@@ -41,7 +61,7 @@ class OBargainModel extends Model
* @param $params
* @return false|\PDOStatement|string|\think\Collection
*/
public
function
selectBargainByOrderNo
(
$filed
,
$params
)
public
function
selectBargainByOrderNo
(
$filed
,
$params
)
{
$where_
=
[];
if
(
isset
(
$params
[
"report_id"
]))
{
...
...
application/model/OMarchInModel.php
View file @
f66921b2
...
...
@@ -33,7 +33,7 @@ class OMarchInModel extends Model
$params
[
"update_time"
]
=
date
(
"Y-m-d H:i:s"
,
time
());
Db
::
startTrans
();
try
{
$this
->
db
->
inser
(
$params
);
$this
->
db
_model
->
insert
(
$params
);
Db
::
commit
();
return
1
;
}
catch
(
\Exception
$e
)
{
...
...
application/model/OPayLogModel.php
View file @
f66921b2
...
...
@@ -26,7 +26,7 @@ class OPayLogModel extends Model
{
Db
::
startTrans
();
try
{
$this
->
db
->
inser
All
(
$params
);
$this
->
db
_
->
insert
All
(
$params
);
Db
::
commit
();
return
1
;
}
catch
(
\Exception
$e
)
{
...
...
application/model/OReportModel.php
View file @
f66921b2
...
...
@@ -35,7 +35,7 @@ class OReportModel extends Model
Db
::
startTrans
();
try
{
$this
->
db
->
insert
(
$params
);
$id
=
$this
->
id
;
$id
=
$this
->
db
->
getLastInsID
()
;
Db
::
commit
();
return
$id
;
}
catch
(
\Exception
$e
)
{
...
...
application/model/OrderModel.php
View file @
f66921b2
...
...
@@ -26,7 +26,7 @@ class OrderModel extends Model
{
Db
::
startTrans
();
try
{
$this
->
db
->
inser
All
(
$params
);
$this
->
db
_
->
insert
All
(
$params
);
Db
::
commit
();
return
1
;
}
catch
(
\Exception
$e
)
{
...
...
application/route.php
View file @
f66921b2
...
...
@@ -209,6 +209,10 @@ Route::group('broker', [
'addFollowUp'
=>
[
'api_broker/Report/addFollowUp'
,
[
'method'
=>
'get|post'
]
],
//新增跟进
'getFollowUpList'
=>
[
'api_broker/Report/getFollowUpList'
,
[
'method'
=>
'get|post'
]
],
'marchIn'
=>
[
'api_broker/OrderLog/marchIn'
,
[
'method'
=>
'get|post'
]
],
'collectingBill'
=>
[
'api_broker/OrderLog/collectingBill'
,
[
'method'
=>
'get|post'
]
],
'refund'
=>
[
'api_broker/OrderLog/refund'
,
[
'method'
=>
'get|post'
]
],
'bargain'
=>
[
'api_broker/OrderLog/bargain'
,
[
'method'
=>
'get|post'
]
],
'statusBargain'
=>
[
'api_broker/OrderLog/statusBargain'
,
[
'method'
=>
'get|post'
]
],
]);
//Route::miss('api/index/miss');//处理错误的url
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment