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
739f83cd
Commit
739f83cd
authored
Jul 24, 2019
by
hujun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
恢复方法
parent
87d50ce8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
0 deletions
+27
-0
StoreFeeService.php
application/api_broker/service/StoreFeeService.php
+27
-0
No files found.
application/api_broker/service/StoreFeeService.php
View file @
739f83cd
...
...
@@ -620,4 +620,30 @@ class StoreFeeService
return
round
(
$total
*
100
)
*
0.01
;
}
/**
* 新增费用审核
*
* @param $data
* @param $img_id
* @return int|string
*/
public
function
saveImageData
(
$data
,
$img_id
)
{
$num
=
0
;
foreach
(
$data
as
$k
=>
$v
)
{
if
(
empty
(
$v
))
{
continue
;
}
$save_data
[
$k
][
'img_id'
]
=
$img_id
;
$save_data
[
$k
][
'img_name'
]
=
$v
;
$save_data
[
$k
][
'img_type'
]
=
1
;
}
if
(
isset
(
$save_data
))
{
$num
=
$this
->
imgModel
->
insertDataAll
(
$save_data
);
}
return
$num
;
}
}
\ 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