tachybase_todo/packages/plugins/@hera/plugin-rental/src/server/pdf-documents/settlements-document.tsx
wjh 610fee7035 fix: 修改合同编号为合同编码 (#483)
Reviewed-on: daoyoucloud/tachycode#483
Co-authored-by: wjh <wwwjh0710@163.com>
Co-committed-by: wjh <wwwjh0710@163.com>
2024-03-25 17:21:22 +08:00

449 lines
17 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import * as React from 'react';
import { Document, Page, Text, View, StyleSheet, Image, renderToStream } from '@hera/plugin-core';
import * as QRCode from 'qrcode';
import _ from 'lodash';
import { Itemcategory, PromptText } from '../../utils/constants';
import { formatCurrency, formatQuantity, formatPercent } from '../../utils/currencyUtils';
import { converDate } from '../../utils/daysUtils';
import { mapIfHas } from '../../utils/mapUtils';
const fontSizes = {
title: '12px',
subTitle: '9px',
main: '9px',
side: '9px',
};
const styles = StyleSheet.create({
page: {
flexDirection: 'column',
backgroundColor: '#FFF',
fontFamily: 'source-han-sans',
fontWeight: 200,
padding: '12px',
},
title: {
textAlign: 'center',
fontSize: fontSizes.title,
},
subTitle: {
textAlign: 'center',
fontSize: fontSizes.subTitle,
},
content: {
flexDirection: 'row',
marginLeft: '10pt',
marginRight: '10pt',
},
main: {
flex: 1,
},
side: {
width: '11px',
fontSize: fontSizes.side,
paddingLeft: '2px',
},
tableHeader: {
fontSize: fontSizes.main,
flexDirection: 'row',
},
headerLeft: {
flex: 1,
},
headerRight: {
width: '170px',
},
tableContentTitle: {
fontSize: fontSizes.main,
flexDirection: 'row',
},
tableCellLargeTitle: {
flex: 2,
textAlign: 'center',
borderLeft: '1px solid black',
marginLeft: '-1px',
borderTop: '1px solid black',
marginTop: '-1px',
},
tableCellTitle: {
flex: 1,
textAlign: 'center',
borderLeft: '1px solid black',
marginLeft: '-1px',
borderTop: '1px solid black',
marginTop: '-1px',
borderBottom: '1px solid black',
},
tableCellTitleLast: {
flex: 1,
textAlign: 'center',
borderLeft: '1px solid black',
marginLeft: '-1px',
borderTop: '1px solid black',
marginTop: '-1px',
borderRight: '1px solid black',
marginRight: '-1px',
borderBottom: '1px solid black',
},
tableContent: {
fontSize: fontSizes.main,
flexDirection: 'row',
},
tableCell: {
flex: 1,
textAlign: 'right',
borderLeft: '1px solid black',
marginLeft: '-1px',
borderTop: '1px solid black',
marginTop: '-1px',
borderBottom: '1px solid black',
},
tableCellLast: {
flex: 1,
textAlign: 'right',
borderLeft: '1px solid black',
marginLeft: '-1px',
borderTop: '1px solid black',
marginTop: '-1px',
borderRight: '1px solid black',
marginRight: '-1px',
borderBottom: '1px solid black',
},
tableFooter: {
flexDirection: 'row',
},
tableFooterQr: {
width: '50px',
marginLeft: '-50px',
transform: 'translate(50px, 0)',
},
tableFooterLeft: {
flex: 1,
fontSize: fontSizes.main,
border: '1px solid black',
paddingLeft: '50px',
marginLeft: '-1px',
marginTop: '-1px',
borderBottom: '1px solid black',
marginBottom: '-1px',
},
tableFooterRight: {
flex: 1,
fontSize: fontSizes.main,
border: '1px solid black',
paddingRight: '50px',
margin: '-1px',
},
sign: {
marginTop: '20px',
flexDirection: 'row',
},
signPart: {
flex: 1,
fontSize: fontSizes.main,
},
spacing: {
height: '8px',
},
cellInOut: {
flex: '0 1 30px',
},
cellCategory: {
flex: '0 1 40px',
},
cellUnit: {
flex: '0 1 30px',
},
cellDays: {
flex: '0 1 20px',
},
cellName: {
flex: 1.5,
},
});
const PreviewDocument = ({
imageUrl,
calc,
contracts,
result,
}: {
imageUrl: string;
calc: any;
contracts: any;
result: any;
}) => {
// 汇总
const group = {
租金: calc.rent,
维修人工: calc.maintenance ?? 0.0,
无物赔偿: calc.n_compensate ?? 0.0,
有物赔偿: calc.h_compensate ?? 0.0,
装卸运费: calc.loadfreight ?? 0.0,
税率: calc.tax ?? 0.0,
本期费用: calc.current_expenses ?? 0.0,
累计费用: calc.accumulate ?? 0.0,
本期收款: calc.current_collection ?? 0.0,
累计收款: calc.accumulate_collection ?? 0.0,
};
const evenNumber = -1;
let countNum = -1;
const addItem = () => {
if (calc.addItems?.length) {
return (
<>
<View style={styles.spacing} />
<View style={styles.tableContentTitle}>
<Text style={[styles.tableCellTitle, styles.tableCellTitleLast]}></Text>
</View>
<View style={styles.tableContentTitle}>
<Text style={[styles.tableCellTitle, styles.cellName]}></Text>
<Text style={[styles.tableCellTitle, styles.cellName]}></Text>
<Text style={[styles.tableCellTitle, styles.cellCategory]}></Text>
<Text style={[styles.tableCellTitle]}></Text>
<Text style={[styles.tableCellTitleLast, styles.cellName]}></Text>
</View>
{calc.addItems?.map((item) => {
return (
<View key={item.id} style={styles.tableContent} wrap={false}>
<Text style={[styles.tableCell, styles.cellName]}>{converDate(item.date, 'YYYY-MM-DD')}</Text>
<Text style={[styles.tableCell, styles.cellName]}>{item.name}</Text>
<Text style={[styles.tableCell, styles.cellCategory]}>{mapIfHas(getAddCategory, item?.category)}</Text>
<Text style={styles.tableCell}>{formatCurrency(item.amount, 2)}</Text>
<Text style={[styles.tableCellLast, styles.cellName]}>{item.notes}</Text>
</View>
);
})}
</>
);
}
};
return (
<Document>
<Page size="A4" style={styles.page}>
<Text style={styles.title}>
{contracts.project?.associated_company?.name ?? `${PromptText.noContractedCompany}`}
</Text>
<Text style={styles.subTitle}></Text>
<View style={styles.content}>
<View style={styles.main}>
<View style={styles.tableHeader}>
<Text style={styles.headerLeft}>
{contracts?.project?.company?.name}
</Text>
<Text style={styles.headerRight}>
{contracts.number}
</Text>
</View>
<View style={styles.tableHeader}>
<Text style={styles.headerLeft}>
{contracts.project?.name}
</Text>
<Text style={styles.headerRight}>{converDate(contracts.date, 'YYYY-MM-DD')}</Text>
</View>
<view style={styles.tableHeader}>
<Text style={styles.headerLeft}>
{contracts.project?.address}
</Text>
<Text style={styles.headerRight}>
{converDate(calc.start, 'YYYY-MM-DD')} {converDate(calc.end, 'YYYY-MM-DD')}
</Text>
</view>
<view style={styles.tableHeader}>
<Text style={styles.headerLeft}>
{contracts.project?.contacts.map((contact) => contact.name + ' ' + contact.phone).join(' ')}
</Text>
<Text style={styles.headerRight}>{contracts.operator.nickname}</Text>
</view>
<View style={styles.spacing} />
<View style={styles.tableContentTitle}>
<Text style={[styles.tableCellTitle, styles.tableCellTitleLast]}></Text>
</View>
<View style={styles.tableContentTitle}>
<Text style={styles.tableCellTitle}></Text>
<Text style={styles.tableCellTitle}></Text>
<Text style={styles.tableCellTitle}></Text>
<Text style={styles.tableCellTitle}></Text>
<Text style={styles.tableCellTitle}></Text>
<Text style={styles.tableCellTitle}></Text>
<Text style={styles.tableCellTitle}></Text>
<Text style={styles.tableCellTitle}></Text>
<Text style={styles.tableCellTitle}></Text>
<Text style={styles.tableCellTitleLast}></Text>
</View>
<View style={styles.tableContent}>
<Text style={styles.tableCell}>{formatCurrency(group['租金'], 2)}</Text>
<Text style={styles.tableCell}>{formatCurrency(group['维修人工'], 2)}</Text>
<Text style={styles.tableCell}>{formatCurrency(group['无物赔偿'], 2)}</Text>
<Text style={styles.tableCell}>{formatCurrency(group['有物赔偿'], 2)}</Text>
<Text style={styles.tableCell}>{formatCurrency(group['装卸运费'], 2)}</Text>
<Text style={styles.tableCell}>{formatPercent(group['税率'], 2)}</Text>
<Text style={styles.tableCell}>{formatCurrency(group['本期费用'], 2)}</Text>
<Text style={styles.tableCell}>{formatCurrency(group['累计费用'], 2)} </Text>
<Text style={styles.tableCell}>{formatCurrency(group['本期收款'], 2)}</Text>
<Text style={styles.tableCellLast}>{formatCurrency(group['累计收款'], 2)}</Text>
</View>
<View style={styles.spacing} />
<View style={styles.tableContentTitle} wrap={false}>
<Text style={[styles.tableCellTitle, styles.tableCellTitleLast]}></Text>
</View>
<View style={styles.tableContentTitle} wrap={false}>
<Text style={[styles.tableCellTitle, styles.cellName]}></Text>
<Text style={[styles.tableCellTitle, styles.cellCategory]}></Text>
<Text style={[styles.tableCellTitle, styles.cellUnit]}></Text>
<Text style={styles.tableCellTitle}></Text>
<Text style={styles.tableCellTitle}></Text>
<Text style={[styles.tableCellTitle, styles.cellDays]}></Text>
<Text style={styles.tableCellTitleLast}></Text>
</View>
{calc.history?.map((item) => {
return (
<View key={item.id} style={styles.tableContent} wrap={false}>
<Text style={[styles.tableCell, styles.cellName]}>{item.name}</Text>
<Text style={[styles.tableCell, styles.cellCategory]}>{mapIfHas(getCategory, item.category)}</Text>
<Text style={[styles.tableCell, styles.cellUnit]}>{item.unit_name}</Text>
<Text style={styles.tableCell}>{formatQuantity(item.count, 2)}</Text>
<Text style={styles.tableCell}>{formatCurrency(item.unit_price, 5)}</Text>
<Text style={[styles.tableCell, styles.cellDays]}>{item.days}</Text>
<Text style={styles.tableCellLast}>{formatCurrency(item.amount, 2)}</Text>
</View>
);
})}
<View style={styles.spacing} />
<View style={styles.tableContentTitle}>
<Text style={[styles.tableCellTitle, styles.tableCellTitleLast]}></Text>
</View>
<View style={styles.tableContentTitle} wrap={false}>
<Text style={styles.tableCellTitle}></Text>
<Text style={[styles.tableCellTitle, styles.cellInOut]}></Text>
<Text style={[styles.tableCellTitle, styles.cellName]}></Text>
<Text style={[styles.tableCellTitle, styles.cellCategory]}></Text>
<Text style={[styles.tableCellTitle, styles.cellUnit]}></Text>
<Text style={styles.tableCellTitle}></Text>
<Text style={styles.tableCellTitle}></Text>
<Text style={[styles.tableCellTitle, styles.cellDays]}></Text>
<Text style={styles.tableCellTitleLast}></Text>
</View>
{calc.list?.map((item) => {
if (item) {
if (!item.is_excluded) {
return (
<View key={item.id} style={styles.tableContent} wrap={false}>
<Text style={styles.tableCell}>{converDate(item.date, 'YYYY-MM-DD')}</Text>
<Text style={[styles.tableCell, styles.cellInOut]}>
{item.movement === '-1' ? '出库' : item.movement === '1' ? '入库' : '出入库'}
</Text>
<Text style={[styles.tableCell, styles.cellName]}>{item.name}</Text>
<Text style={[styles.tableCell, styles.cellCategory]}>
{mapIfHas(getCategory, item.category)}
</Text>
<Text style={[styles.tableCell, styles.cellUnit]}>{item.unit_name}</Text>
<Text style={styles.tableCell}>{formatQuantity(item.count, 2)}</Text>
<Text style={styles.tableCell}>{formatCurrency(item.unit_price, 5)}</Text>
<Text style={[styles.tableCell, styles.cellDays]}>{item.days !== 0 ? item.days : ''}</Text>
<Text style={styles.tableCellLast}>{formatCurrency(item.amount, 2)}</Text>
</View>
);
}
}
})}
{addItem()}
<View style={styles.spacing} />
<View style={styles.tableContentTitle}>
<Text style={[styles.tableCellTitle, styles.tableCellTitleLast]}></Text>
</View>
<View style={styles.tableContentTitle}>
<Text style={styles.tableCellTitle}></Text>
<Text style={styles.tableCellTitle}></Text>
<Text style={styles.tableCellTitle}></Text>
<Text style={styles.tableCellTitle}></Text>
<Text style={styles.tableCellTitle}></Text>
<Text style={styles.tableCellTitleLast}></Text>
</View>
{calc.summary?.map((item, index) => {
countNum = countNum + 2;
if (index < Math.round(calc.summary.length / 2)) {
return (
<View key={item.name} style={styles.tableContent} wrap={false}>
<Text style={styles.tableCell}>{calc.summary[countNum - 1]?.name}</Text>
<Text style={styles.tableCell}>{calc.summary[countNum - 1]?.unit_name}</Text>
<Text style={styles.tableCell}>
{calc.summary[countNum - 1] ? formatQuantity(calc.summary[countNum - 1]?.count, 2) : ''}
</Text>
<Text style={styles.tableCell}>{calc.summary[countNum]?.name}</Text>
<Text style={styles.tableCell}>{calc.summary[countNum]?.unit_name}</Text>
<Text style={styles.tableCellLast}>
{calc.summary[countNum]?.count ? formatQuantity(calc.summary[countNum]?.count, 2) : ''}
</Text>
</View>
);
}
})}
<View style={styles.spacing} />
<View style={styles.tableFooter}>
<View style={styles.tableFooterQr}>
<Image src={imageUrl} />
</View>
<View style={styles.tableFooterLeft}>
<Text>
15
{contracts.project?.associated_company.address}
</Text>
</View>
<View style={styles.tableFooterRight}>
<Text>{contracts.project?.comment}</Text>
<Text>
{contracts.project?.associated_company?.name ?? `${PromptText.noContractedCompany}`}
</Text>
</View>
</View>
<View style={styles.sign}>
<Text style={styles.signPart}> </Text>
<Text style={styles.signPart}></Text>
<Text style={styles.signPart}></Text>
</View>
<View style={styles.sign}>
<Text style={styles.signPart}></Text>
<Text style={styles.signPart}> </Text>
<Text style={styles.signPart}></Text>
</View>
</View>
</View>
</Page>
</Document>
);
};
export const renderIt = async (rent: { calc: any; contracts: any; result: any }) => {
const url = 'http://985.so/bpw6g';
const imageUrl = await QRCode.toDataURL(url);
return await renderToStream(<PreviewDocument imageUrl={imageUrl} {...rent} />);
};
const getCategory = (type) => {
const enums = {
'0': '租赁',
'1': '购销',
'2': '暂存',
'3': '盘点',
};
return enums[type];
};
const getAddCategory = (type) => {
const enums = {
'0': Itemcategory.rent,
'1': Itemcategory.maintenance,
'2': Itemcategory.n_compensate,
'3': Itemcategory.h_compensate,
'4': Itemcategory.loadFreight,
};
return enums[type];
};