skyouc
2025-06-09 2a125d08bd4437dbf0e93f2d25ea196715ce82a4
rsf-admin/src/page/orders/outStock/OutStockPublic.jsx
@@ -189,7 +189,7 @@
//提交按钮
const SubmitButton = ({ selectedIds, setSelectedIds }) => {
    const submit = () => {
        if (selectedIds.length  < 1) {return}
        if (selectedIds.length < 1) { return }
        console.log(selectedIds);
    }
@@ -229,7 +229,7 @@
    { field: 'unit', headerName: '单位', width: 90 },
    { field: 'workQty', headerName: '本次出库数量', width: 110 },
    {
        field: 'staNo',
        field: 'siteNo',
        headerName: '出库口',
        width: 90,
        type: 'singleSelect',
@@ -296,7 +296,10 @@
        >
            {staNos.map((option) => {
                return (
                    <MenuItem key={option} value={option.staNo}>
                    <MenuItem
                        key={option}
                        value={option.staNo}
                    >
                        <ListItemText sx={{ overflow: 'hidden' }} primary={option.staNo} />
                    </MenuItem>
                );