index.jsx 16 KB
Newer Older
wuhao's avatar
wuhao committed
1 2 3 4 5 6 7 8 9 10 11 12
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
wuhao's avatar
wuhao committed
13
import { useReactToPrint } from 'react-to-print';
左玲玲's avatar
左玲玲 committed
14
import { useModel } from 'umi';
wuhao's avatar
wuhao committed
15 16 17 18 19 20 21 22

const keytoval = {
    "one": 1,
    "two": 2,
    "three": 3,
    "four": 4
}, items = [
    {
左玲玲's avatar
左玲玲 committed
23
        key: 'one',
wuhao's avatar
wuhao committed
24 25
        label: (
            <a>
wuhao's avatar
wuhao committed
26
                生产领料出库
wuhao's avatar
wuhao committed
27 28 29 30 31 32 33
            </a>
        ),
    },
    {
        key: 'two',
        label: (
            <a>
wuhao's avatar
wuhao committed
34
                销售出库
wuhao's avatar
wuhao committed
35 36 37 38 39 40 41
            </a>
        ),
    },
    {
        key: 'three',
        label: (
            <a>
wuhao's avatar
wuhao committed
42
                报废出库
wuhao's avatar
wuhao committed
43 44 45 46 47 48 49 50 51 52 53 54 55
            </a>
        ),
    },
    {
        key: 'four',
        label: (
            <a>
                其他出库
            </a>
        ),
    },
]

左玲玲's avatar
左玲玲 committed
56 57
function Outstore(props) {
    const { initialState, setInitialState } = useModel("@@initialState");
wuhao's avatar
wuhao committed
58 59 60 61 62 63 64 65
    const [activeTabKey, onTabChange] = useState("1");
    let [drawprops, setdrawprops] = useState({
        title: "",
        visible: false,
        onClose: () => {
            setdrawprops(s => ({
                ...s,
                visible: false,
左玲玲's avatar
左玲玲 committed
66
                fields:{}
wuhao's avatar
wuhao committed
67 68 69
            }))
        },
        fields: {},
左玲玲's avatar
左玲玲 committed
70
        width: 1200
wuhao's avatar
wuhao committed
71 72
    }),
        actionRef = useRef(),
wuhao's avatar
wuhao committed
73 74
        ChildRef = null,
        printRef = useRef();
wuhao's avatar
wuhao committed
75 76 77 78 79 80 81 82

    //操作完成后刷新    
    function reload() {
        actionRef.current.reload();
        ChildRef?.onRefresh();
        message.success("操作成功");
        setdrawprops(s => ({
            ...s,
左玲玲's avatar
左玲玲 committed
83 84
            visible: false,
            fields:{}
wuhao's avatar
wuhao committed
85 86 87
        }))
    }

wuhao's avatar
wuhao committed
88 89 90 91 92
    const handlePrint = useReactToPrint({
        content: () => printRef.current,
    });


wuhao's avatar
wuhao committed
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
    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
110
                                    totalPath: "/ngic-workmanship/wmsMaterieOutstore/getOutStoreInfoById",
wuhao's avatar
wuhao committed
111 112 113 114 115 116 117 118 119
                                    totalParams: { id: record.id },
                                    printRef: printRef,
                                    extra: (<Button
                                        onClick={async () => {
                                            handlePrint()
                                        }}
                                    >
                                        打印
                                    </Button>)
wuhao's avatar
wuhao committed
120 121 122 123 124 125 126 127 128 129 130 131
                                }))
                            }}
                        >{dom}</a>
                    }
                },
                {
                    "title": "出库类型",
                    "dataIndex": "outstoreTypeName",
                    "key": "outstoreType",
                    "valueType": "select",
                    "options": [
                        {
左玲玲's avatar
左玲玲 committed
132
                            "label": "生产领料出库",
wuhao's avatar
wuhao committed
133 134 135
                            "value": "1"
                        },
                        {
左玲玲's avatar
左玲玲 committed
136
                            "label": "销售出库",
wuhao's avatar
wuhao committed
137 138 139
                            "value": "2"
                        },
                        {
左玲玲's avatar
左玲玲 committed
140
                            "label": "报废出库",
wuhao's avatar
wuhao committed
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
                            "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",
左玲玲's avatar
左玲玲 committed
179
                    "valueType": "dateRange",
左玲玲's avatar
左玲玲 committed
180 181
                    formItemProps: {
                        name: "createTimeList"
左玲玲's avatar
左玲玲 committed
182
                    }
wuhao's avatar
wuhao committed
183 184 185 186 187 188 189 190
                },
                {
                    "title": "状态",
                    "dataIndex": "statusName",
                    "key": "status",
                    "valueType": "select",
                    "options": [
                        {
左玲玲's avatar
左玲玲 committed
191
                            "label": "待下架",
wuhao's avatar
wuhao committed
192 193 194
                            "value": "0"
                        },
                        {
左玲玲's avatar
左玲玲 committed
195
                            "label": "下架中",
wuhao's avatar
wuhao committed
196 197 198 199 200 201 202 203 204 205
                            "value": "1"
                        }
                    ]
                },
                {
                    "title": "操作",
                    "valueType": "option",
                    "width": 240,
                    "render": (text, record, _, action) => {
                        return [
wuhao's avatar
wuhao committed
206
                            getPrem("equipmentCustomer_save", action, '下架采集', async () => {
左玲玲's avatar
左玲玲 committed
207
                                let extra = defaultFields.dooutside(record.id, record.storeId);
wuhao's avatar
wuhao committed
208 209 210 211 212 213 214 215
                                setdrawprops(s => ({
                                    ...s,
                                    visible: true,
                                    //查看详情 props
                                    val: "detail",
                                    title: `下架采集`,
                                    ...extra,
                                    totalPath: "/ngic-workmanship/wmsMaterieOutstore/getOutStoreInfoById",
左玲玲's avatar
左玲玲 committed
216
                                    totalParams: { id: record.id },
左玲玲's avatar
左玲玲 committed
217
                                    extra: null
wuhao's avatar
wuhao committed
218
                                }))
左玲玲's avatar
左玲玲 committed
219 220 221 222 223 224
                                setInitialState(s => {
                                    return ({
                                        ...s,
                                        submits: {}
                                    })
                                })
wuhao's avatar
wuhao committed
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 254 255 256 257 258 259 260 261 262 263 264 265
                            }),
                            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
266
                                    totalPath: "/ngic-workmanship/wmsMaterieOutstoreHis/getOutStoreInfoById",
wuhao's avatar
wuhao committed
267 268 269 270 271 272 273 274 275 276 277 278 279
                                    totalParams: { id: record.id }
                                }))
                            }}
                        >{dom}</a>
                    }
                },
                {
                    "title": "出库类型",
                    "dataIndex": "outstoreTypeName",
                    "key": "outstoreType",
                    "valueType": "select",
                    "options": [
                        {
wuhao's avatar
wuhao committed
280
                            "label": "生产领料出库",
wuhao's avatar
wuhao committed
281 282 283
                            "value": "1"
                        },
                        {
wuhao's avatar
wuhao committed
284
                            "label": "销售出库",
wuhao's avatar
wuhao committed
285 286 287
                            "value": "2"
                        },
                        {
wuhao's avatar
wuhao committed
288
                            "label": "报废出库",
wuhao's avatar
wuhao committed
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
                            "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",
左玲玲's avatar
左玲玲 committed
327
                    "valueType": "dateRange",
左玲玲's avatar
左玲玲 committed
328 329
                    formItemProps: {
                        name: "createTimeList"
左玲玲's avatar
左玲玲 committed
330
                    }
wuhao's avatar
wuhao committed
331 332 333 334 335
                },
                {
                    "title": "关单时间",
                    "dataIndex": "closeTime",
                    "key": "closeTime",
左玲玲's avatar
左玲玲 committed
336
                    "valueType": "dateRange",
左玲玲's avatar
左玲玲 committed
337 338
                    formItemProps: {
                        name: "closeTimeList"
左玲玲's avatar
左玲玲 committed
339
                    }
wuhao's avatar
wuhao committed
340 341 342 343 344 345 346 347
                },
                {
                    "title": "状态",
                    "dataIndex": "statusName",
                    "key": "status",
                    "valueType": "select",
                    "options": [
                        {
左玲玲's avatar
左玲玲 committed
348
                            "label": "已下架",
wuhao's avatar
wuhao committed
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
                            "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],
左玲玲's avatar
左玲玲 committed
371
                    val: "add", //类型
左玲玲's avatar
左玲玲 committed
372
                    extra: null
wuhao's avatar
wuhao committed
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
                }))
            }}
            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") {
