Skip to content

Commit

Permalink
Kostendrager veld
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasHub committed Dec 26, 2024
1 parent 2b60657 commit c0aebc8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export const defaultConsultantProperties: FullFormConfig = [
{key: 'type', component: 'ConsultantTypeSelect'},
{key: 'email', component: 'email'},
{key: 'telephone', component: 'phone'},
{key: 'accountingCode'},
];


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ export interface ConsultantModel {
telephone: string,
audit: IAudit;
active: boolean;
accountingCode: string;
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ export const getNewConsultant = (): ConsultantModel => ({
telephone: '',
active: true,
audit: {} as IAudit,
accountingCode: ''
});
2 changes: 2 additions & 0 deletions frontend/src/trans.en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export const features = {
telephone: 'Telephone nr',
createdOn: 'Created on',
active: 'Active',
accountingCode: 'Accounting code'
},
},
invoice: {
Expand Down Expand Up @@ -428,6 +429,7 @@ export const trans = {
telephone: 'Phone nr',
createdOn: 'Created on',
active: 'Active',
accountingCode: 'Accounting code'
},
},
project: {
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/trans.nl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export const features = {
telephone: 'Telefoon nr',
createdOn: 'Aangemaakt op',
active: 'Actief',
accountingCode: 'Kostendrager'
},
},
invoice: {
Expand Down Expand Up @@ -428,6 +429,7 @@ export const trans = {
telephone: 'Telefoon nr',
createdOn: 'Aangemaakt op',
active: 'Actief',
accountingCode: 'Kostendrager'
},
},
project: {
Expand Down

0 comments on commit c0aebc8

Please sign in to comment.