23 lines
735 B
JavaScript
23 lines
735 B
JavaScript
|
|
import { Button, Popconfirm,Input,InputNumber,Icon } from 'antd';
|
|
import ListPage from '../../components/Table/ListPage';
|
|
import FormPage from '../../components/FormPage'
|
|
import {extendRule, initFilter, extendFilterGroup, initFilterGroup, extendGroupRule} from "../../utils/common";
|
|
import {message} from "antd/lib/index";
|
|
import moment from 'moment';
|
|
import SelectInventoryPage from '../../components/CustomPages/WH/SelectInventoryPage';
|
|
|
|
//样品入库
|
|
export default {
|
|
btnStockOut:({record,close,loadData,login,getSelectedRecords,dispatch})=> {
|
|
return {
|
|
onClick:(json,ids)=>{
|
|
json.Parameter1=login.user.ID;
|
|
},
|
|
onBtnDisabled:(record)=>{
|
|
return record.STOCK_STATUS!==2;
|
|
}
|
|
}
|
|
},
|
|
}
|