index.jsx 14.7 KB
Newer Older
wuhao's avatar
wuhao committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
import React, { useEffect, useMemo, useRef, useState } from "react";
import {
    Dropdown,
    Menu,
    Button,
    message,
} from "antd";
import AutoTable from "@/components/AutoTable";
import defaultFields from "./fields";
import { doFetch } from "@/utils/doFetch";
import DrawInitForm from "@/components/DrawInitForm";
import getPrem from '@/utils/getPrem';//权限判断fn


const keytoval = {
    "one": 1,
    "two": 2,
    "three": 3,
    "four": 4
}, items = [
    {
wuhao's avatar
wuhao committed
22
        key: 'one', 
wuhao's avatar
wuhao committed
23 24
        label: (
            <a>
wuhao's avatar
wuhao committed
25
                生产领料出库
wuhao's avatar
wuhao committed
26 27 28 29 30 31 32
            </a>
        ),
    },
    {
        key: 'two',
        label: (
            <a>
wuhao's avatar
wuhao committed
33
                销售出库
wuhao's avatar
wuhao committed
34 35 36 37 38 39 40
            </a>
        ),
    },
    {
        key: 'three',
        label: (
            <a>
wuhao's avatar
wuhao committed
41
                报废出库
wuhao's avatar
wuhao committed
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
            </a>
        ),
    },
    {
        key: 'four',
        label: (
            <a>
                其他出库
            </a>
        ),
    },
]

