Merge remote-tracking branch 'origin/main' into main

main
wuyize 2023-01-01 18:12:57 +08:00
commit d313886764
2 changed files with 137 additions and 42 deletions

View File

@ -70,17 +70,17 @@ const statusEnum = {
class Subpage extends React.Component<any, any> { class Subpage extends React.Component<any, any> {
tableAction = React.createRef<ActionType>(); tableAction = React.createRef<ActionType>();
departments=new Map<number,string>()
constructor(props: {}) { constructor(props: {}) {
super(props); super(props);
this.state = { this.state = {
searchWord: "", searchWord: "",
onCreated: false, onCreated: false,
} }
this.pullDepartment() this.pullDepartment()
} }
department = new Map<number, string>()
createRef = React.createRef<ReimbursementCreate>(); createRef = React.createRef<ReimbursementCreate>();
columns: ProColumns<TableListItem>[] = [ columns: ProColumns<TableListItem>[] = [
{ {
@ -145,7 +145,7 @@ class Subpage extends React.Component<any, any> {
width: 80, width: 80,
search: false, search: false,
dataIndex: 'departmentId', dataIndex: 'departmentId',
valueEnum: this.department, valueEnum: this.departments,
filters: true, filters: true,
onFilter: false, onFilter: false,
//render: (_) => <a>{_}</a>, //render: (_) => <a>{_}</a>,
@ -224,12 +224,13 @@ class Subpage extends React.Component<any, any> {
} }
pullDepartment() { pullDepartment() {
this.department.clear()
axiosInstance.get('common/department').then(response => { axiosInstance.get('common/department').then(response => {
this.departments.clear()
response.data.forEach((value: any) => { response.data.forEach((value: any) => {
this.department.set(value.departmentId, value.departmentName) this.departments.set(value.departmentId, value.departmentName)
} }
) )
console.log(this.departments)
this.tableAction.current?.reload() this.tableAction.current?.reload()
}) })

View File

@ -1,6 +1,6 @@
import React, {ReactNode} from "react"; import React, {Key, ReactNode} from "react";
import {ReimbursementApplication} from "../../../models/Reimbursement"; import {ReimbursementApplication} from "../../../models/Reimbursement";
import {Button, Col, Form, Input, InputNumber, Modal, Popover, Row, Select} from "antd"; import {Button, Card, Col, Form, Input, InputNumber, Modal, Popover, Radio, Row, Select} from "antd";
import {FormInstance} from "antd/es/form"; import {FormInstance} from "antd/es/form";
import {Invoice} from "../../../models/Reimbursement"; import {Invoice} from "../../../models/Reimbursement";
import axiosInstance from "../../../utils/axiosInstance"; import axiosInstance from "../../../utils/axiosInstance";
@ -11,13 +11,81 @@ import {Dropdown, message, Space, Tooltip} from 'antd';
import {store} from "../../../models/store"; import {store} from "../../../models/store";
import {FieldData} from "rc-field-form/lib/interface"; import {FieldData} from "rc-field-form/lib/interface";
function InvoiceCard(props: { invoice: Invoice }) {
const invoice = props.invoice;
return (
<Card
style={{width: 300}}
cover={
<img
alt="example"
src="https://gw.alipayobjects.com/zos/rmsportal/JiqGstEfoWAOHiTxclqi.png"
/>
}
>
</Card>
)
}
class InvoiceRadioCard extends React.Component<any, any> {
constructor(props: {
invoice: any;
hidden: boolean;
selected: boolean;
index: number;
click: any;
}) {
super(props);
this.state = {
invoice: props.invoice,
hidden: props.hidden,
selected: props.selected,
index: props.index,
click: props.click
}
}
static getDerivedStateFromProps(props: {
invoice: any;
hidden: boolean;
selected: boolean;
index: number;
click: any;
}) {
return {
invoice: props.invoice,
hidden: props.hidden,
selected: props.selected,
index: props.index,
click: props.click
}
}
select(e: any) {
if (this.state.selected)
return
this.setState({selected: true})
this.props.click(this.props.index, true)
}
render() {
return (
<Card hidden={this.state.hidden}
cover={<img alt="example" src="https://gw.alipayobjects.com/zos/rmsportal/JiqGstEfoWAOHiTxclqi.png"/>}
actions={[<Radio checked={this.state.selected} onClick={(e) => {
this.select(e)
}} defaultChecked={this.state.selected}/>]}>
</Card>
)
}
}
class SingleInvoiceSelector extends React.Component<any, any> { class SingleInvoiceSelector extends React.Component<any, any> {
value: any value: any
onChange: any onChange: any
constructor(props: { constructor(props: {
invoices: Invoice[];
pickerOpen: boolean; pickerOpen: boolean;
pickerTitle: string; pickerTitle: string;
value: any; value: any;
@ -27,9 +95,10 @@ class SingleInvoiceSelector extends React.Component<any, any> {
this.value = props.value this.value = props.value
this.onChange = props.onChange this.onChange = props.onChange
this.state = { this.state = {
selectedIndex: -1,
selectedInvoice: {}, selectedInvoice: {},
singleLimit: true, singleLimit: true,
invoices: props.invoices, invoices: [{invoiceId:1},{invoiceId:2},{invoiceId:3}],
pickerOpen: props.pickerOpen, pickerOpen: props.pickerOpen,
pickerTitle: props.pickerTitle pickerTitle: props.pickerTitle
} }
@ -40,21 +109,55 @@ class SingleInvoiceSelector extends React.Component<any, any> {
if (this.state.selectedInvoice.invoiceId === null || this.state.selectedInvoice.invoiceId === undefined) { if (this.state.selectedInvoice.invoiceId === null || this.state.selectedInvoice.invoiceId === undefined) {
return (<>{this.state.pickerTitle}</>) return (<>{this.state.pickerTitle}</>)
} }
return (<> return (<InvoiceCard invoice={this.state.selectedInvoice}/>)
</>)
} }
pickerOpen = (value: boolean) => { pickerOpen = (value: boolean) => {
this.setState({pickerOpen: value}) this.setState({pickerOpen: value})
} }
confirm = () => { confirm = () => {
//TODO
this.onChange(this.state.selectedInvoice.invoiceId)
this.setState({pickerOpen: false}) this.setState({pickerOpen: false})
} }
cancelSelect = () => { cancelSelect = () => {
this.setState({selectedInvoices: []}) this.onChange({})
this.setState({selectedIndex: -1, selectedInvoice: {}})
}
click = (index: number, status: boolean) => {
if (status) {
this.setState({selectedIndex: index, selectedInvoice: this.state.invoices[index]})
this.onChange({invoice: this.state.invoices[index]})
}
}
cardList = () => {
let cards = []
for (let i = 0; i < this.state.invoices.length; i += 2) {
if (i + 1 >= this.state.invoices.length) {
cards.push(
<Row gutter={18}>
<Col span={12}>
<InvoiceRadioCard invoice={this.state.invoices[i]} selected={this.state.selectedIndex === i}
hidden={false} index={i} click={this.click}/>
</Col>
</Row>)
} else {
cards.push(
<Row gutter={18}>
<Col span={12}>
<InvoiceRadioCard invoice={this.state.invoices[i]} selected={this.state.selectedIndex === i}
hidden={false} index={i} click={this.click}/>
</Col>
<Col span={12}>
<InvoiceRadioCard invoice={this.state.invoices[i + 1]}
selected={this.state.selectedIndex === i + 1}
hidden={false} index={i + 1} click={this.click}/>
</Col>
</Row>)
}
}
return (
<>{cards}</>
)
} }
render() { render() {
@ -74,11 +177,16 @@ class SingleInvoiceSelector extends React.Component<any, any> {
onCancel={() => this.pickerOpen(false)} onCancel={() => this.pickerOpen(false)}
destroyOnClose={true} destroyOnClose={true}
footer={[ footer={[
<Button key="clear" type="primary" onClick={this.cancelSelect}>
</Button>,
<Button key="confirm" type="primary" onClick={this.confirm}> <Button key="confirm" type="primary" onClick={this.confirm}>
</Button> </Button>
]} ]}
> >
{this.cardList()}
</Modal> </Modal>
</>) </>)
} }
@ -141,14 +249,6 @@ class ReimbursementCreate extends React.Component<any, any> {
}) })
} }
findInvoiceById = (id: number):null|Invoice => {
//return this.state.invoices[0]
this.state.invoices.map((item:Invoice)=>{
if(item.invoiceId === id)
return item
})
return null
}
handleMenuClick: MenuProps['onClick'] = (e) => { handleMenuClick: MenuProps['onClick'] = (e) => {
this.setState({ this.setState({
selectedDepartment: { selectedDepartment: {
@ -173,23 +273,17 @@ class ReimbursementCreate extends React.Component<any, any> {
this.setState({duration: value}) this.setState({duration: value})
} }
formFieldsChange = (changedFields: any, allFields: any) => { formFieldsChange = (changedFields: any, allFields: any) => {
let block = false let start = allFields['departureInvoiceId']
let startId = allFields['departureInvoiceId'] let end = allFields['destinationInvoiceId']
let endId = allFields['destinationInvoiceId'] if (start !== undefined && end !== undefined && start.invoiceDate !== undefined && end.invoiceDate !== undefined) {
if (typeof startId == "number" && typeof endId == "number") { let x = Math.floor((Date.parse(end.invoiceDate) - Date.parse(start.invoiceDate)) / 24 / 60 / 60 / 1000) + 1
let s = this.findInvoiceById(startId) this.setState({back: true, duration: x})
let t = this.findInvoiceById(endId) this.formRef.current?.setFieldValue('duration', x)
if (s !== null && t !== null) { }else{
let x=Math.floor((Date.parse(t.invoiceDate)-Date.parse(s.invoiceDate))/24/60/60/1000) + 1 this.setState({back: false, duration: 0})
this.setState({back:true,duration:x}) this.formRef.current?.setFieldValue('duration', 0)
this.formRef.current?.setFieldValue('duration',x)
block = true
}
}
if(!block){
this.setState({back:false,duration:0})
this.formRef.current?.setFieldValue('duration',0)
} }
console.log(allFields)
} }
render() { render() {
@ -229,13 +323,13 @@ class ReimbursementCreate extends React.Component<any, any> {
<Row gutter={18}> <Row gutter={18}>
<Col span={12}> <Col span={12}>
<Form.Item label="出发票据" name="departureInvoiceId" rules={[{required: true}]}> <Form.Item help="" label="出发票据" name="departureInvoice" rules={[{required: true}]}>
<SingleInvoiceSelector invoices={[]} pickerOpen={false} <SingleInvoiceSelector invoices={[]} pickerOpen={false}
pickerTitle={"出发票据"} ref={this.invoiceSelector1}/> pickerTitle={"出发票据"} ref={this.invoiceSelector1}/>
</Form.Item> </Form.Item>
</Col> </Col>
<Col span={12}> <Col span={12}>
<Form.Item label="返程票据" name="destinationInvoiceId" rules={[{required: false}]}> <Form.Item label="返程票据" name="destinationInvoice" rules={[{required: false}]}>
<SingleInvoiceSelector invoices={[]} pickerOpen={false} <SingleInvoiceSelector invoices={[]} pickerOpen={false}
pickerTitle={"返程票据"} ref={this.invoiceSelector2}/> pickerTitle={"返程票据"} ref={this.invoiceSelector2}/>
</Form.Item> </Form.Item>