Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
Project
Project
Details
Activity
Releases
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
罗超
confucius
Commits
505ae0f1
Commit
505ae0f1
authored
Jun 22, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/confucius
parents
14926f7e
c672ecce
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
352 additions
and
20 deletions
+352
-20
index.js
src/api/finance/index.js
+9
-0
orderlist.vue
src/components/sale/orderlist.vue
+6
-11
cycleList.vue
src/pages/financial/cycleList.vue
+329
-0
salesCommission.vue
src/pages/financial/salesCommission.vue
+3
-8
routes.js
src/router/routes.js
+5
-1
No files found.
src/api/finance/index.js
View file @
505ae0f1
...
...
@@ -129,4 +129,13 @@ export function setSellCommissionInfo(data) {
});
}
// 财务工作台 获取周期提成 周期列表
export
function
getSellCommissionStatistics
(
data
)
{
return
request
({
url
:
'/SellCommission/GetSellCommissionStatistics'
,
method
:
'post'
,
data
});
}
src/components/sale/orderlist.vue
View file @
505ae0f1
...
...
@@ -100,12 +100,10 @@
报价单:
<span
class=
"order_OfferId"
@
click=
"goQuotation(item.OfferId)"
style=
"font-size:14px;"
>
{{item.OfferId}}
</span>
</div>
<div
style=
"color:red"
v-if=
"item.YFCommissionMoney>0"
>
应发提成:{{item.YFCommissionMoney}}
</div>
<
template
v-if=
"item.IsCommissionGive==1"
>
<div
style=
"color:red;cursor: pointer;text-decoration: underline;"
@
click=
'gourltx(item.OrderId)'
>
提成:
{{
item
.
CommissionMoney
}}
</div>
<div
style=
"color:red"
v-if=
"item.YFCommissionMoney>0"
>
应发提成:
{{
item
.
YFCommissionMoney
}}
</div>
<div
style=
"color:red;cursor: pointer;text-decoration: underline;"
@
click=
'gourltx(item.OrderId)'
>
已发提成:
{{
item
.
CommissionMoney
}}
</div>
<div
style=
"color:red"
v-if=
"item.ExtraCommissionMoney>0"
>
额外奖励实发:
{{
item
.
ExtraCommissionMoney
}}
</div>
</
template
>
<
template
>
<div
style=
"color:red;"
v-if=
"item.ExtraRewardMoney>0"
>
额外奖励:
{{
item
.
ExtraRewardMoney
}}
</div>
<div
style=
"color:red"
v-if=
"item.ExtraDeductMoney>0"
>
额外扣除:
{{
item
.
ExtraDeductMoney
}}
</div>
<div
style=
"color:red"
v-if=
"item.CommissionBack>0"
>
补交提成:
{{
item
.
CommissionBack
}}
</div>
...
...
@@ -212,11 +210,11 @@
</q-item-section>
</q-item>
<q-item
clickable
v-close-popup
v-if=
"AuthorityObj.isShowCommissionEdit&&item.IsCommissionGive==1"
>
<
!-- <
q-item clickable v-close-popup v-if="AuthorityObj.isShowCommissionEdit&&item.IsCommissionGive==1">
<q-item-section @click="upDateMoney(item,1)">
<q-item-label>修改提成</q-item-label>
</q-item-section>
</q-item>
</q-item>
-->
<q-item
clickable
v-close-popup
v-if=
"AuthorityObj.isShowRewardEdit&&isShowReward"
>
<q-item-section
@
click=
"upDateMoney(item,2)"
>
<q-item-label>
额外奖励
</q-item-label>
...
...
@@ -1291,11 +1289,8 @@
});
},
gourltx
(
OrderId
){
this
.
$router
.
push
({
path
:
'/financial/cycleOrderList'
,
query
:
{
OrderId
:
OrderId
}
this
.
OpenNewUrl
(
"/financial/cycleOrderList"
,
{
OrderId
:
OrderId
});
}
}
...
...
src/pages/financial/cycleList.vue
0 → 100644
View file @
505ae0f1
This diff is collapsed.
Click to expand it.
src/pages/financial/salesCommission.vue
View file @
505ae0f1
...
...
@@ -185,7 +185,6 @@
getSellCommissionPeriodsPageList
(
this
.
msg
).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
loading
=
false
;
this
.
tableData
=
res
.
Data
.
PageData
this
.
total
=
res
.
Data
.
Count
}
...
...
@@ -228,13 +227,9 @@
})
},
gocaiwuxiangq
(
id
){
this
.
$router
.
push
({
path
:
'/financial/financalDocument/FinancialDocumentsDetail'
,
query
:
{
"id"
:
id
,
blank
:
'y'
,
}
})
this
.
OpenNewUrl
(
"/financial/financalDocument/FinancialDocumentsDetail"
,
{
id
:
id
});
},
generalFinancacls
(
item
)
{
if
(
this
.
msg
.
SchoolId
==
-
1
){
...
...
src/router/routes.js
View file @
505ae0f1
...
...
@@ -262,7 +262,11 @@ const routes = [{
component
:
()
=>
import
(
"pages/financial/cycleOrderList.vue"
)
},
{
path
:
"/financial/cycleList"
,
//周期列表
component
:
()
=>
import
(
"pages/financial/cycleList.vue"
)
},
{
path
:
"/financial/TeamRevenueReport"
,
//营收报表
...
...
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