-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ca9bfa1
commit fea0590
Showing
6 changed files
with
96 additions
and
68 deletions.
There are no files selected for viewing
10 changes: 3 additions & 7 deletions
10
...nt/src/app/inventory-management/invoice-tool/invoice-article/invoice-article.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,12 @@ | ||
import { Component, Input, OnInit } from '@angular/core'; | ||
import { Component, Input } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'invoice-tool-invoice-article', | ||
templateUrl: './invoice-article.component.html', | ||
}) | ||
export class InvoiceArticle implements OnInit { | ||
export class InvoiceArticle { | ||
|
||
@Input() articlename: String; | ||
@Input() articlename: string; | ||
@Input() nbarticle: number; | ||
constructor() { } | ||
|
||
ngOnInit() { | ||
} | ||
|
||
} |
8 changes: 2 additions & 6 deletions
8
...s/client/src/app/inventory-management/invoice-tool/invoice-file/invoice-file.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,11 @@ | ||
import { Component, Input, OnInit } from '@angular/core'; | ||
import { Component, Input } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'invoice-tool-invoice-file', | ||
templateUrl: './invoice-file.component.html', | ||
}) | ||
export class InvoiceFile implements OnInit { | ||
export class InvoiceFile { | ||
|
||
@Input() invoicename: string; | ||
constructor() { } | ||
|
||
ngOnInit() { | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters