Compare commits

...

28 Commits

Author SHA1 Message Date
lys ebdc58b6b9 Merge branch 'release/2.19.1.2503.01-业务线个税' into custom-联特 2025-12-12 15:50:36 +08:00
lys fa55404b2a Merge branch 'release/3.0.1.2504.01-合并业务线' into release/2.19.1.2503.01-业务线个税 2025-11-20 16:24:59 +08:00
lys 372d9d53ee release/3.0.1.2504.01-合并业务线 2025-11-13 16:40:45 +08:00
lys d3d57b81ae Merge branch 'release/3.0.1.2504.01-合并业务线' into release/2.19.1.2503.01-业务线个税 2025-11-06 13:42:21 +08:00
lys 9efeb109e9 release/3.0.1.2504.01-合并业务线 2025-10-30 10:17:27 +08:00
lys c00d3f446d release/3.0.1.2504.01-合并业务线 2025-10-28 15:09:36 +08:00
lys 92c966310c feature/3.0.1.2504.01-下拉框多选支持搜索 2025-10-27 14:55:34 +08:00
lys 8ba30ad49d Merge branch 'release/3.0.1.2504.01-合并业务线' into release/2.19.1.2503.01-业务线个税 2025-10-23 18:23:22 +08:00
lys 27f9da9aa9 release/3.0.1.2504.01-合并业务线 2025-10-14 15:54:00 +08:00
lys 7f4e47b5bd release/3.0.1.2504.01-合并业务线 2025-10-13 17:11:10 +08:00
lys b0d60afc11 release/3.0.1.2504.01-合并业务线 2025-10-13 16:14:09 +08:00
lys 40d84b30fd Merge branch 'release/2.19.1.2501.01' into release/3.0.1.2504.01-合并业务线 2025-10-10 11:05:48 +08:00
lys efb5af1b10 release/2.19.1.2501.01 2025-10-10 11:05:18 +08:00
lys 61ff174303 Merge branch 'release/2.19.1.2501.01' into release/3.0.1.2504.01-合并业务线 2025-09-12 09:58:22 +08:00
lys 915e946c3e release/2.19.1.2501.01 2025-09-12 09:57:54 +08:00
lys dbffdc2f5a Merge branch 'release/3.0.1.2504.01-合并业务线' into release/2.19.1.2503.01-业务线个税 2025-09-08 18:23:03 +08:00
lys ff1da8b19b release/2.19.1.2501.01 2025-09-04 09:59:22 +08:00
lys 9cda9aa414 release/3.0.1.2504.01-合并业务线 2025-09-04 09:58:43 +08:00
lys 000e8acdaf Merge branch 'release/2.19.1.2501.01' into release/3.0.1.2504.01-合并业务线 2025-09-02 15:04:34 +08:00
lys 5ef2c5ecb4 release/2.19.1.2501.01 2025-09-02 14:52:58 +08:00
lys 5da8661bbd 0release/3.0.1.2504.01-合并业务线 2025-08-26 14:25:26 +08:00
lys 5f80e9e6b3 release/2.19.1.2501.01 2025-08-04 16:29:06 +08:00
lys 2b39980ed0 release/2.19.1.2501.01 2025-08-04 16:24:41 +08:00
lys 2321266533 release/2.19.1.2501.01 2025-08-04 16:23:10 +08:00
lys 32162c9cba Merge branch 'release/2.19.1.2501.01' into release/3.0.1.2504.01-合并业务线 2025-07-24 16:54:25 +08:00
lys 3d8b242889 release/2.19.1.2501.01 2025-07-24 16:51:19 +08:00
lys 9121309221 Merge branch 'release/2.19.1.2501.01' into release/3.0.1.2504.01-合并业务线 2025-07-24 16:45:23 +08:00
lys 2871043810 release/2.19.1.2501.01 2025-07-17 17:28:48 +08:00
11 changed files with 247 additions and 31 deletions

View File

