-
Notifications
You must be signed in to change notification settings - Fork 1
78 customer administration screens #101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
fdbff24
7d5d5e1
49cfc77
254aa11
f8184b4
15617dd
5a01b00
d178cf4
c41a001
6d6a4bb
586535f
a7f3b53
17026d3
c872c6e
9df55d0
825d379
0fed631
996b857
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -37,17 +37,20 @@ import { ActivityEffects } from './modules/activities-management/store/activity- | |
| import { ProjectEffects } from './modules/project-management/store/project.effects'; | ||
| import { reducers, metaReducers } from './reducers'; | ||
| import { environment } from '../environments/environment'; | ||
| import { CustomerComponent } from './modules/customer/pages/customer.component'; | ||
| import { CustomerTableListComponent } from './modules/customer/components/customer-table-list/customer-table-list.component'; | ||
| import { SearchComponent } from './modules/customer/components/search/search.component'; | ||
| // tslint:disable-next-line:import-spacing | ||
| import { ManagmentCustomerProjectsComponent } | ||
| from './modules/customer/components/managment-customer-projects/managment-customer-projects.component'; | ||
| import { InputCustomerComponent } from './modules/customer/components/input-customer/input-customer'; | ||
| import { InputProjectComponent } from './modules/customer/components/input-project/input-project.component'; | ||
| import { ProjectTableListComponent } from './modules/customer/components/project-table-list/project-table-list.component'; | ||
| import { ProjectTypeTableListComponent } from './modules/customer/components/project-type-table-list/project-type-table-list.component'; | ||
| import { InputProjectTypeComponent } from './modules/customer/components/input-project-type/input-project-type.component'; | ||
| import { CustomerComponent } from './modules/customer-managment/pages/customer.component'; | ||
| // tslint:disable-next-line: max-line-length | ||
| import { CustomerListComponent } from './modules/customer-managment/components/customer-info/components/customer-list/customer-list.component'; | ||
| import { SearchComponent } from './modules/customer-managment/components/search/search.component'; | ||
| // tslint:disable-next-line: max-line-length | ||
| import { ManagmentCustomerProjectsComponent } from './modules/customer-managment/components/managment-customer-projects/managment-customer-projects.component'; | ||
| import { CreateCustomerComponent } from './modules/customer-managment/components/customer-info/components/create-customer/create-customer'; | ||
| // tslint:disable-next-line: max-line-length | ||
| import { CreateeProjectComponent } from './modules/customer-managment/components/projects/components/create-project/createe-project.component'; | ||
| import { ProjectLiistComponent } from './modules/customer-managment/components/projects/components/project-liist/project-liist.component'; | ||
|
||
| // tslint:disable-next-line: max-line-length | ||
| import { ProjectTypeListComponent } from './modules/customer-managment/components/projects-type/components/project-type-list/project-type-list.component'; | ||
| // tslint:disable-next-line: max-line-length | ||
| import { CreateProjectTypeComponent } from './modules/customer-managment/components/projects-type/components/create-project-type/create-project-type.component'; | ||
|
|
||
| @NgModule({ | ||
| declarations: [ | ||
|
|
@@ -76,14 +79,14 @@ import { InputProjectTypeComponent } from './modules/customer/components/input-p | |
| FilterProjectPipe, | ||
| SearchProjectComponent, | ||
| CustomerComponent, | ||
| CustomerTableListComponent, | ||
| CustomerListComponent, | ||
| SearchComponent, | ||
| ManagmentCustomerProjectsComponent, | ||
| InputCustomerComponent, | ||
| InputProjectComponent, | ||
| ProjectTableListComponent, | ||
| ProjectTypeTableListComponent, | ||
| InputProjectTypeComponent, | ||
| CreateCustomerComponent, | ||
| CreateeProjectComponent, | ||
| ProjectLiistComponent, | ||
|
||
| ProjectTypeListComponent, | ||
| CreateProjectTypeComponent, | ||
| ], | ||
| imports: [ | ||
| CommonModule, | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| import { Component, OnInit } from '@angular/core'; | ||
|
|
||
| @Component({ | ||
| selector: 'app-create-customer', | ||
| templateUrl: './create-customer.html', | ||
| styleUrls: ['./create-customer.scss'], | ||
| }) | ||
| export class CreateCustomerComponent implements OnInit { | ||
|
||
| constructor() {} | ||
|
|
||
| ngOnInit(): void {} | ||
|
||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| @import '../../../../../../../styles/themes/orange-theme'; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This line is not needed, remove it. |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| import { Component, OnInit } from '@angular/core'; | ||
|
|
||
| @Component({ | ||
| selector: 'app-create-project-type', | ||
| templateUrl: './create-project-type.component.html', | ||
| styleUrls: ['./create-project-type.component.scss'], | ||
| }) | ||
| export class CreateProjectTypeComponent implements OnInit { | ||
|
||
| constructor() {} | ||
|
|
||
| ngOnInit(): void {} | ||
|
||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| @import '../../../../../../../styles/themes/orange-theme'; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you don't need to import anything here |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| import { Component, OnInit } from '@angular/core'; | ||
|
|
||
| @Component({ | ||
| selector: 'app-createe-project', | ||
| templateUrl: './createe-project.component.html', | ||
| styleUrls: ['./createe-project.component.scss'], | ||
| }) | ||
| export class CreateeProjectComponent implements OnInit { | ||
|
||
| constructor() {} | ||
|
|
||
| ngOnInit(): void {} | ||
|
||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| @import '../../../../../../../styles/themes/orange-theme'; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. not needed |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,11 +1,11 @@ | ||
| import { Component, OnInit } from '@angular/core'; | ||
|
|
||
| @Component({ | ||
| selector: 'app-project-table-list', | ||
| templateUrl: './project-table-list.component.html', | ||
| styleUrls: ['./project-table-list.component.scss'], | ||
| selector: 'app-project-liist', | ||
| templateUrl: './project-liist.component.html', | ||
| styleUrls: ['./project-liist.component.scss'], | ||
| }) | ||
| export class ProjectTableListComponent implements OnInit { | ||
| export class ProjectLiistComponent implements OnInit { | ||
|
||
| initPage3 = 1; | ||
|
|
||
| projects = [ | ||
|
|
||
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo Createe