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
97a03495
Commit
97a03495
authored
Sep 03, 2019
by
hujun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
dcc859d3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
OfficePayLog.php
application/index/controller/OfficePayLog.php
+2
-2
PrivacyNumber.php
application/task/controller/PrivacyNumber.php
+1
-0
No files found.
application/index/controller/OfficePayLog.php
View file @
97a03495
...
...
@@ -1986,7 +1986,7 @@ class OfficePayLog extends Basic
}
if
(
!
empty
(
$this
->
params
[
'address'
]))
{
$house_id
=
$m_house
->
getHouseColumn
(
'id'
,
[
'internal_address'
=>
[
'LIKE'
,
'%'
.
trim
(
$this
->
params
[
'address'
])
.
'%'
]]);
$house_id
=
$m_house
->
getHouseColumn
(
'
a.
id'
,
[
'internal_address'
=>
[
'LIKE'
,
'%'
.
trim
(
$this
->
params
[
'address'
])
.
'%'
]]);
if
(
isset
(
$where
[
'b.house_id'
]))
{
$house_id
[]
=
$where
[
'b.house_id'
];
...
...
@@ -2054,7 +2054,7 @@ class OfficePayLog extends Basic
if
(
isset
(
$house_id
))
{
$house_id
=
array_unique
(
$house_id
);
$house_id
=
array_filter
(
$house_id
);
$house_data
=
$m_house
->
getHouseColumn
(
'
id,internal_address'
,
[
'
id'
=>
[
'in'
,
$house_id
]]);
$house_data
=
$m_house
->
getHouseColumn
(
'
a.id,b.address'
,
[
'a.
id'
=>
[
'in'
,
$house_id
]]);
}
else
{
$house_data
=
[];
}
...
...
application/task/controller/PrivacyNumber.php
View file @
97a03495
...
...
@@ -645,6 +645,7 @@ class PrivacyNumber
* 释放不需要的号码
*/
public
function
releasePhoneB
()
{
set_time_limit
(
0
);
if
(
empty
(
$_GET
[
'phone_x'
]))
{
return
Response
::
create
([
'code'
=>
101
,
'msg'
=>
'参数错误'
,
'data'
=>
''
],
'json'
);
}
...
...
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