main
Last change
on this file since 057453c was 057453c, checked in by Naum Shapkarovski <naumshapkarovski@…>, 5 weeks ago |
feat: implement employees
|
-
Property mode
set to
100644
|
File size:
312 bytes
|
Line | |
---|
1 | import { Invoice } from 'src/schemas';
|
---|
2 |
|
---|
3 | export const getQuantityType = (invoice: Invoice) => {
|
---|
4 | if (invoice.quantityType === 'Hour') {
|
---|
5 | return 'Hour';
|
---|
6 | }
|
---|
7 | if (invoice.quantityType === 'Sprint') {
|
---|
8 | return 'Sprint';
|
---|
9 | }
|
---|
10 | if (invoice.quantityType === 'Month') {
|
---|
11 | return 'Month';
|
---|
12 | }
|
---|
13 | return 'Qty';
|
---|
14 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.