source: src/utils/get-invoice-quantity-type.ts@ 5d6f37a

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 
1import { Invoice } from 'mvpmasters-shared';
2
3export 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.