main
Last change
on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
318 bytes
|
Line | |
---|
1 | import { Invoice } from 'mvpmasters-shared';
|
---|
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.