@ -0,0 +1,127 @@
/*
* 自定义多选下拉框
* 支持搜索
* @Author: 黎永顺
* @Date: 2024/9/13
* @Wechat:
* @Email: 971387674@qq.com
* @description:
*/
import React, { Component } from "react";
import { WeaCheckbox, WeaInput, WeaLocaleProvider, WeaNewScroll } from "ecCom";
import classNames from "classnames";
import { Dropdown } from "antd";
import "./index.less";
const getLabel = WeaLocaleProvider.getLabel;
class Index extends Component {
constructor(props) {
super(props);
this.state = {
visible: false, value: props.value ? props.value.split(",") : [],
keywords: ""
};
}
isAllChecked = () => {
const { options } = this.props, { value, keywords } = this.state;
let v = "0";
if (_.uniq(value).length === options.filter(k => k.showname.indexOf(keywords) >= 0).length) v = "1";
return v;
};
isChecked = (v) => {
const { value } = this.state;
return value.indexOf(v) > -1 ? "1" : "0";
};
onAllChange = (v) => {
const { options, onChange } = this.props, { keywords } = this.state;
let values = [], shownames = [];
if (v == 1) {
options.filter(k => k.showname.indexOf(keywords) >= 0).forEach(o => {
values.push(o.key);
shownames.push(o.showname);
});
}
this.setState({ value: values });
onChange && onChange(values.join(","), shownames.join(","));
};
onItemChange = (v, id) => {
const { onChange, options } = this.props, { value } = this.state;
let values = !_.isEmpty(value) ? value : [], shownames = [];
if (v == "1") {
values.push(id);
} else {
values = values.filter(val => val !== id);
}
values.forEach(val => {
let target = options.filter((data) => data.key == val)[0];
if (target) shownames.push(target.showname);
});
this.setState({ value: values });
onChange && onChange(values.join(","), shownames.join(","));
};
getList = () => {
const { options } = this.props, { keywords } = this.state;
let style = {};
if (options.length > 5) style = { height: 200 };
return <div className="wea-select-panel" style={style}>
<WeaNewScroll className="wea-select-scroll" height="100%">
<div className="wea-select-panel-item">
<WeaInput value={keywords} onChange={keywords => this.setState({ keywords })}/>
</div>
<div className="wea-select-panel-item">
<WeaCheckbox
content={"全选"}
value={this.isAllChecked()}
onChange={this.onAllChange}
>
</WeaCheckbox>
</div>
{options && options.filter(k => k.showname.indexOf(keywords) >= 0).map(o => {
return <div className="wea-select-panel-item">
<WeaCheckbox
content={o.showname}
value={this.isChecked(o.key)}
onChange={(v) => this.onItemChange(v, o.key)}
>
</WeaCheckbox>
</div>;
})}
</WeaNewScroll>
</div>;
};
getShownames = () => {
const { options } = this.props;
let { value } = this.state;
let shownames = [];
value.forEach(val => {
let target = options.filter((data) => data.key == val)[0];
if (target) shownames.push(target.showname);
});
return shownames.join(",");
};
render() {
const { visible } = this.state, { layout } = this.props;
const clsname = classNames({
"wea-associative-search-mult": true
});
return (<div className={`customMuiSelect wea-associative-search ${clsname}`} ref="customSelectMui">
<Dropdown trigger={["click"]} overlay={this.getList()}
onVisibleChange={visible => this.setState({ visible })} visible={visible}
getPopupContainer={() => (layout || document.body)}>
<div className="wea-select-input wdb cursor-pointer" ref="selectInput">
<span className="wdb">{this.getShownames()}</span>
{!this.state.visible ? <i className="icon-coms-down2 arrow"/> : <i className="icon-coms-up2 arrow"/>}
</div>
</Dropdown>
</div>);
}
}
export default Index;

View File

@ -0,0 +1,60 @@
.customMuiSelect {
border: none;
padding: 0;
.wea-select-input {
min-width: 100px;
width: 100%;
display: inline-block;
padding: 4px 17px 4px 4px;
position: relative;
min-height: 30px;
border: 1px solid #d9d9d9;
user-select: none;
height: 30px;
white-space: nowrap;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
overflow: hidden;
.wdb {
word-break: break-all !important;
word-wrap: break-word !important;
}
.cursor-pointer {
cursor: pointer;
}
&:hover, &:focus {
border-color: #57c5f7;
}
.arrow {
position: absolute;
right: 4px;
top: 8px;
color: #979797;
}
}
}
.wea-select-panel {
padding: 5px 0;
max-height: 200px;
border-radius: 3px;
background: #fff;
border: 1px solid #ddd;
.wea-select-panel-item {
padding: 5px 10px;
&:hover {
background-color: #e9f7ff;
}
}
}