function Instore(props) {
    const [activeTabKey, onTabChange] = useState("1");
    let [drawprops, setdrawprops] = useState({
        title: "",
        visible: false,
        onClose: () => {
            setdrawprops(s => ({
                ...s,
                visible: false,
            }))
        },
        fields: {},
        width:1200
    }),
        actionRef = useRef(),
        ChildRef = null;

    //操作完成后刷新    
    function reload() {
        actionRef.current.reload();
        ChildRef?.onRefresh();
        message.success("操作成功");
        setdrawprops(s => ({
            ...s,
            visible: false
        }))
    }

    const columns = useMemo(() => {
        if (activeTabKey == "1") {
            return [
                {
                    "title": "出库单号",
                    "dataIndex": "materieOutstoreNo",
                    "key": "materieOutstoreNo",
                    "render": (dom, record) => {
                        return <a
                            onClick={() => {
                                setdrawprops(s => ({
                                    ...s,
                                    visible: true,
                                    //查看详情 props
                                    val: "detail",
                                    title: `查看详情`,
                                    ...defaultFields?.detail,
wuhao's avatar
wuhao committed
100
                                    totalPath: "/ngic-workmanship/wmsMaterieOutstore/getOutStoreInfoById",
wuhao's avatar
wuhao committed
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
                                    totalParams: { id: record.id }
                                }))
                            }}
                        >{dom}</a>
                    }
                },
                {
                    "title": "出库类型",
                    "dataIndex": "outstoreTypeName",
                    "key": "outstoreType",
                    "valueType": "select",
                    "options": [
                        {
                            "label": "采购出库",
                            "value": "1"
                        },
                        {
                            "label": "生产出库",
                            "value": "2"
                        },
                        {
                            "label": "退料出库",
                            "value": "3"
                        },
                        {
                            "label": "其他出库",
                            "value": "4"
                        }
                    ]
                },
                {
                    "title": "出库仓库",
                    "dataIndex": "storeName",
                    "key": "storeId",
                    options: {
                        database: () => doFetch({ url: "/ngic-auth/sysStore/selectionBox", params: { factoryIdList: [] } }),
                        params: {}
                    },
                    valueType: "select",
                },
                {
                    "title": "相关单号",
                    "dataIndex": "businessNo",
                    "key": "businessNo"
                },
                {
                    "title": "备注",
                    "dataIndex": "remark",
                    "key": "remark",
                    "search": false
                },
                {
                    "title": "创建人",
                    "dataIndex": "createUserName",
                    "key": "createUserName"
                },
                {
                    "title": "创建时间",
                    "dataIndex": "createTime",
                    "key": "createTime",
                    "search": false
                },
                {
                    "title": "创建时间开始时间",
                    "dataIndex": "createTimeStart",
                    "key": "createTimeStart",
                    "valueType": "date",
                    "hideInTable": true
                },
                {
                    "title": "创建时间结束时间",
                    "dataIndex": "createTimeEnd",
                    "key": "createTimeEnd",
                    "valueType": "date",
                    "hideInTable": true
                },
                {
                    "title": "状态",
                    "dataIndex": "statusName",
                    "key": "status",
                    "valueType": "select",
                    "options": [
                        {
                            "label": "待上架",
                            "value": "0"
                        },
                        {
                            "label": "上架中",
                            "value": "1"
                        }
                    ]
                },
                {
                    "title": "操作",
                    "valueType": "option",
                    "width": 240,
                    "render": (text, record, _, action) => {
                        return [
wuhao's avatar
wuhao committed
199
                            getPrem("equipmentCustomer_save", action, '下架采集', async () => {
wuhao's avatar
wuhao committed
200

wuhao's avatar
wuhao committed
201 202 203 204 205 206 207 208 209 210 211
                                let extra = defaultFields.dooutside(record.id);
                                setdrawprops(s => ({
                                    ...s,
                                    visible: true,
                                    //查看详情 props
                                    val: "detail",
                                    title: `下架采集`,
                                    ...extra,
                                    totalPath: "/ngic-workmanship/wmsMaterieOutstore/getOutStoreInfoById",
                                    totalParams: { id: record.id }
                                }))
wuhao's avatar
wuhao committed
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253

                            }),
                            getPrem("equipmentCustomer_deleteById", action, '关单', null, {
                                title: "确认关单?",
                                onConfirm: () => {
                                    doFetch({ url: "/ngic-workmanship/wmsMaterieOutstore/close", params: { id: record.id } }).then(res => {
                                        if (res.code == "0000") {
                                            reload()
                                        }
                                    })
                                }
                            }),
                            getPrem("equipmentCustomer_deleteById", action, '删除', null, {
                                title: "确认删除?",
                                onConfirm: () => {
                                    doFetch({ url: "/ngic-workmanship/wmsMaterieOutstore/deleteById", params: { id: record.id } }).then(res => {
                                        if (res.code == "0000") {
                                            reload()
                                        }
                                    })
                                }
                            })
                        ];
                    }
                }
            ]
        } else {
            return [
                {
                    "title": "出库单号",
                    "dataIndex": "materieOutstoreNo",
                    "key": "materieOutstoreNo",
                    "render": (dom, record) => {
                        return <a
                            onClick={() => {
                                setdrawprops(s => ({
                                    ...s,
                                    visible: true,
                                    //查看详情 props
                                    val: "detail",
                                    title: `查看详情`,
                                    ...defaultFields?.detail,
wuhao's avatar
wuhao committed
254
                                    totalPath: "/ngic-workmanship/wmsMaterieOutstoreHis/getOutStoreInfoById",
wuhao's avatar
wuhao committed
255 256 257 258 259 260 261 262 263 264 265 266 267
                                    totalParams: { id: record.id }
                                }))
                            }}
                        >{dom}</a>
                    }
                },
                {
                    "title": "出库类型",
                    "dataIndex": "outstoreTypeName",
                    "key": "outstoreType",
                    "valueType": "select",
                    "options": [
                        {
wuhao's avatar
wuhao committed
268
                            "label": "生产领料出库",
wuhao's avatar
wuhao committed
269 270 271
                            "value": "1"
                        },
                        {
wuhao's avatar
wuhao committed
272
                            "label": "销售出库",
wuhao's avatar
wuhao committed
273 274 275
                            "value": "2"
                        },
                        {
wuhao's avatar
wuhao committed
276
                            "label": "报废出库",
wuhao's avatar
wuhao committed
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
                            "value": "3"
                        },
                        {
                            "label": "其他出库",
                            "value": "4"
                        }
                    ]
                },
                {
                    "title": "出库仓库",
                    "dataIndex": "storeName",
                    "key": "storeId",
                    options: {
                        database: () => doFetch({ url: "/ngic-auth/sysStore/selectionBox", params: { factoryIdList: [] } }),
                        params: {}
                    },
                    valueType: "select",
                },
                {
                    "title": "相关单号",
                    "dataIndex": "businessNo",
                    "key": "businessNo"
                },
                {
                    "title": "备注",
                    "dataIndex": "remark",
                    "key": "remark",
                    "search": false
                },
                {
                    "title": "创建人",
                    "dataIndex": "createUserName",
                    "key": "createUserName"
                },
                {
                    "title": "创建时间",
                    "dataIndex": "createTime",
                    "key": "createTime",
                    "search": false
                },
                {
                    "title": "创建时间开始时间",
                    "dataIndex": "createTimeStart",
                    "key": "createTimeStart",
                    "valueType": "date",
                    "hideInTable": true
                },
                {
                    "title": "创建时间结束时间",
                    "dataIndex": "createTimeEnd",
                    "key": "createTimeEnd",
                    "valueType": "date",
                    "hideInTable": true
                },
                {
                    "title": "关单时间",
                    "dataIndex": "closeTime",
                    "key": "closeTime",
                    "search": false
                },
                {
                    "title": "关单时间开始时间",
                    "dataIndex": "closeTimeStart",
                    "key": "closeTimeStart",
                    "valueType": "date",
                    "hideInTable": true
                },
                {
                    "title": "关单时间结束时间",
                    "dataIndex": "closeTimeEnd",
                    "key": "closeTimeEnd",
                    "valueType": "date",
                    "hideInTable": true
                },
                {
                    "title": "状态",
                    "dataIndex": "statusName",
                    "key": "status",
                    "valueType": "select",
                    "options": [
                        {
                            "label": "已上架",
                            "value": "2"
                        },
                        {
                            "label": "已关单",
                            "value": "4"
                        }
                    ]
                }
            ]
        }
    }, [activeTabKey])

    const tableprops = {
        ...props,
        pageextra: activeTabKey == "1" ? <Dropdown placement="bottomRight" overlay={<Menu
            onClick={(e) => {
                setdrawprops(s => ({
                    ...s,
                    visible: true,
                    title: "新增",
                    fields: defaultFields[e.key],
                    outstoreType: keytoval[e.key],
                    val: "add" //类型
                }))
            }}
            items={items}
        />}>
            <Button type="primary">新增</Button>
        </Dropdown> : "none",
        tabList: [
            {
                tab: "未完成",
                key: "1"
            }, {
                tab: "已完成",
                key: "2"
            }
        ],
        activeTabKey,
        onTabChange,
        columns,
        path: activeTabKey == "1" ? "/ngic-workmanship/wmsMaterieOutstore/queryList" : "/ngic-workmanship/wmsMaterieOutstoreHis/queryList"
    }


    return (
        <div>
            <AutoTable
                {
                ...tableprops
                }
                actionRef={actionRef}
                onRef={(node) => (ChildRef = node)}
            ></AutoTable>
            <DrawInitForm
                {...drawprops}
                submitData={async (value) => {
                    if (drawprops.val == "add") {
wuhao's avatar
wuhao committed
417 418 419 420
                        value.materialList = value.materialList?.map(it=>{
                            delete it.usableNum;
                            return it
                        })//usableNum
wuhao's avatar
wuhao committed
421 422 423 424 425 426 427 428 429 430 431 432
                        let res = await doFetch({ url: "/ngic-workmanship/wmsMaterieOutstore/saveOutStore", params: { ...value, outstoreType: drawprops.outstoreType } })
                        if (res.code == "0000") {
                            reload();
                        }
                    }
                }}
            />
        </div>
    );
}

export default Instore;