ソースを参照

update

tags/Baseline_30082024_FRONTEND_UAT
MSI\derek 1年前
コミット
55a7caf8cb
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/components/CostAndExpenseReport/CostAndExpenseReport.tsx

+ 1
- 1
src/components/CostAndExpenseReport/CostAndExpenseReport.tsx ファイルの表示

@@ -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 => ({


読み込み中…
キャンセル
保存