View File

@ -62,7 +62,7 @@ class Index extends Component {
if (o.dataIndex === "username") {
return { ...o, width: 150, fixed: "left" };
}
return { ...o, width: 150 };
return { ...o, width: 150, render: (v) => (<span title={v}>{v}</span>) };
}), {
dataIndex: "options", title: getLabel(30585, "操作"),
width: 120, render: (_, record) => (

View File

@ -43,5 +43,15 @@
}
}
.wea-new-table {
.ant-table-tbody > tr > td,
.ant-table-thead > tr > th {
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
}

View File

@ -125,17 +125,18 @@ class EditCalcTable extends Component {
}, 500);
});
const { routeParams: { salaryAcctRecordId } } = this.props;
updateLockStatus({ ...payload, salaryAcctRecordId }).then(({ status, errormsg }) => {
if (status) {
clearInterval(this.timerLock);
this.setState({
progressVisible: false,
progress: 0
}, () => this.queryCalcResultList());
} else {
message.error(errormsg);
}
});
updateLockStatus({ ...payload, salaryAcctRecordId, acctEmpIds: this.state.selectedRowKeys })
.then(({ status, errormsg }) => {
if (status) {
clearInterval(this.timerLock);
this.setState({
progressVisible: false,
progress: 0
}, () => this.queryCalcResultList());
} else {
message.error(errormsg);
}
});
}
});
};
@ -341,4 +342,4 @@ const traverse = (arr, calcDetail) => {
};
}
});
};
};

View File

