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
660b994a
Commit
660b994a
authored
Dec 14, 2018
by
zw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
带看列表显示商铺地址
parent
055f9c50
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
OrderLogService.php
application/api_broker/service/OrderLogService.php
+1
-1
ReportService.php
application/api_broker/service/ReportService.php
+1
-1
OrderModel.php
application/model/OrderModel.php
+1
-0
No files found.
application/api_broker/service/OrderLogService.php
View file @
660b994a
...
...
@@ -372,7 +372,7 @@ class OrderLogService
{
$orderModel
=
new
OrderModel
();
$field
=
"a.id,a.order_no,a.house_id,a.house_title,b.id as report_id,b.user_id,c.user_name as user_nick,c.user_phone,
c.user_pic,c.sex"
;
c.user_pic,c.sex
,d.internal_address as house_address
"
;
$result
=
$orderModel
->
selectOrderDetail
(
$field
,
$where_
);
foreach
(
$result
as
$k
=>
$v
)
{
//$result[$k]["user_phone"] = preg_replace('/(\d{3})\d{4}(\d{4})/','$1****$2',$v["user_phone"]);
...
...
application/api_broker/service/ReportService.php
View file @
660b994a
...
...
@@ -281,7 +281,7 @@ class ReportService
{
$houseModel
=
new
GHouses
();
$params
[
"id"
]
=
array
(
"in"
,(
$house_id_str
));
return
$houseModel
->
getHouseInfo
(
"id,internal_
title
"
,
$params
);
return
$houseModel
->
getHouseInfo
(
"id,internal_
address
"
,
$params
);
}
public
function
signTitle
(
$type
)
...
...
application/model/OrderModel.php
View file @
660b994a
...
...
@@ -101,6 +101,7 @@ class OrderModel extends Model
->
alias
(
"a"
)
->
join
(
"o_report b"
,
"a.f_id = b.id"
,
"left"
)
->
join
(
"u_users c"
,
"b.user_id = c.id"
,
"left"
)
->
join
(
"g_houses d"
,
"d.id = a.house_id"
,
"left"
)
->
where
(
$where_
)
->
select
();
}
...
...
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