Changeset 057453c for src/sections/invoice/invoice-new-edit-address.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-address.tsx
r5d6f37a r057453c 7 7 import Typography from '@mui/material/Typography'; 8 8 // hooks 9 import { useGet Settings } from 'src/api/settings';9 import { useGetTenant } from 'src/api/tenant'; 10 10 import { useBoolean } from 'src/hooks/use-boolean'; 11 11 import { useResponsive } from 'src/hooks/use-responsive'; … … 32 32 const { invoiceFrom, invoiceTo } = values; 33 33 34 const { settings } = useGetSettings();34 const { settings: tenant } = useGetTenant(); 35 35 const { customers } = useGetCustomers(); 36 36 … … 100 100 </Stack> 101 101 102 { settings&& (102 {tenant && ( 103 103 <CompanyListDialog 104 104 title="Companies" … … 106 106 onClose={from.onFalse} 107 107 selected={(selectedId: string) => invoiceFrom?.id === selectedId} 108 onSelect={( company) => setValue('invoiceFrom', company)}109 list={[settings?.company, settings?.['company-ee']]}108 onSelect={(tenant) => setValue('invoiceFrom', tenant)} 109 tenant={tenant} 110 110 action={ 111 111 <Button
Note:
See TracChangeset
for help on using the changeset viewer.