Changeset 057453c for src/sections/invoice/invoice-ee-pdf.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-ee-pdf.tsx
r5d6f37a r057453c 5 5 import { fCurrency } from 'src/utils/format-number'; 6 6 // types 7 import { Invoice } from ' mvpmasters-shared';7 import { Invoice } from 'src/schemas'; 8 8 import { createFullAddress } from 'src/utils/create-full-address'; 9 9 import { getQuantityType } from 'src/utils/get-invoice-quantity-type'; … … 229 229 <View style={styles.col6}> 230 230 <Text style={[styles.subtitle1, styles.mb4]}>Date Issued</Text> 231 <Text style={styles.body2}>{fDate(createDate .toDate())}</Text>231 <Text style={styles.body2}>{fDate(createDate)}</Text> 232 232 </View> 233 233 <View style={styles.col6}> 234 234 <Text style={[styles.subtitle1, styles.mb4]}>Due date</Text> 235 <Text style={styles.body2}>{fDate(dueDate .toDate())}</Text>235 <Text style={styles.body2}>{fDate(dueDate)}</Text> 236 236 </View> 237 237 </View>
Note:
See TracChangeset
for help on using the changeset viewer.