chen.lin
2026-03-10 cb249acbd7ed7f3bc2afa2bc9bee7d69ac8b5e30
rsf-admin/src/page/orders/transfer/ManualCreate.jsx
@@ -47,6 +47,7 @@
import { minHeight, padding } from "@mui/system";
import SaveIcon from '@mui/icons-material/Save';
import request from '@/utils/request';
import { formatQuantity } from '@/utils/common';
import _, { set } from 'lodash';
const ManualCreate = (props) => {
@@ -363,7 +364,7 @@
            minWidth: 100,
            flex: 1,
            editable: true,
            valueFormatter: (val) => val < 0 ? 0 : val,
            valueFormatter: (val) => formatQuantity(val != null && val >= 0 ? val : 0),
        },
        {
            field: 'splrCode',