左玲玲's avatar
左玲玲 committed
408
                        value.materialList = value.materialList?.map(it => {
wuhao's avatar
wuhao committed
409
                            delete it.usableNum;
左玲玲's avatar
左玲玲 committed
410
                            delete it.id;
wuhao's avatar
wuhao committed
411 412
                            return it
                        })//usableNum
wuhao's avatar
wuhao committed
413 414 415 416 417 418
                        let res = await doFetch({ url: "/ngic-workmanship/wmsMaterieOutstore/saveOutStore", params: { ...value, outstoreType: drawprops.outstoreType } })
                        if (res.code == "0000") {
                            reload();
                        }
                    }
                }}
左玲玲's avatar
左玲玲 committed
419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
                onChange={(changedValues, allValues) => {
                    for (let i in changedValues) {
                        if (i == "storeId") {
                            setdrawprops(s => {
                                let fields = s.fields;
                                fields["materialList"].linkconfig = {
                                    urlchangeval: {//根据url接口 改变某个value
                                        database: (params) => doFetch({ url: "/ngic-workmanship/wmsMaterieStockStore/queryStoreOne", params }),
                                        params: { "materieId": "linked", storeId: changedValues[i] },
                                        effectresult: {
                                            "productionUnit": "productionUnit",//key 为列表更新值  value为response 返回值
                                            "productionUnitName": "productionUnitName",
                                            "usableNum": "usableNum",
                                            "outstroeNum": "outstroeNum"
                                        }
                                    }
                                }
                                return {
                                    ...s,
                                    fields
                                }
                            })
                        }
                    }
                }}
                reload={reload}
wuhao's avatar
wuhao committed
445 446 447 448 449
            />
        </div>
    );
}

左玲玲's avatar
左玲玲 committed
450
export default Outstore;