Procházet zdrojové kódy

no message

reset-do-picking-order
kelvin.yau před 6 měsíci
rodič
revize
5e4c8c46e7
2 změnil soubory, kde provedl 4 přidání a 4 odebrání
  1. +2
    -2
      src/app/(main)/chart/delivery/page.tsx
  2. +2
    -2
      src/app/(main)/chart/warehouse/page.tsx

+ 2
- 2
src/app/(main)/chart/delivery/page.tsx Zobrazit soubor

@@ -361,12 +361,12 @@ export default function DeliveryChartPage() {
</Typography> </Typography>
<ApexCharts <ApexCharts
options={{ options={{
chart: { type: "bar" },
chart: { type: "bar", stacked: true },
xaxis: { xaxis: {
categories: Array.from(new Set(chartData.staffPerf.map((r) => r.date))).sort(), categories: Array.from(new Set(chartData.staffPerf.map((r) => r.date))).sort(),
}, },
yaxis: { title: { text: "單數" } }, yaxis: { title: { text: "單數" } },
plotOptions: { bar: { columnWidth: "60%", stacked: true } },
plotOptions: { bar: { columnWidth: "60%" } },
dataLabels: { enabled: false }, dataLabels: { enabled: false },
legend: { position: "top" }, legend: { position: "top" },
}} }}


+ 2
- 2
src/app/(main)/chart/warehouse/page.tsx Zobrazit soubor

@@ -329,10 +329,10 @@ export default function WarehouseChartPage() {
) : chartData.consumptionByItems ? ( ) : chartData.consumptionByItems ? (
<ApexCharts <ApexCharts
options={{ options={{
chart: { type: "bar" },
chart: { type: "bar", stacked: false },
xaxis: { categories: chartData.consumptionByItems.months }, xaxis: { categories: chartData.consumptionByItems.months },
yaxis: { title: { text: "出庫量" } }, yaxis: { title: { text: "出庫量" } },
plotOptions: { bar: { columnWidth: "60%", stacked: false } },
plotOptions: { bar: { columnWidth: "60%" } },
dataLabels: { enabled: false }, dataLabels: { enabled: false },
legend: { position: "top" }, legend: { position: "top" },
}} }}


Načítá se…
Zrušit
Uložit