main
Last change
on this file was 057453c, checked in by Naum Shapkarovski <naumshapkarovski@…>, 6 weeks ago |
feat: implement employees
|
-
Property mode
set to
100644
|
File size:
312 bytes
|
Rev | Line | |
---|
[057453c] | 1 | import { Invoice } from 'src/schemas';
|
---|
[5d6f37a] | 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.