- Merge Master, update packages.
Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
@@ -72,7 +72,7 @@ function ProductionBoardKanbanComponent({ data, bodyshop, refetch, insertAuditTr
|
||||
return prevBoardLanes;
|
||||
});
|
||||
setIsMoving(false);
|
||||
}, [data, bodyshop.md_ro_statuses, filter]);
|
||||
}, [data, bodyshop.md_ro_statuses, filter, statuses]);
|
||||
|
||||
const getCardByID = useCallback((data, cardId) => {
|
||||
for (const lane of data.lanes) {
|
||||
@@ -174,7 +174,7 @@ function ProductionBoardKanbanComponent({ data, bodyshop, refetch, insertAuditTr
|
||||
setIsMoving(false);
|
||||
}
|
||||
},
|
||||
[boardLanes, client, getCardByID, isMoving, t]
|
||||
[boardLanes, client, getCardByID, isMoving, t, insertAuditTrail]
|
||||
);
|
||||
|
||||
const totalHrs = useMemo(
|
||||
@@ -216,7 +216,8 @@ function ProductionBoardKanbanComponent({ data, bodyshop, refetch, insertAuditTr
|
||||
cardcolor: false,
|
||||
orientation: false,
|
||||
cardSize: "small",
|
||||
model_info: true
|
||||
model_info: true,
|
||||
kiosk: false
|
||||
},
|
||||
[associationSettings]
|
||||
);
|
||||
|
||||
@@ -94,6 +94,14 @@ export default function ProductionBoardKanbanSettings({ associationSettings, par
|
||||
</Radio.Group>
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={4}>
|
||||
<Form.Item name="kiosk" label={t("production.labels.kiosk_mode")}>
|
||||
<Radio.Group>
|
||||
<Radio.Button value={true}>{t("production.labels.on")}</Radio.Button>
|
||||
<Radio.Button value={false}>{t("production.labels.off")}</Radio.Button>
|
||||
</Radio.Group>
|
||||
</Form.Item>
|
||||
</Col>
|
||||
</Row>
|
||||
</Card>
|
||||
<Card title={t("production.settings.information")} style={cardStyle}>
|
||||
|
||||
Reference in New Issue
Block a user