瀏覽代碼

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


Loading…
取消
儲存