Parcourir la source

update

tags/Baseline_30082024_FRONTEND_UAT
MSI\derek il y a 1 an
Parent
révision
55a7caf8cb
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/components/CostAndExpenseReport/CostAndExpenseReport.tsx

+ 1
- 1
src/components/CostAndExpenseReport/CostAndExpenseReport.tsx Voir le fichier

@@ -21,7 +21,7 @@ type SearchParamNames = keyof SearchQuery;

const CostAndExpenseReport: React.FC<Props> = ({ team, customer, subsidiary, needAll }) => {
const { t } = useTranslation("report");
const teamCombo = team.map((t) => `${t.name} - ${t.code}`);
const teamCombo = team.map((t) => `${t.code} - ${t.name}`);
// const custCombo = customer.map(c => ({label: `${c.name} - ${c.code}`, value: c.id}))
const custCombo = customer.map(customer => ({


Chargement…
Annuler
Enregistrer