chen.lin
1 天以前 79edfec1f6e6789d3f6cc57db3cb0cfdffd64c32
rsf-admin/src/page/orders/transfer/TransferCreate.jsx
@@ -36,6 +36,7 @@
import DictSelect from "../../components/DictSelect";
import SaveIcon from '@mui/icons-material/Save';
import request from '@/utils/request';
import { formatQuantity } from '@/utils/common';
const TransferCreate = (props) => {
    const { open, setOpen, orderId } = props;
@@ -233,7 +234,7 @@
            minWidth: 100,
            flex: 1,
            editable: true,
            valueFormatter: (val) => val < 0 ? 0 : val,
            valueFormatter: (val) => formatQuantity(val != null && val >= 0 ? val : 0),
            headerClassName: "custom",
        },
        {