Ver código fonte

no message

reset-do-picking-order
kelvin.yau 1 semana atrás
pai
commit
5e4c8c46e7
2 arquivos alterados com 4 adições e 4 exclusões
  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 Ver arquivo

@@ -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 Ver arquivo

@@ -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" },
}} }}


Carregando…
Cancelar
Salvar