index.jsx 9.38 KB
Newer Older
krysent's avatar
krysent committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 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 100 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 199 200 201 202 203 204 205 206 207 208 209 210 211 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
import {
    MenuUnfoldOutlined,
    MenuFoldOutlined,
    HomeOutlined
} from '@ant-design/icons';
import { Breadcrumb, Layout, Menu, Input, Modal, Tree } from 'antd';
import React, { useState } from 'react';
import styles from './index.less'
import TreeRender from '@/components/TreeRender';
import AutoTable from "@/components/AutoTable";

const { Header, Content, Footer, Sider } = Layout,
    { Search } = Input



const Storesearch = (props) => {
    const [collapsed, setCollapsed] = useState(false);
    const [search, setsearch] = useState();
    const [select, setselect] = useState({});

    const columns = [
        {
            "title": "物料编码",
            "dataIndex": "materieCode",
            "key": "materieCode"
        },
        {
            "title": "物料名称",
            "dataIndex": "materieName",
            "key": "materieName"
        },
        {
            "title": "物料类型",
            "dataIndex": "materieTypeName",
            "key": "materieTypeName"
        },
        {
            "title": "库存数量",
            "dataIndex": "stockNum",
            "key": "stockNum",
            "search": false
        },
        {
            "title": "可用库存",
            "dataIndex": "usableNum",
            "key": "usableNum",
            "search": false
        },
        {
            "title": "库存单位",
            "dataIndex": "productionUnitName",
            "key": "productionUnitName",
            "search": false
        }, {
            "title": "库存信息",
            "valueType": "option",
            "width": 88,
            "search": false,
            "render": (dom, record) => {
                return <a
                    onClick={() => {
                        Modal.info({
                            title: "库存信息",
                            width: 1200,
                            okText: "知道了",
                            content: (
                                <div>
                                    <AutoTable
                                        withCard={false}
                                        columns={[
                                            {
                                                "title": "仓库编号",
                                                "dataIndex": "storeCode",
                                                "key": "storeCode",
                                            },
                                            {
                                                "title": "仓库名称",
                                                "dataIndex": "storeName",
                                                "key": "storeName"
                                            },
                                            {
                                                "title": "库位名称",
                                                "dataIndex": "storePositionName",
                                                "key": "storePositionName"
                                            },
                                            {
                                                "title": "批次号/SN号",
                                                "dataIndex": "materieControlNo",
                                                "key": "materieControlNo"
                                            },
                                            {
                                                "title": "供应商编号",
                                                "dataIndex": "supplierNo",
                                                "key": "supplierNo"
                                            },
                                            {
                                                "title": "供应商名称",
                                                "dataIndex": "supplierName",
                                                "key": "supplierName"
                                            },
                                            {
                                                "title": "库存数量",
                                                "dataIndex": "stroeNum",
                                                "key": "stroeNum",
                                                search:false
                                            },
                                        ]}
                                        path="/ngic-workmanship/wmsMaterieStore/queryPositionList"
                                        extraparams={{
                                            level: select.level ?? 0,
                                            key: select.selectedKeys ?? "",
                                            materieId: record.materieId
                                        }}
                                    >

                                    </AutoTable>
                                </div>
                            )
                        })
                    }}
                >
                    查看
                </a>
            }
        }
    ]

    const tableprops = {
        ...props,
        pageextra: "none",
        columns,
        path: "/ngic-workmanship/wmsMaterieStock/queryStockList",
        extraparams: {
            level: select.level ?? 0,
            key: select.selectedKeys ?? ""
        }

    }


    return (
        <Layout
            style={{
                height: '100%',
            }}
        >
            <Sider theme='light' collapsed={collapsed} width={260}>
                <div style={{ padding: 12, justifyContent: "space-between", paddingBottom: collapsed ? 12 : 0, alignItems: "center", display: "flex", flexDirection: !collapsed ? "row" : "column" }} >
                    <p className={styles.title} style={{ marginBottom: !collapsed ? 0 : 12 }}>
                        <HomeOutlined />
                        {!collapsed ? <span style={{ marginLeft: 6 }}>仓库库位</span> : ""}
                    </p>

                    {collapsed ? (
                        <MenuUnfoldOutlined
                            style={{ cursor: "pointer", fontSize: 20 }}
                            onClick={() => {
                                setCollapsed(!collapsed)
                            }}
                        />
                    ) : (
                            <MenuFoldOutlined
                                style={{ cursor: "pointer", fontSize: 20 }}
                                onClick={() => {
                                    setCollapsed(!collapsed)
                                }}
                            />
                        )}
                </div>
                {
                    !collapsed ?
                        <div style={{ padding: collapsed ? 0 : 12 }}>
                            <TreeRender
                                url="/ngic-auth/sysStore/queryTreeList"
                                params={{}}
                                noaction={true}
                                maxWidth={140}
                                onselected={(selectedKeys, e, alldata) => {
                                    setselect(selectedKeys[0] ? {
                                        title: e.node.title,
                                        selectedKeys: selectedKeys[0],
                                        level: alldata.filter(it => it.key == selectedKeys[0])[0]?.level,
                                        key: e.node.key
                                    } : {

                                        })
                                }}
                            >

                            </TreeRender>
                        </div> :
                        <div onDoubleClick={() => {
                            setCollapsed(false)
                        }} style={{ writingMode: "vertical-lr", width: "100%", textAlign: "center", height: "80vh", display: "flex", justifyContent: "center", alignItems: "center", userSelect: "none" }}>
                            双击此处展开
                        </div>
                }



            </Sider>
            <Layout className={styles.sitelayout}>
                <Content
                    style={{
                        margin: '0 0 6px 6px',
                        display: "flex",
                        flexDirection: "column"
                    }}
                >
                    <Breadcrumb
                        style={{
                            margin: '8px 6px',
                        }}
                    >
                        <Breadcrumb.Item>物料库存</Breadcrumb.Item>
                        {
                            select.key != "00000000" && <Breadcrumb.Item style={{ maxWidth: 600 }}>{select.title}</Breadcrumb.Item>
                        }
                    </Breadcrumb>
                    <div
                        className={styles.sitelayoutbackground}
                        style={{
                            padding: 6,
                            height: "100%",
                            flex: 1
                        }}
                    >
                        <AutoTable
                            {
                            ...tableprops
                            }
                            withCard={false}

                        ></AutoTable>
                    </div>
                </Content>
            </Layout>
        </Layout>




    );
};

export default Storesearch;