Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
PERFORMA_REPLICA
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Muhammad Usman
PERFORMA_REPLICA
Commits
9c0ca0e0
Commit
9c0ca0e0
authored
Aug 03, 2020
by
Muhammad Usman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
work history view added for job
parent
9b4dd3b1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
43 additions
and
6 deletions
+43
-6
job-details.component.ts
...-career-web/jobs/job/job-details/job-details.component.ts
+1
-1
job-work-history.component.html
...jobs/job/job-work-history/job-work-history.component.html
+25
-3
job-work-history.component.ts
...b/jobs/job/job-work-history/job-work-history.component.ts
+17
-2
No files found.
frontend/angular/src/app/my-career-web/jobs/job/job-details/job-details.component.ts
View file @
9c0ca0e0
...
...
@@ -128,7 +128,7 @@ export class JobDetailsComponent extends JobBaseComponent implements OnInit {
this
.
router
.
navigate
([
`my-career-web/jobs`
]);
}
else
{
if
(
this
.
selectedProfileType
===
'customize'
||
this
.
isEditMode
)
{
console
.
log
(
'REDIRECT PERSONAL'
);
this
.
router
.
navigate
([
`/my-career-web/jobs/
${
this
.
applicantJobId
}
/personal-details`
]
);
}
else
if
(
this
.
selectedProfileType
===
'same'
)
{
console
.
log
(
'REDIRECT TO LETTER'
);
}
...
...
frontend/angular/src/app/my-career-web/jobs/job/job-work-history/job-work-history.component.html
View file @
9c0ca0e0
<p>
job-work-history works!
</p>
<div
class=
"mc-page"
>
<app-mc-page-header>
</app-mc-page-header>
<div
class=
"mc-page-body container"
>
<div
class=
"mc-page-body-heading"
style=
"margin-bottom: 16px;"
>
Career Profile for {{applicantJob?.JobTitle}} at {{applicantJob?.Employer}}
</div>
<div
class=
"mc-card position-relative"
>
<app-overlay
[
isActive
]="
isLoading
"
></app-overlay>
<div
class=
"d-flex justify-content-between mt-3"
>
<button
pButton
label=
"Save and Exit"
class=
"mc-btn-secondary"
(
click
)="
next
('
exit
')"
>
</button>
<button
pButton
[
label
]="
completedView
?
'
Done
'
:
'
Proceed
to
work
history
'"
class=
"mc-btn-primary"
(
click
)="
next
('
proceed
')"
>
</button>
</div>
</div>
</div>
</div>
frontend/angular/src/app/my-career-web/jobs/job/job-work-history/job-work-history.component.ts
View file @
9c0ca0e0
import
{
Component
,
OnInit
}
from
'@angular/core'
;
import
{
ActivatedRoute
}
from
'@angular/router'
;
import
{
UtilsService
}
from
'../../../../oneit/services/utils.service'
;
import
{
JobBaseComponent
}
from
'../../../base/job-base.component'
;
import
{
JobService
}
from
'../../../services/job.service'
;
@
Component
({
selector
:
'app-job-work-history'
,
templateUrl
:
'./job-work-history.component.html'
,
styleUrls
:
[
'./job-work-history.component.scss'
]
})
export
class
JobWorkHistoryComponent
implements
OnInit
{
export
class
JobWorkHistoryComponent
extends
JobBaseComponent
implements
OnInit
{
constructor
()
{
}
constructor
(
activatedRoute
:
ActivatedRoute
,
jobService
:
JobService
,
utilsService
:
UtilsService
)
{
super
(
activatedRoute
,
jobService
,
utilsService
);
}
ngOnInit
()
{
super
.
ngOnInit
();
}
jobLoaded
():
void
{
//
}
}
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