Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
ydLife
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Sweet Zhang
ydLife
Commits
75a500af
Commit
75a500af
authored
Dec 23, 2021
by
sunchao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加团队长辅导津贴和续年度销售加码奖金
parent
88da3799
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
3 deletions
+21
-3
src/app/my/salary-detail/salary-detail.component.html
+8
-0
src/app/my/salary-detail/salary-detail.component.ts
+11
-1
src/app/my/salary-first-year/salary-first-year.component.ts
+2
-2
No files found.
src/app/my/salary-detail/salary-detail.component.html
View file @
75a500af
...
...
@@ -30,6 +30,10 @@
<span>
月度销售加码奖金
</span>
<span
class=
"red"
>
{{monthlySalesAddWeight.commission | number: "1.2-2"}}
<i
class=
"iconfont icon-ar-r"
></i></span>
</div>
<div
class=
"item_detail"
(
click
)="
jumpToFirstYearSales
(
continuedAnnualSalesBonus
,'续年度销售加码奖金',
1
,
2
)"
*
ngIf=
"continuedAnnualSalesBonus"
>
<span>
续年度销售加码奖金
</span>
<span
class=
"red"
>
{{continuedAnnualSalesBonus.commission | number: "1.2-2"}}
<i
class=
"iconfont icon-ar-r"
></i></span>
</div>
<div
class=
"item_detail"
(
click
)="
jumpToFirstYearSales
(
independentBrokerAllowance
,'独立经纪人展业津贴',
1
,
2
)"
*
ngIf=
"independentBrokerAllowance"
>
<span>
独立经纪人展业津贴
</span>
<span
class=
"red"
>
{{independentBrokerAllowance.commission | number: "1.2-2"}}
<i
class=
"iconfont icon-ar-r"
></i></span>
...
...
@@ -73,6 +77,10 @@
<span>
隔代辅导岗位津贴
</span>
<span
class=
"red"
>
{{indirectCounseling.commission | number: "1.2-2"}}
<i
class=
"iconfont icon-ar-r"
></i></span>
</div>
<div
class=
"item_detail"
(
click
)="
jumpToFirstYearSales
(
TLCoachingAllowance
,'团队长辅导津贴',
2
,
6
)"
*
ngIf=
"indirectCounseling"
>
<span>
团队长辅导津贴
</span>
<span
class=
"red"
>
{{TLCoachingAllowance.commission | number: "1.2-2"}}
<i
class=
"iconfont icon-ar-r"
></i></span>
</div>
<div
class=
"item_detail"
(
click
)="
jumpToFirstYearSales
(
breedingBonus
,'育成奖金',
2
,
6
)"
*
ngIf=
"breedingBonus"
>
<span>
育成奖金
</span>
<span
class=
"red"
>
{{breedingBonus.commission | number: "1.2-2"}}
<i
class=
"iconfont icon-ar-r"
></i></span>
...
...
src/app/my/salary-detail/salary-detail.component.ts
View file @
75a500af
...
...
@@ -55,6 +55,10 @@ export class SalaryDetailComponent implements OnInit {
quarterlyBonus
:
any
=
null
;
//银盾在线奖
onlineAward
:
any
=
null
;
//团队长辅导津贴
TLCoachingAllowance
:
any
=
null
;
//续年度销售加码奖金
continuedAnnualSalesBonus
:
any
=
null
;
years
:
any
;
month
:
any
;
agent_id
:
any
;
...
...
@@ -184,6 +188,8 @@ export class SalaryDetailComponent implements OnInit {
this
.
monthlySalesAddWeight
=
this
.
salaryDetailsList
[
i
];
}
else
if
(
this
.
salaryDetailsList
[
i
][
'salaryCode'
]
===
'A-004'
){
this
.
independentBrokerAllowance
=
this
.
salaryDetailsList
[
i
];
}
else
if
(
this
.
salaryDetailsList
[
i
][
'salaryCode'
]
===
'A-005'
){
this
.
continuedAnnualSalesBonus
=
this
.
salaryDetailsList
[
i
];
}
else
if
(
this
.
salaryDetailsList
[
i
][
'project_id'
]
===
'E55EC426-65E2-2AD5-4AA7-9B821396C1F4'
||
this
.
salaryDetailsList
[
i
][
'salaryCode'
]
===
'B-001'
){
this
.
fycTutorInfo
=
this
.
salaryDetailsList
[
i
];
}
else
if
(
this
.
salaryDetailsList
[
i
][
'project_id'
]
===
'F9E5ED14-7248-A5D7-490D-651399E814A6'
||
this
.
salaryDetailsList
[
i
][
'salaryCode'
]
===
'B-002'
){
...
...
@@ -198,6 +204,8 @@ export class SalaryDetailComponent implements OnInit {
this
.
indirectCounseling
=
this
.
salaryDetailsList
[
i
];
}
else
if
(
this
.
salaryDetailsList
[
i
][
'salaryCode'
]
===
'B-010'
){
this
.
breedingBonus
=
this
.
salaryDetailsList
[
i
];
}
else
if
(
this
.
salaryDetailsList
[
i
][
'salaryCode'
]
===
'B-011'
){
this
.
TLCoachingAllowance
=
this
.
salaryDetailsList
[
i
];
}
else
if
(
this
.
salaryDetailsList
[
i
][
'project_id'
]
===
'6EDF61DF-7C16-2625-9A54-D5E03CA7E6B1'
||
this
.
salaryDetailsList
[
i
][
'salaryCode'
]
===
'B-004'
){
this
.
recommendAward
=
this
.
salaryDetailsList
[
i
];
}
else
if
(
this
.
salaryDetailsList
[
i
][
'project_id'
]
===
'DDCCD63D-EE47-5953-8CA0-CFAA83CB9A5E'
||
this
.
salaryDetailsList
[
i
][
'salaryCode'
]
===
'B-005'
){
...
...
@@ -238,6 +246,8 @@ export class SalaryDetailComponent implements OnInit {
if
(
this
.
isBasic
==
1
&&
salaryName
!=
'银盾在线佣金'
){
if
(
item
.
pdfOssPath
){
window
.
open
(
item
.
pdfOssPath
)
}
else
{
this
.
router
.
navigate
([
`/salary_detail/
${
salaryType
}
`
],{
queryParams
:{
type
:
type
,
salaryName
:
salaryName
,
years
:
this
.
years
,
month
:
this
.
month
,
agent_id
:
this
.
agent_id
,
isBasic
:
this
.
isBasic
}});
}
}
else
{
this
.
router
.
navigate
([
`/salary_detail/
${
salaryType
}
`
],{
queryParams
:{
type
:
type
,
salaryName
:
salaryName
,
years
:
this
.
years
,
month
:
this
.
month
,
agent_id
:
this
.
agent_id
,
isBasic
:
this
.
isBasic
}});
...
...
@@ -259,7 +269,7 @@ export class SalaryDetailComponent implements OnInit {
this
.
rycMeritsInfo
=
this
.
recommendAward
=
this
.
systemRecommendAward
=
this
.
specialManagementAward
=
this
.
otherPreTaxDeduction
=
this
.
IncentiveBonus
=
this
.
addWeight
=
this
.
quarterlyBonus
=
this
.
onlineAward
=
this
.
monthlySalesAddWeight
=
this
.
independentBrokerAllowance
=
this
.
directCounseling
=
this
.
indirectCounseling
=
this
.
breedingBonus
=
null
;
this
.
breedingBonus
=
this
.
TLCoachingAllowance
=
this
.
continuedAnnualSalesBonus
=
null
;
}
goBack
(){
...
...
src/app/my/salary-first-year/salary-first-year.component.ts
View file @
75a500af
...
...
@@ -49,11 +49,11 @@ export class SalaryFirstYearComponent implements OnInit {
/**
* salaryTaype
* 1.首年度销售佣金-》保单
* 2.
续年度销售佣
金-》保单
* 2.
月度销售加码奖/续年度销售佣金/独立经纪人展业津贴/续年度销售加码奖
金-》保单
* 3.首年度辅导奖金-》保单
* 4.续年度辅导奖金-》保单
* 5.首年度绩效奖金-》体系
* 6.续年度绩效奖金-》体系
* 6.续年度绩效奖金
/直接辅导岗位津贴/隔代辅导岗位津贴/育成奖金/团队长辅导津贴
-》体系
* 7.推介奖金-》保单
* 8.体系推介奖金-》体系
* 9.特别管理奖金-》保单
...
...
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