Changeset 057453c for src/sections/invoice/invoice-new-edit-details.tsx
- Timestamp:
- 02/26/25 10:05:32 (5 weeks ago)
- Branches:
- main
- Children:
- 299af01
- Parents:
- 5d6f37a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sections/invoice/invoice-new-edit-details.tsx
r5d6f37a r057453c 14 14 import { fCurrency } from 'src/utils/format-number'; 15 15 // types 16 import { InvoiceItem } from ' mvpmasters-shared';16 import { InvoiceItem } from 'src/schemas'; 17 17 // components 18 18 import Iconify from 'src/components/iconify'; … … 75 75 const handleSelectService = useCallback( 76 76 (index: number, option: string) => { 77 setValue( 78 `items[${index}].price`, 79 invoiceServices.find((service) => service.id === option)?.price?.[ 80 values.quantityType?.toLowerCase() as 'sprint' | 'hour' | 'month' 81 ] 82 ); 83 setValue( 84 `items[${index}].total`, 85 values.items.map((item: InvoiceItem) => item.quantity * item.price)[index] 86 ); 77 const service = invoiceServices.find((service) => service.id === option); 78 if (!service) return; 79 80 const quantityType = values.quantityType?.toLowerCase(); 81 let price = 0; 82 83 switch (quantityType) { 84 case 'sprint': 85 price = service.sprint; 86 break; 87 case 'hour': 88 price = service.hour; 89 break; 90 case 'month': 91 price = service.month; 92 break; 93 default: 94 price = 0; 95 } 96 97 setValue(`items[${index}].price`, price); 98 setValue(`items[${index}].total`, values.items[index].quantity * price); 87 99 }, 88 100 [setValue, values.items, values.quantityType, invoiceServices]
Note:
See TracChangeset
for help on using the changeset viewer.