| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855 |
- import * as React from 'react';
- import Box from "@mui/material/Box";
- import 'handsontable/dist/handsontable.full.min.css';
- //import 'handsontable/styles/ht-theme-main.min.css';
- import { HandsonTable } from 'handsontable/base';
- import { Table, ConfigProvider, Button as AButton } from "antd";
- import {HotTable} from "@handsontable/react-wrapper";
- import { registerAllModules } from 'handsontable/registry';
- import {RichTreeView } from "@mui/x-tree-view/RichTreeView";
- import { Grid } from '@mui/material';
- import Tab from "@mui/material/Tab";
- import TabContext from "@mui/lab/TabContext";
- import TabList from "@mui/lab/TabList";
- import TabPanel from "@mui/lab/TabPanel";
- import Stack from "@mui/material/Stack";
- //import { registerPlugin, NestedRows } from 'handsontable/plugins';
- //registerPlugin(NestedRows);
- import Service from './Service';
- import { textRenderer, registerRenderer } from 'handsontable/renderers';
- import Button from '@mui/material/Button';
- import ButtonGroup from '@mui/material/ButtonGroup';
- import {extractFuzhu} from './utils';
- import {shanchu, undo, redo, danxiangdinge, updateDercj, changguidinge, handleBeizhu, huan, updateShuliang} from './editor';
- import Backdrop from '@mui/material/Backdrop';
- import CircularProgress from '@mui/material/CircularProgress';
- import { DataGrid } from '@mui/x-data-grid';
- import { useHotEditor } from "@handsontable/react-wrapper";
- import Dialog from '@mui/material/Dialog';
- import DialogTitle from '@mui/material/DialogTitle';
- import DialogContent from '@mui/material/DialogContent';
- import IconButton from '@mui/material/IconButton';
- import Typography from '@mui/material/Typography';
- import Editable from './Editable';
- import {
- SettingFilled,
- } from '@ant-design/icons';
- import zhCN from 'antd/locale/zh_CN';
- import {TabulatorFull as Tabulator} from "tabulator-tables"; //import Tabulator library
- import "tabulator-tables/dist/css/tabulator.min.css"; //import Tabulator stylesheet
- import './Tabulator.css';
- registerAllModules();
- /**
- *
- 本条规定了工程量清单编码的表示方式:十二位阿拉伯数字及其设置规定。
- 各位数字的含义是:一、二位为专业工程代码(01—房屋建筑与装饰工程;02—仿古建筑工程;
- 03—通用安装工程;04—市政工程;05—园林绿化工程;06—矿山工程;07—构筑物工程;08—城市
- 轨道交通工程;09—爆破工程。以后进入国标的专业工程代码以此类推);三、四位为附录分类顺序码;
- 五、六位为分部工程顺序码;七、八、九位为分项工程项目名称顺序码;十至十二位为清单项目名称
- 顺序码。
- */
- export default function Qingdan2({name, bh, bt, rgde, jxde, clde, beizhu/*后台传回来的附注信息,要整理后才能成为展示用的行*/ , beizhuFK, clickCallback, loadingCallback, dingeclick, tihuanCallback, tihuanClick, suanshiCallback}) {
- registerRenderer('customStylesRenderer', (hotInstance, TD, row, column, prop, value, ...rest) => {
- let newValue = value;
- if (( column == 11 || column == 5) && row > 0) {
- newValue = Number(value).toFixed(2).toString();
- }
- if (column == 10 && row > 0) {
- newValue = Number(value).toFixed(4).toString();
- }
- textRenderer(hotInstance, TD, row, column, prop, newValue, ...rest);
- for (let i = 0; i < highlight.current.length; i++) {
- let entry = highlight.current[i];
- if (entry.row == row && entry.col == column) {
- TD.style.fontWeight = 'bold';
- TD.style.color = 'green';
- TD.style.background = '#d7f1e1';
- }
- }
-
- });
- const myTable = React.useRef(null);
- const myRef = React.useRef(null);
- const [valueTab, setValueTab] = React.useState("1");
- const handleChange = (event, newValue) => {
- setValueTab(newValue);
- };
- const [rcjhl, setRcjhl] = React.useState([]);
- const [rcjhl2, setRcjhl2] = React.useState([]);
- const [fuzhu, setFuzhu] = React.useState([]);//展示用的附注行
- const [tuijian, setTuijian] = React.useState([]);
- const [fuzhuEnable, setFuzhuEnable] = React.useState(false);
- const hotRcjRef = React.useRef(null);
- const hotTuijianRef = React.useRef(null);
- const highlight = React.useRef([]);
- const debmRef = React.useRef(null);
- const lastClickRef = React.useRef(null);
- const [detail, setDetail] = React.useState([
-
- ]);
- const selectedRowKeysTable = React.useRef([]);
- const selectedRowKeysTableParent = React.useRef(null);
- const beizhuFKRef = React.useRef(null);
- const rgdeRef = React.useRef(null);
- const jxdeRef = React.useRef(null);
- const cldeRef = React.useRef(null);
- const isQdrcj = React.useRef(false);
- const [selectedRowKeys, setSelectedRowKeys] = React.useState([]);
- const onSelectChange = (newSelectedRowKeys) => {
- console.log('selectedRowKeys changed: ', newSelectedRowKeys);
- setSelectedRowKeys(newSelectedRowKeys);
- const [newData, newHl] = handleBeizhu(beizhuFKRef.current, selectedRowKeysTable.current[0], newSelectedRowKeys, fuzhu);
- if (newData) {
- myTable.current.updateData(newData.filter(x=>x['key'] == selectedRowKeysTableParent.current));
- setRcjhl(newHl);
-
- }
- };
- /**fuzhu select */
- const rowSelection = {
- selectedRowKeys,
- onChange: onSelectChange,
- getCheckboxProps: (record) => {
- return {
- disabled: !fuzhuEnable
- };
- }
- };
- var editCheck = function(cell){
- //cell - the cell component for the editable cell
-
- //get row data
- //console.log(cell);
- if(cell._cell.row.data['序号']) return false;
- return true;
- }
- function handleSelect(row){
- selectedRowKeysTable.current = [row._row['data']['key']];
- if (row._row.data['序号'] != null && row._row.data['序号'].length >0) {
- selectedRowKeysTableParent.current = row._row['data']['key'];
- setFuzhu([]);
- Service.generateQingdanrcj(name, bh,bt,row._row.data['清单编码']).then(x=>{
-
- setRcjhl(x);
- //hotRcjRef.current?.hotInstance?.loadData(x);
-
- isQdrcj.current = true;
- highlight.current = [];
- });
- Service.generateQingdanTuijian(name, bh,bt,row._row.data['清单编码']).then(x=>{
- setTuijian(x);
-
- });
- }else{
- setTuijian([]);
- let row_parent = row._row;
- while(row_parent.modules.dataTree.parent) {
- row_parent = row_parent.modules.dataTree.parent;
- }
-
- //console.log(name, bh,bt,qdbm, selected[1]);
- debmRef.current = row._row['data']['清单编码'];
- selectedRowKeysTableParent.current = row_parent['data']['key'];
- let qdbm = row_parent['data']['清单编码'];
- let debm = row._row['data']['清单编码'];
- console.log('debm=');
- console.log(debm);
- let danwei = row._row['data']['单位'];
- clickCallback(qdbm, debm);
- Service.generateDingercj(name, bh,bt,qdbm, debm, danwei).then(x=>{
- console.log(x);
- setRcjhl(x[0]);
- setFuzhuEnable(x[1]);
- //hotRcjRef.current?.hotInstance?.loadData(x);
- isQdrcj.current = false;
- let toHighlight = [];
- for(let i = 1; i < x[0].length; i++) {
- let entry = x[0][i];
- let bianhao = entry[1];
- let rcjlb = entry[8];
- let hit = false;
- if (Number(rcjlb) == 1 && rgdeRef.current ) {
- for (let j = 0;j < rgdeRef.current.length; j++) {
- if (rgdeRef.current[j]["CLBH"] == bianhao) {
- if(rgdeRef.current[j]["CLMC"] == entry[2])hit = true;
- let danjia = Number(entry[5]);
- if (danjia != rgdeRef.current[j]["YSJG"]) {
- //console.log(`[${i},5]danjia bu yizhi`);
- toHighlight.push({row: i, col: 5, renderer: "customStylesRenderer"});
- }
- let hanliang = Number(entry[10]);
- if (hanliang != rgdeRef.current[j]["gr"]) {
- //console.log(`[${i}, 10]hanliang bu yizhi`);
- toHighlight.push({row: i, col: 10, renderer: "customStylesRenderer"});
- }
- }
- }
- }
- if (Number(rcjlb) == 3 && jxdeRef.current ) {
- for (let j = 0; j < jxdeRef.current.length; j++) {
- if (jxdeRef.current[j]["jxbh"] == bianhao) {
- if(jxdeRef.current[j]["jxmc"] == entry[2])hit = true;
- let danjia = Number(entry[5]);
- if (danjia != jxdeRef.current[j]["tbdj"]) {
- //console.log(`[${i},5]danjia bu yizhi`);
- toHighlight.push({row: i, col: 5, renderer: "customStylesRenderer"});
- }
- let hanliang = Number(entry[10]);
- if (hanliang != jxdeRef.current[j]["sl"]) {
- //console.log(`[${i}, 10]hanliang bu yizhi`);
- toHighlight.push({row: i, col: 10, renderer: "customStylesRenderer"});
- }
- }
- }
- }
- if (Number(rcjlb) == 2 && cldeRef.current ) {
- for (let j = 0; j < cldeRef.current.length; j++) {
- if (cldeRef.current[j]["CLBH"] == bianhao) {
- if(cldeRef.current[j]["CLMC"] == entry[2])hit = true;
- let danjia = Number(entry[5]);
- if (danjia != cldeRef.current[j]["YSJG"]) {
- //console.log(`[${i},5]danjia bu yizhi`);
- toHighlight.push({row: i, col: 5, renderer: "customStylesRenderer"});
- }
- let hanliang = Number(entry[10]);
- if (hanliang != cldeRef.current[j]["SL"]) {
- //console.log(`[${i}, 10]hanliang bu yizhi`);
- toHighlight.push({row: i, col: 10, renderer: "customStylesRenderer"});
- }
- }
- }
- }
- if (!hit) {
- toHighlight.push({row: i, col: 1, renderer: "customStylesRenderer"});
- }
- }
- highlight.current = toHighlight;
- });
- }
- }
- const afterChange = (changes, source) => {
- if (changes == null || changes.every(x=>x[2] == x[3])) {
- } else {
- let data = hotRcjRef.current?.hotInstance?.getData();
- for(let i = 1; i < data.length; i++) {
- data[i][11] = Number(data[i][10]) * Number(data[i][5]);
- }
- setRcjhl(data);
-
- let newData = updateDercj(selectedRowKeysTable.current[0], data);
- myTable.current.updateData(newData.filter(x=>x['key'] == selectedRowKeysTableParent.current)).then(function() {
- let getRow = myTable.current.getRows(); //get array of currently selected row components.
- let component = null;
- for(let i = 0; i < getRow.length; i++) {
- let entry = getRow[i]._row.modules.dataTree.children;
- for(let j = 0; j < entry.length; j++) {
- let child = entry[j];
- if(child.data['key'] == selectedRowKeysTable.current[0]) {
- //console.log(child);
- component = child.component;
- break;
- }
-
- }
-
- }
-
- handleSelect(component);
- //handleSelect(getRow[0]);
- });
- }
- };
-
- const afterOnCellMouseDown = (event, coord, TD) => {
-
- if (lastClickRef.current == null) {
- lastClickRef.current = Date.now();
- } else {
- let origin = lastClickRef.current;
- lastClickRef.current = Date.now();
- let delta = lastClickRef.current - origin;
- if (delta < 300 && coord.col == 1 && coord.row > 0 && !isQdrcj.current){//300 ms -> 换
- tihuanCallback(coord.row, coord.col);
- }
- }
- };
- React.useEffect(() => {
- myTable.current = new Tabulator(myRef.current, {
- index: "key",
- height: 380,
- data: detail, //link data to table
- reactiveData: false, //enable data reactivity
- dataTreeStartExpanded:true,
- dataTree: true,
- selectableRows:1, //make rows selectable
- editTriggerEvent:"dblclick", //trigger edit on double click
- dataTreeStartExpanded:function(row, level){
- //console.log(row);
- //console.log(level);
- return true; //expand rows where the "driver" data field is true;
- },
- columns: [ //Define Table Columns
- {title:"序号", field:"序号", width:80, headerSort:false, frozen: true}, //never hide this column
- {title:"清单编码", field:"清单编码", width:120,headerSort:false, frozen: true ,formatter:"textarea" },
- {title:"名称", field:"名称", width:150, headerSort:false, formatter:"textarea"}, //hide this column first
- {title:"项目特征", field:"项目特征", width:150 , headerSort:false, formatter:"textarea"},
- {title:"计算规则", field:"计算规则", width:150, headerSort:false, formatter:"textarea"},
- {title:"单位", field:"单位", width:100, headerSort:false},
- {title:"数量", field:"数量", width:100, headerSort:false, editor: "input", editable: editCheck },
- {title:"综合单价", field:"综合单价", width:100, headerSort:false, formatter:"money"},
- {title:"合价", field:"合价", width:100, headerSort:false, formatter:"money"},
- {title:"人工费", field:"人工费", width:100, headerSort:false, formatter:"money"},
- {title:"主材费", field:"主材费", width:100, headerSort:false, formatter:"money"},
- {title:"设备费", field:"设备费", width:100, headerSort:false, formatter:"money"},
- {title:"辅材费", field:"辅材费", width:100, headerSort:false, formatter:"money"},
- {title:"材料费", field:"材料费", width:100, headerSort:false, formatter:"money"},
- {title:"机械费", field:"机械费", width:100, headerSort:false, formatter:"money"},
- {title:"管理费", field:"管理费", width:100, headerSort:false, formatter:"money"},
- {title:"利润", field:"利润", width:100, headerSort:false, formatter:"money"},
- {title:"暂估价", field:"暂估价", width:100, headerSort:false, formatter:"money"},
- {title:"综合人工工日", field:"综合人工工日", width:100, headerSort:false},
- ]
- });
-
- myTable.current.on("cellDblClick", function(e, cell){
- //e - the click event object
- //cell - cell component
- console.log(cell);
- });
-
- myTable.current.on("rowSelected", handleSelect);
-
-
- myTable.current.on("cellEdited", function(cell){
- //console.log("edited");
- //console.log();
- let key = cell._cell.row.data['key'];
- myTable.current.deselectRow();
- let [success, data] = updateShuliang(cell._cell.row.data['数量'], selectedRowKeysTable.current[0]);
- if (success) {
- myTable.current.updateData(data.filter(x=>x['key'] == selectedRowKeysTableParent.current)).then(function() {
- let getRow = myTable.current.getRows(); //get array of currently selected row components.
- let component = null;
- for(let i = 0; i < getRow.length; i++) {
- let entry = getRow[i]._row.modules.dataTree.children;
- for(let j = 0; j < entry.length; j++) {
- let child = entry[j];
- if(child.data['key'] == key) {
- //console.log(child);
- component = child.component;
- break;
- }
-
- }
-
- }
- component.select();
- handleSelect(component);
- //handleSelect(getRow[0]);
- });
-
- }
- });
-
-
- myTable.current.on("tableBuilt", () => {
- Service.generateQingdanmingxi(name, bh, bt).then(x=>{
- myTable.current.replaceData(x);
- });
- });
-
- }, [bh, bt]);
- React.useEffect(
- () => {
- //console.log("rgde changed");
- //console.log(rgde);
- rgdeRef.current = rgde;
- jxdeRef.current = jxde;
- cldeRef.current = clde;
- if (isQdrcj.current) {
- highlight.current = [];
- } else {
- let toHighlight = [];
- for(let i = 1; i < rcjhl.length; i++) {
- let entry = rcjhl[i];
- let bianhao = entry[1];
- let rcjlb = entry[8];
- let hit = false;
- if (Number(rcjlb) == Number(1) && rgde) {
- for (let j = 0; j < rgde.length; j++) {
- if (rgde[j]["CLBH"] == bianhao) {
- if(rgde[j]["CLMC"] == entry[2])hit = true;
- let danjia = Number(entry[5]);
- if (danjia != rgde[j]["YSJG"]) {
- //console.log(`[${i},5]danjia bu yizhi`);
- toHighlight.push({row: i, col: 5, renderer: "customStylesRenderer"});
- }
- let hanliang = Number(entry[10]);
- if (hanliang != rgde[j]["gr"]) {
- //console.log(`[${i}, 10]hanliang bu yizhi`);
- toHighlight.push({row: i, col: 10, renderer: "customStylesRenderer"});
- }
-
- }
- }
-
- }
- if (Number(rcjlb) == Number(3) && jxde ) {
- for (let j = 0; j < jxde.length; j++) {
- if (jxde[j]["jxbh"] == bianhao) {
- if(jxde[j]["jxmc"] == entry[2])hit = true;
- let danjia = Number(entry[5]);
- if (danjia != jxde[j]["tbdj"]) {
- //console.log(`[${i},5]danjia bu yizhi`);
- toHighlight.push({row: i, col: 5, renderer: "customStylesRenderer"});
- }
- let hanliang = Number(entry[10]);
- if (hanliang != jxde[j]["sl"]) {
- //console.log(`[${i}, 10]hanliang bu yizhi`);
- toHighlight.push({row: i, col: 10, renderer: "customStylesRenderer"});
- }
- }
- }
-
- }
- if (Number(rcjlb) == Number(2) && clde ) {
- for (let j = 0; j < clde.length; j++) {
- if (clde[j]["CLBH"] == bianhao) {
- if(clde[j]["CLMC"] == entry[2])hit = true;
- let danjia = Number(entry[5]);
- if (danjia != clde[j]["YSJG"]) {
- //console.log(`[${i},5]danjia bu yizhi`);
- toHighlight.push({row: i, col: 5, renderer: "customStylesRenderer"});
- }
- let hanliang = Number(entry[10]);
- if (hanliang != clde[j]["SL"]) {
- //console.log(`[${i}, 10]hanliang bu yizhi`);
- toHighlight.push({row: i, col: 10, renderer: "customStylesRenderer"});
- }
- }
- }
-
- }
- if (!hit) {
- toHighlight.push({row: i, col: 1, renderer: "customStylesRenderer"});
- }
- }
- //console.log(toHighlight);
- highlight.current = toHighlight;
- }
- let bzrcjhl = [["人材机编码", "名称", "单位", "单价", "合价", "含量"]]
- if (rgde)
- for (let i = 0; i < rgde.length; i++) {
- bzrcjhl.push([rgde[i]["CLBH"], rgde[i]["CLMC"], rgde[i]["JLDW"], rgde[i]["YSJG"], rgde[i]["gf"], rgde[i]["gr"]]);
- }
-
- if (clde)
- for (let i = 0; i < clde.length; i++) {
- bzrcjhl.push([clde[i]["CLBH"], clde[i]["CLMC"], clde[i]["JLDW"], clde[i]["YSJG"], clde[i]["HJ"], clde[i]["SL"]]);
- }
- if (jxde)
- for (let i = 0; i < jxde.length; i++) {
- bzrcjhl.push([jxde[i]["jxbh"], jxde[i]["jxmc"], jxde[i]["DW"], jxde[i]["tbdj"], jxde[i]["hj"], jxde[i]["sl"]]);
- }
- setRcjhl2(bzrcjhl);
- }, [rgde, jxde, clde]
- );
- React.useEffect(
- () => {
- console.log(beizhu);
- let result = [];
- if (beizhu != null) {
- let keys = Object.keys(beizhu["BZBH"]);
- for(let i = 0; i < keys.length; i++) {
- let key = keys[i];
- result.push({'key': i+1, '序号': i+1, '编号': beizhu["BZBH"][key], '说明': beizhu["SM"][key]});//序号很重要
- }
- setFuzhu(result);
- let newSelect = extractFuzhu(debmRef.current);
- setSelectedRowKeys(newSelect);
- //setSelectedRowKeys([1]);
-
- }
- }, [beizhu]
- );
- React.useEffect(
- () => {
- beizhuFKRef.current = beizhuFK;
- }, [beizhuFK]
- );
- React.useEffect(
- () => {
- myTable.current.deselectRow();
- //console.log(dingeclick);
- if (selectedRowKeysTable.current.length > 0 ) {
- const [success, data, key] = changguidinge(JSON.parse(dingeclick), selectedRowKeysTable.current[0]);
- if (success) {
- myTable.current.updateData(data.filter(x=>x['key'] == selectedRowKeysTableParent.current)).then(function(){
- let getRow = myTable.current.getRows(); //get array of currently selected row components.
- let component = null;
- for(let i = 0; i < getRow.length; i++) {
- let entry = getRow[i]._row.modules.dataTree.children;
- for(let j = 0; j < entry.length; j++) {
- let child = entry[j];
- if(child.data['key'] == key) {
- //console.log(child);
- component = child.component;
- break;
- }
-
- }
- }
-
- component.select();
- handleSelect(component);
-
-
- });
- }
- }
-
- }, [dingeclick]//常规添加定额
- );
- React.useEffect(
- () => {
- //console.log(dingeclick);
- if (selectedRowKeysTable.current.length > 0 ) {
- const data = huan(JSON.parse(tihuanClick), selectedRowKeysTable.current[0]);
-
- myTable.current.updateData(data.filter(x=>x['key'] == selectedRowKeysTableParent.current)).then(function(){
- let getRow = myTable.current.getRows(); //get array of currently selected row components.
- let component = null;
- for(let i = 0; i < getRow.length; i++) {
- let entry = getRow[i]._row.modules.dataTree.children;
- for(let j = 0; j < entry.length; j++) {
- let child = entry[j];
- if(child.data['key'] == selectedRowKeysTable.current[0]) {
- //console.log(child);
- component = child.component;
- break;
- }
-
- }
- }
-
-
- handleSelect(component);
-
-
- });
-
-
-
- }
-
- }, [tihuanClick]//替换定额人材机
- );
- return (
- <Stack spacing={2}>
- <Box>
- <Stack direction='row' spacing={2}>
- <Button variant="outlined" size="small" onClick={() => {
- if (selectedRowKeysTable.current.length > 0) {
- let getRow = myTable.current.getRows(); //get array of currently selected row components.
- let hit = false;
- for(let i = 0; i < getRow.length; i++) {
- if (getRow[i]._row.data['key'] == selectedRowKeysTable.current[0]) {
- hit = true;
- }
- }
- if (hit) {
- suanshiCallback();
- }
- }
-
-
- }}
- >定额(算式)</Button>
- <Button variant="outlined" size="small" onClick={() => {
- if (selectedRowKeysTable.current.length > 0) {
- const [success, data] = danxiangdinge(selectedRowKeysTable.current[0]);
- if(success) {
- myTable.current.updateData(data.filter(x=>x['key'] == selectedRowKeysTableParent.current)).then(function(){
- selectedRowKeysTable.current = [];
- selectedRowKeysTableParent.current = null;
- setRcjhl([]);
- setFuzhu([]);
- isQdrcj.current = true;
- highlight.current = [];
- });
- }
- }
-
-
- }}
- >单项定额</Button>
- <Button variant="outlined" size="small" onClick={() => {
- if (selectedRowKeysTable.current.length > 0) {
- let newData = shanchu(selectedRowKeysTable.current[0]);
- myTable.current.updateData(newData.filter(x=>x['key'] == selectedRowKeysTableParent.current)).then(function(){
- if (newData.filter(x=>x['key'] == selectedRowKeysTable.current[0]).length == 0) {
- selectedRowKeysTable.current = [];
- selectedRowKeysTableParent.current = [];
- setRcjhl([]);
- setFuzhu([]);
- isQdrcj.current = true;
- highlight.current = [];
- }
- });
-
-
-
- }
-
-
-
- }}
- >删除</Button>
- <Button variant="outlined" size="small" onClick={() => {
- let newData = undo();
- myTable.current.updateData(newData).then(function(){
-
- selectedRowKeysTable.current = [];
- selectedRowKeysTableParent.current = null;
- setRcjhl([]);
- setFuzhu([]);
- isQdrcj.current = true;
- highlight.current = [];
-
-
- });
-
- }}
- >撤销</Button>
- <Button variant="outlined" size="small" onClick={() => {
- let newData = redo();
- myTable.current.updateData(newData).then(function(){
- selectedRowKeysTable.current = [];
- selectedRowKeysTableParent.current = null;
- setRcjhl([]);
- setFuzhu([]);
- isQdrcj.current = true;
- highlight.current = [];
- });
-
-
- }}
- >重做</Button>
- <Button variant="outlined" size="small" onClick={() => {
- console.log("save to cloud");
- loadingCallback();
-
- }}
- >保存</Button>
-
- </Stack>
- <div ref={myRef}>
- </div>
- </Box>
- <Box >
-
- <TabContext value={valueTab}>
- <Box sx={{ borderBottom: 1, borderColor: 'divider' }}>
- <TabList sx={{minHeight: '24px'}} onChange={handleChange} aria-label="lab API tabs example">
- <Tab sx={{p: 0, minHeight: '24px'}} label="人材机含量" value="1" />
- <Tab sx={{p: 0, minHeight: '24px'}} label="标准定额人材机含量" value="2" />
- <Tab sx={{p: 0, minHeight: '24px'}} label="定额附注" value="3" />
- <Tab sx={{p: 0, minHeight: '24px'}} label="组价推荐" value="4" />
- </TabList>
- </Box>
-
- <TabPanel sx={{p: 1}} value="1">
- <HotTable
- nestedRows={false}
- data={rcjhl
- }
- //cell={highlight}
- manualColumnResize={true}
- rowHeaders={true}
- colHeaders={true}
- height="190"
-
-
- cells={(row, col) => {
- if (isQdrcj.current) return {readOnly: true, renderer: "customStylesRenderer"};
- if (col == 8) {
- return { readOnly: true, renderer: "customStylesRenderer" };
- }
- if (row === 0) {
- return { readOnly: true, renderer: "customStylesRenderer" };
- }
- if (col <= 1 || col === 11) {
- return { readOnly: true, renderer: "customStylesRenderer" };
- }
-
- return {renderer: "customStylesRenderer" };
- }}
- fixedRowsTop={1}
- selectionMode="single"
- autoWrapRow={false}
- autoWrapCol={false}
- ref = {hotRcjRef}
- afterChange={afterChange}
- afterOnCellMouseDown={afterOnCellMouseDown}
- licenseKey="non-commercial-and-evaluation" // for non-commercial use only
- >
-
- </HotTable>
- </TabPanel>
- <TabPanel sx={{p: 1}} value="2">
- <HotTable
- nestedRows={false}
- data={rcjhl2
- }
- manualColumnResize={true}
- rowHeaders={true}
- colHeaders={true}
- height="190"
- readOnly={true}
- fixedRowsTop={1}
- selectionMode="single"
- autoWrapRow={false}
- autoWrapCol={false}
- licenseKey="non-commercial-and-evaluation" // for non-commercial use only
- />
-
- </TabPanel>
- <TabPanel sx={{p: 1}} value="3">
- <Box sx={{maxHeight: `190px`}}>
- <ConfigProvider
- locale={zhCN}
- theme={{
- components: {
- Table: {
- /* here is your component tokens */
- cellPaddingBlock : 8
- },
- },
- }}
- >
- <Table
- scroll={{ x: 'max-content' , y : 190}}
- pagination={false}
- rowSelection={rowSelection}
- columns={
- [
- { title: '序号', dataIndex: '序号', width : 80},
- {
- title: '编号',
- dataIndex: '编号',
-
- },
- {
- title: '说明',
- dataIndex: '说明',
- width: 550
-
- },
-
- ]
- }
- dataSource={fuzhu} />
- </ConfigProvider>
- </Box>
-
- </TabPanel>
- <TabPanel sx={{p: 1}} value="4">
- <HotTable
- nestedRows={false}
- data={tuijian
- }
- ref = {hotTuijianRef}
- manualColumnResize={true}
- rowHeaders={true}
- colHeaders={true}
- height="190"
- readOnly={true}
- fixedRowsTop={1}
- selectionMode="single"
- autoWrapRow={false}
- autoWrapCol={false}
- licenseKey="non-commercial-and-evaluation" // for non-commercial use only
- />
- </TabPanel>
- </TabContext>
- </Box>
- </Stack>
-
- );
- }
|