@ -2,6 +2,7 @@ import React from "react";
import { inject, observer } from "mobx-react";
import { WeaLocaleProvider, WeaTable, WeaTop } from "ecCom";
import { getQueryString } from "../../util/url";
import { sysinfo } from "../../apis/ruleconfig";
import * as API from "../../apis/declare";
import { Button } from "antd";
import "./index.less";
@ -14,15 +15,21 @@ export default class GenerateDeclarationDetail extends React.Component {
super(props);
this.state = {
loading: false, dataSource: [], columns: [], declareInfo: {},
pageInfo: { current: 1, pageSize: 10, total: 0 }
pageInfo: { current: 1, pageSize: 10, total: 0 }, sysinfo: {}
};
}
componentDidMount() {
this.getDetailList();
this.getDeclareInfo();
this.getSysinfo();
}
getSysinfo = () => {
sysinfo().then(({ status, data: sysinfo }) => {
if (status) this.setState({ sysinfo });
});
};
getDetailList = () => {
const { pageInfo } = this.state;
const payload = {
@ -64,9 +71,10 @@ export default class GenerateDeclarationDetail extends React.Component {
window.open(url, "_self");
};
renderTitle = () => {
const { declareInfo } = this.state;
const { declareInfo, sysinfo } = this.state;
const title = sysinfo["TAX_DECLARATION_DATE_TYPE"] === "1" ? getLabel(111, "税款所属期") : getLabel(111, "薪资所属月");
return (<React.Fragment>
<span>{getLabel(111, "薪资所属月")}{declareInfo.salaryMonth}</span>
<span>{title}{declareInfo.salaryMonth}</span>
<span style={{ marginLeft: "10px" }}>{getLabel(111, "个税扣缴义务人")}{declareInfo.taxAgentName}</span>
</React.Fragment>);
};

View File

@ -14,7 +14,7 @@ import { confirmSalaryBill, feedBackSalaryBill, payrollCheckType } from "../../a
import CaptchaModal from "../../components/captchaModal";
import "./index.less";
const isIPhone = new RegExp("\\biPhone\\b|\\biPod\\b", "i").test(window.navigator.userAgent);
const isPhone = /(iPhone|iPad|iPod|iOS|Android)/i.test(window.navigator.userAgent);
const isEm = window.navigator.userAgent.indexOf("E-Mobile7") >= 0;
const { getLabel } = WeaLocaleProvider;
@ -84,7 +84,18 @@ class MySalaryView extends Component {
const { captchaVisible, mySalaryStore } = this.state;
const { params: { salaryInfoId } } = this.props;
if (_.isEmpty(mySalaryStore)) {
return <div></div>;
return <div>
<CaptchaModal
visible={captchaVisible} id={salaryInfoId}
onCancel={() => this.setState({ captchaVisible: false })}
onConfirm={() => {
this.props.mySalaryStore.setInitEmVerify();
this.props.mySalaryStore.getMySalaryBill(Number(salaryInfoId)).then(data => {
this.setState({ mySalaryStore: data });
});
}}
/>
</div>;
}
const { salaryTemplate, salaryGroups, employeeInformation, sendTime } = mySalaryStore;
const salaryProps = {
@ -106,11 +117,6 @@ class MySalaryView extends Component {
</Content>
</div>
</Authority>
<CaptchaModal
visible={captchaVisible} id={salaryInfoId}
onCancel={() => this.setState({ captchaVisible: false })}
onConfirm={() => mySalaryStore.setInitEmVerify()}
/>
</React.Fragment>
);
}
@ -125,8 +131,8 @@ export const ConfirmBtns = (props) => {
<Button type="primary" onClick={props.confirmSalaryBill}>{getLabel(111, "确认")}</Button>
}
{
((props.showFeedback === "1" && !isIPhone) || (props.showFeedback === "1" && isIPhone && isEm)) &&
((props.showFeedback === "1" && !isPhone) || (props.showFeedback === "1" && isEm)) &&
<Button type="ghost" onClick={props.goFeedback}>{getLabel(111, "反馈")}</Button>
}
</div>;
};
};

View File

@ -60,7 +60,8 @@ class PayrollDetail extends Component {
render() {
const { salarySendDetailBaseInfo, showSearchAd, conditions, isQuery, showTotalCell } = this.state;
const { taxAgentStore: { showOperateBtn } } = this.props;
const { taxAgentStore: { PageAndOptAuth } } = this.props;
const showOperateBtn = PageAndOptAuth.opts.length;
const { salaryMonth, template } = salarySendDetailBaseInfo;
const dropMenuDatas = [
{
@ -110,4 +111,4 @@ class PayrollDetail extends Component {
}
}
export default PayrollDetail;
export default PayrollDetail;

View File

@ -70,10 +70,10 @@ class StatisticalMicroSettingsSlide extends Component {
getTaxAgentSelectList = async (props) => {
const [salarySobList, empStatusList] = await Promise.all([
postFetch("/api/bs/hrmsalary/salarysob/listAuth", { filterType: "QUERY_DATA" }),
postFetch("/api/bs/hrmsalary/salarysob/listAuth", { filterType: "QUERY_DATA", isShare: props.isShare }),
commonEnumList({ enumClass: "com.engine.salary.enums.salarysob.SalaryEmployeeStatusEnum" })
]);
postFetch("/api/bs/hrmsalary/taxAgent/listAuth", { filterType: "QUERY_DATA" })
postFetch("/api/bs/hrmsalary/taxAgent/listAuth", { filterType: "QUERY_DATA", isShare: props.isShare })
.then(({ status, data }) => {
if (status) {
const conditions = _.map(condition, item => {

View File

@ -22,6 +22,9 @@ export const socialAccountConditions = [
lanId: 537996,
labelcol: 6,
options: [],
otherParams: {
showSearch: true, optionFilterProp: "children"
},
rules: "required|string",
viewAttr: 3
},

View File

@ -27,7 +27,7 @@ class MakeupDifference extends Component {
tmpUrl: "exportSiaccountWelfarebalanceimporttemplatetetemplate",
cacheUrl: "cacheBalanceWelfareList",
importUrl: "importBalanceInsuranceDetail",
importparams: {}
importparams: {}, ..._.pick(this.props, ["billMonth", "paymentOrganization"])
},
returnEditPersonSlide: {
title: "", editId: "", visible: false
@ -152,4 +152,4 @@ class MakeupDifference extends Component {
}
}
export default MakeupDifference;
export default MakeupDifference;