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
59755d3a
Commit
59755d3a
authored
Aug 02, 2019
by
hujun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
field
parent
e52cd562
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
Finance.php
application/index/controller/Finance.php
+1
-1
OfficePayLog.php
application/index/controller/OfficePayLog.php
+1
-1
OfficeORefundModel.php
application/model/OfficeORefundModel.php
+1
-1
OfficeOrderModel.php
application/model/OfficeOrderModel.php
+1
-1
No files found.
application/index/controller/Finance.php
View file @
59755d3a
...
...
@@ -4818,7 +4818,7 @@ class Finance extends Basic
$push
=
new
PushMessageService
();
$m_order
=
new
OrderModel
();
$house_title
=
$m_order
->
getOrderById
(
'house_id,house_title'
,
[
'id'
=>
$refund_data
[
0
][
'order_id'
]
]);
$house_title
=
$m_order
->
getOrderById
(
'house_id,house_title'
,
$refund_data
[
0
][
'order_id'
]);
$record_data
[
'message'
]
=
'['
.
$house_title
[
'house_title'
]
.
']退款被驳回,驳回原因:'
.
$save_data
[
'remark'
];
$record_data
[
'order_id'
]
=
$refund_data
[
0
][
'order_id'
];
$push
->
record
(
14
,
$house_title
[
'house_id'
],
[
$refund_data
[
0
][
'agent_id'
]],
$this
->
userId
,
$record_data
);
...
...
application/index/controller/OfficePayLog.php
View file @
59755d3a
...
...
@@ -2256,7 +2256,7 @@ class OfficePayLog extends Basic
$push
=
new
PushMessageService
();
$m_order
=
new
OfficeOrderModel
();
$house_title
=
$m_order
->
getOrderById
(
'house_id,house_title'
,
[
'id'
=>
$refund_data
[
0
][
'order_id'
]
]);
$house_title
=
$m_order
->
getOrderById
(
'house_id,house_title'
,
$refund_data
[
0
][
'order_id'
]);
$record_data
[
'message'
]
=
'['
.
$house_title
[
'house_title'
]
.
']退款被驳回,驳回原因:'
.
$save_data
[
'remark'
];
$record_data
[
'order_id'
]
=
$refund_data
[
0
][
'order_id'
];
$push
->
record
(
14
,
$house_title
[
'house_id'
],
[
$refund_data
[
0
][
'agent_id'
]],
$this
->
userId
,
$record_data
);
...
...
application/model/OfficeORefundModel.php
View file @
59755d3a
...
...
@@ -326,7 +326,7 @@ class OfficeORefundModel extends BaseModel{
* @return ORefundModel
*/
public
function
updateData
(
$data
,
$where
)
{
return
$this
->
where
(
$where
)
->
update
(
$data
);
return
$this
->
db_
->
where
(
$where
)
->
update
(
$data
);
}
/**
...
...
application/model/OfficeOrderModel.php
View file @
59755d3a
...
...
@@ -218,7 +218,7 @@ class OfficeOrderModel extends Model
*/
public
function
getOrderById
(
$field
,
$order_id
)
{
return
$this
->
field
(
$field
)
return
$this
->
db_
->
field
(
$field
)
->
where
(
'id'
,
$order_id
)
->
find
();
}
...
...
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