Merge branch 'master' into feature/业务线管理

release/2.19.1.2503.01-业务线个税
lys 8 months ago
commit 7b95a64415

@ -105,7 +105,7 @@ const index: FunctionComponent<Props> = (props) => {
i18n: item.i18n, i18n: item.i18n,
onCell: (record: any) => ({ onCell: (record: any) => ({
onContextMenu: (e: any) => { onContextMenu: (e: any) => {
record.lockItems && e.preventDefault(); !item.calcDetail && e.preventDefault();
} }
}), }),
render: (text: string, record: any) => { render: (text: string, record: any) => {
@ -134,7 +134,7 @@ const index: FunctionComponent<Props> = (props) => {
} }
]; ];
return ( return (
<Dropdown menu={{ items: record.lockItems ? items : [] }} trigger={["contextMenu"]} overlayClassName={styles.contextMenu} destroyPopupOnHide> <Dropdown menu={{ items: !item.calcDetail ? items : [] }} trigger={["contextMenu"]} overlayClassName={styles.contextMenu} destroyPopupOnHide>
<span className={styles.contentSpan}> <span className={styles.contentSpan}>
<span title={text} className={styles.contentTitle} style={{ color: `${record?.[item.dataIndex + "_color"]}` }}> <span title={text} className={styles.contentTitle} style={{ color: `${record?.[item.dataIndex + "_color"]}` }}>
{text} {text}

@ -15,6 +15,7 @@ export type extraType = {
rowKey: string; rowKey: string;
showTotalCell: boolean; showTotalCell: boolean;
isSpecial: boolean; isSpecial: boolean;
showRowSelection: boolean;
}; };
const UnitTable: FC = (props) => { const UnitTable: FC = (props) => {
const [unitTableType, setUnitTableType] = useState<string>(""); const [unitTableType, setUnitTableType] = useState<string>("");
@ -48,7 +49,8 @@ const UnitTable: FC = (props) => {
rowKey, rowKey,
showTotalCell = false, showTotalCell = false,
sumDataSource = {}, sumDataSource = {},
isSpecial = false isSpecial = false,
showRowSelection = true
} = data; } = data;
setI18n(i18n); setI18n(i18n);
setColumns(columns); setColumns(columns);
@ -63,6 +65,7 @@ const UnitTable: FC = (props) => {
rowKey, rowKey,
showTotalCell, showTotalCell,
isSpecial, isSpecial,
showRowSelection,
selectedRowKeys: [...(extraParams.selectedRowKeys as string[] | number[]), ...rowKeys] selectedRowKeys: [...(extraParams.selectedRowKeys as string[] | number[]), ...rowKeys]
}); });
} }
@ -99,15 +102,8 @@ const UnitTable: FC = (props) => {
columns={renderCols(columns, unitTableType, i18n, extraParams)} columns={renderCols(columns, unitTableType, i18n, extraParams)}
scroll={{ x: 1200, y: `calc(100vh - ${extraParams?.scrollHeight || 109}px)` }} scroll={{ x: 1200, y: `calc(100vh - ${extraParams?.scrollHeight || 109}px)` }}
bordered={_.some(columns, (k) => k.children)} bordered={_.some(columns, (k) => k.children)}
rowSelection={!_.isNil(extraParams?.selectedRowKeys) ? rowSelection : undefined} rowSelection={extraParams?.showRowSelection ? rowSelection : undefined}
pagination={ pagination={!_.isNil(pageInfo) ? { ...paginationAction(pageInfo, i18n, onChange), size: "default" } : false}
!_.isNil(pageInfo)
? {
...paginationAction(pageInfo, i18n, onChange),
size: "default"
}
: false
}
summary={() => summary={() =>
!extraParams.showTotalCell ? ( !extraParams.showTotalCell ? (
<></> <></>

@ -69,7 +69,7 @@ export function renderCols(initialState: any[], type: string, i18n?: AnyObject,
width: 185, width: 185,
fixed: "right", fixed: "right",
render: (__: string, record: any) => { render: (__: string, record: any) => {
const { billStatus } = record; const { billStatus, customOptAuth } = record;
const items: MenuProps["items"] = [ const items: MenuProps["items"] = [
{ {
key: "DeleteList", key: "DeleteList",
@ -111,9 +111,11 @@ export function renderCols(initialState: any[], type: string, i18n?: AnyObject,
<Button type="link" onClick={() => postMessageToParent("CALC", record)}> <Button type="link" onClick={() => postMessageToParent("CALC", record)}>
{i18n?.["核算"]} {i18n?.["核算"]}
</Button> </Button>
<Button type="link" onClick={() => postMessageToParent("FILE", record)}> {(_.isEmpty(customOptAuth) || customOptAuth.FILE) && (
{i18n?.["归档"]} <Button type="link" onClick={() => postMessageToParent("FILE", record)}>
</Button> {i18n?.["归档"]}
</Button>
)}
<Dropdown menu={{ items }} placement="bottomRight"> <Dropdown menu={{ items }} placement="bottomRight">
<Button type="link" icon={<MoreOutlined />} /> <Button type="link" icon={<MoreOutlined />} />
</Dropdown> </Dropdown>
@ -124,9 +126,11 @@ export function renderCols(initialState: any[], type: string, i18n?: AnyObject,
<Button type="link" onClick={() => postMessageToParent("VIEW", record)}> <Button type="link" onClick={() => postMessageToParent("VIEW", record)}>
{i18n?.["查看"]} {i18n?.["查看"]}
</Button> </Button>
<Button type="link" onClick={() => postMessageToParent("RECALC", record)}> {(_.isEmpty(customOptAuth) || customOptAuth.RECALC) && (
{i18n?.["重新核算"]} <Button type="link" onClick={() => postMessageToParent("RECALC", record)}>
</Button> {i18n?.["重新核算"]}
</Button>
)}
<Dropdown <Dropdown
menu={{ menu={{
items: [ items: [

Loading…
Cancel
Save