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
ba13d3e8
Commit
ba13d3e8
authored
Aug 17, 2018
by
hujun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
财务路由修改
parent
fa63bf67
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
9 deletions
+8
-9
OBargainModel.php
application/model/OBargainModel.php
+2
-3
route.php
application/route.php
+6
-6
No files found.
application/model/OBargainModel.php
View file @
ba13d3e8
...
...
@@ -392,18 +392,17 @@ class OBargainModel extends Model
$save_data
[
'audit_id'
]
=
$data
[
'audit_id'
];
$save_data
[
'audit_name'
]
=
$data
[
'audit_name'
];
$return
=
0
;
$audit_level
=
$data
[
'audit_level'
]
-
1
;
//是否有审核记录,只做一次审核。
if
(
isset
(
$audit_data
[
'id'
]))
{
//第二、三审核
if
(
$audit_data
[
'audit_level'
]
==
$
audit_level
)
{
if
(
$audit_data
[
'audit_level'
]
==
$
data
[
'audit_level'
]
)
{
$save_data
[
'audit_level'
]
=
$data
[
'audit_level'
];
$return
=
$audit
->
addAudit
(
$save_data
);
}
}
else
{
//第一步审核
if
(
$data
[
'audit_level'
]
==
"0"
)
{
if
(
$data
[
'audit_level'
]
==
1
)
{
$save_data
[
'audit_level'
]
=
0
;
$return
=
$audit
->
addAudit
(
$save_data
);
}
...
...
application/route.php
View file @
ba13d3e8
...
...
@@ -208,12 +208,12 @@ Route::group('index', [
'refundListMajordomo/:check_status'
=>
[
'index/Finance/refundList'
,
[
'method'
=>
'get|post'
],
[
'check_status'
=>
2
]
],
//退款列表-总监审核
'refundListCashier/:check_status'
=>
[
'index/Finance/refundList'
,
[
'method'
=>
'get|post'
],
[
'check_status'
=>
3
]
],
//退款列表-出纳审核
'refundOrderList'
=>
[
'index/Finance/refundOrderList'
,
[
'method'
=>
'get'
]
],
//财务 已退款
'checkReportAttache/:check_status'
=>
[
'index/Finance/checkReport'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
0
]
],
//审核成交报告-第一级审核
'checkReportManager/:check_status'
=>
[
'index/Finance/checkReport'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
1
]
],
//审核成交报告-第二级审核
'checkReportMajordomo/:check_status'
=>
[
'index/Finance/checkReport'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
2
]
],
//审核成交报告-第三级审核
'checkBackOutOne/:check_status'
=>
[
'index/Finance/checkReport'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
0
]
],
//审核撤销成交报告-第一级审核
'checkBackOutTwo/:check_status'
=>
[
'index/Finance/checkReport'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
1
]
],
//审核撤销成交报告-第二级审核
'checkBackOutThree/:check_status'
=>
[
'index/Finance/checkReport'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
2
]
],
//审核撤销成交报告-第三级审核
'checkReportAttache/:check_status'
=>
[
'index/Finance/checkReport'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
1
]
],
//审核成交报告-第一级审核
'checkReportManager/:check_status'
=>
[
'index/Finance/checkReport'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
2
]
],
//审核成交报告-第二级审核
'checkReportMajordomo/:check_status'
=>
[
'index/Finance/checkReport'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
3
]
],
//审核成交报告-第三级审核
'checkBackOutOne/:check_status'
=>
[
'index/Finance/checkReport'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
1
]
],
//审核撤销成交报告-第一级审核
'checkBackOutTwo/:check_status'
=>
[
'index/Finance/checkReport'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
2
]
],
//审核撤销成交报告-第二级审核
'checkBackOutThree/:check_status'
=>
[
'index/Finance/checkReport'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
3
]
],
//审核撤销成交报告-第三级审核
'overRuleAttache/:check_status'
=>
[
'index/Finance/overRule'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
0
]
],
//退款审核-驳回-专员审核
'overRuleManager/:check_status'
=>
[
'index/Finance/overRule'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
1
]
],
//退款审核-驳回-经理审核
'overRuleMajordomo/:check_status'
=>
[
'index/Finance/overRule'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
2
]
],
//退款审核-驳回-总监审核
...
...
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