348 lines
7.7 KiB
TypeScript
348 lines
7.7 KiB
TypeScript
import type { VbenFormSchema } from '#/adapter/form';
|
||
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
|
||
|
||
import { erpPriceMultiply, floatToFixed2 } from '@vben/utils';
|
||
|
||
import { z } from '#/adapter/form';
|
||
import { getSimpleBusinessList } from '#/api/crm/business';
|
||
import { getSimpleContactList } from '#/api/crm/contact';
|
||
import { getCustomerSimpleList } from '#/api/crm/customer';
|
||
import { getSimpleUserList } from '#/api/system/user';
|
||
import { DICT_TYPE } from '#/utils';
|
||
|
||
/** 新增/修改的表单 */
|
||
export function useFormSchema(): VbenFormSchema[] {
|
||
return [
|
||
{
|
||
fieldName: 'id',
|
||
component: 'Input',
|
||
dependencies: {
|
||
triggerFields: [''],
|
||
show: () => false,
|
||
},
|
||
},
|
||
{
|
||
fieldName: 'no',
|
||
label: '合同编号',
|
||
component: 'Input',
|
||
componentProps: {
|
||
placeholder: '保存时自动生成',
|
||
disabled: () => true,
|
||
},
|
||
},
|
||
{
|
||
fieldName: 'name',
|
||
label: '合同名称',
|
||
component: 'Input',
|
||
rules: 'required',
|
||
componentProps: {
|
||
placeholder: '请输入合同名称',
|
||
},
|
||
},
|
||
{
|
||
fieldName: 'ownerUserId',
|
||
label: '负责人',
|
||
component: 'ApiSelect',
|
||
componentProps: {
|
||
api: () => getSimpleUserList(),
|
||
fieldNames: {
|
||
label: 'nickname',
|
||
value: 'id',
|
||
},
|
||
},
|
||
rules: 'required',
|
||
},
|
||
{
|
||
fieldName: 'customerId',
|
||
label: '客户名称',
|
||
component: 'ApiSelect',
|
||
rules: 'required',
|
||
componentProps: {
|
||
api: getCustomerSimpleList,
|
||
labelField: 'name',
|
||
valueField: 'id',
|
||
placeholder: '请选择客户',
|
||
},
|
||
},
|
||
{
|
||
fieldName: 'businessId',
|
||
label: '商机名称',
|
||
component: 'ApiSelect',
|
||
componentProps: {
|
||
api: getSimpleBusinessList,
|
||
labelField: 'name',
|
||
valueField: 'id',
|
||
placeholder: '请选择商机',
|
||
},
|
||
},
|
||
{
|
||
fieldName: 'orderDate',
|
||
label: '下单日期',
|
||
component: 'DatePicker',
|
||
rules: 'required',
|
||
componentProps: {
|
||
showTime: false,
|
||
format: 'YYYY-MM-DD',
|
||
valueFormat: 'x',
|
||
},
|
||
},
|
||
{
|
||
fieldName: 'startTime',
|
||
label: '合同开始时间',
|
||
component: 'DatePicker',
|
||
componentProps: {
|
||
showTime: false,
|
||
format: 'YYYY-MM-DD',
|
||
valueFormat: 'x',
|
||
},
|
||
},
|
||
{
|
||
fieldName: 'endTime',
|
||
label: '合同结束时间',
|
||
component: 'DatePicker',
|
||
componentProps: {
|
||
showTime: false,
|
||
format: 'YYYY-MM-DD',
|
||
valueFormat: 'x',
|
||
},
|
||
},
|
||
{
|
||
fieldName: 'signUserId',
|
||
label: '公司签约人',
|
||
component: 'ApiSelect',
|
||
componentProps: {
|
||
api: () => getSimpleUserList(),
|
||
fieldNames: {
|
||
label: 'nickname',
|
||
value: 'id',
|
||
},
|
||
},
|
||
},
|
||
{
|
||
fieldName: 'signContactId',
|
||
label: '客户签约人',
|
||
component: 'ApiSelect',
|
||
componentProps: {
|
||
api: getSimpleContactList,
|
||
labelField: 'name',
|
||
valueField: 'id',
|
||
placeholder: '请选择客户签约人',
|
||
},
|
||
},
|
||
{
|
||
fieldName: 'remark',
|
||
label: '备注',
|
||
component: 'Textarea',
|
||
componentProps: {
|
||
placeholder: '请输入备注',
|
||
rows: 4,
|
||
},
|
||
},
|
||
{
|
||
fieldName: 'product',
|
||
label: '产品清单',
|
||
component: 'Input',
|
||
formItemClass: 'col-span-3',
|
||
},
|
||
{
|
||
fieldName: 'totalProductPrice',
|
||
label: '产品总金额',
|
||
component: 'InputNumber',
|
||
componentProps: {
|
||
min: 0,
|
||
},
|
||
},
|
||
{
|
||
fieldName: 'discountPercent',
|
||
label: '整单折扣(%)',
|
||
component: 'InputNumber',
|
||
rules: z.number().min(0).max(100).default(0),
|
||
componentProps: {
|
||
min: 0,
|
||
precision: 2,
|
||
},
|
||
},
|
||
{
|
||
fieldName: 'totalPrice',
|
||
label: '折扣后金额',
|
||
component: 'InputNumber',
|
||
dependencies: {
|
||
triggerFields: ['totalProductPrice', 'discountPercent'],
|
||
disabled: () => true,
|
||
trigger(values, form) {
|
||
const discountPrice =
|
||
erpPriceMultiply(
|
||
values.totalProductPrice,
|
||
values.discountPercent / 100,
|
||
) ?? 0;
|
||
form.setFieldValue(
|
||
'totalPrice',
|
||
values.totalProductPrice - discountPrice,
|
||
);
|
||
},
|
||
},
|
||
},
|
||
];
|
||
}
|
||
|
||
/** 列表的搜索表单 */
|
||
export function useGridFormSchema(): VbenFormSchema[] {
|
||
return [
|
||
{
|
||
fieldName: 'no',
|
||
label: '合同编号',
|
||
component: 'Input',
|
||
},
|
||
{
|
||
fieldName: 'name',
|
||
label: '合同名称',
|
||
component: 'Input',
|
||
},
|
||
{
|
||
fieldName: 'customerId',
|
||
label: '客户',
|
||
component: 'ApiSelect',
|
||
componentProps: {
|
||
api: getCustomerSimpleList,
|
||
labelField: 'name',
|
||
valueField: 'id',
|
||
placeholder: '请选择客户',
|
||
},
|
||
},
|
||
];
|
||
}
|
||
|
||
export function useGridColumns(): VxeTableGridOptions['columns'] {
|
||
return [
|
||
{
|
||
title: '合同编号',
|
||
field: 'no',
|
||
minWidth: 150,
|
||
fixed: 'left',
|
||
},
|
||
{
|
||
title: '合同名称',
|
||
field: 'name',
|
||
minWidth: 150,
|
||
fixed: 'left',
|
||
slots: { default: 'name' },
|
||
},
|
||
{
|
||
title: '客户名称',
|
||
field: 'customerName',
|
||
minWidth: 150,
|
||
slots: { default: 'customerName' },
|
||
},
|
||
{
|
||
title: '商机名称',
|
||
field: 'businessName',
|
||
minWidth: 150,
|
||
slots: { default: 'businessName' },
|
||
},
|
||
{
|
||
title: '合同金额(元)',
|
||
field: 'totalPrice',
|
||
minWidth: 150,
|
||
formatter: 'formatAmount2',
|
||
},
|
||
{
|
||
title: '下单时间',
|
||
field: 'orderDate',
|
||
minWidth: 150,
|
||
formatter: 'formatDateTime',
|
||
},
|
||
{
|
||
title: '合同开始时间',
|
||
field: 'startTime',
|
||
minWidth: 150,
|
||
formatter: 'formatDateTime',
|
||
},
|
||
{
|
||
title: '合同结束时间',
|
||
field: 'endTime',
|
||
minWidth: 150,
|
||
formatter: 'formatDateTime',
|
||
},
|
||
{
|
||
title: '客户签约人',
|
||
field: 'signContactName',
|
||
minWidth: 150,
|
||
slots: { default: 'signContactName' },
|
||
},
|
||
{
|
||
title: '公司签约人',
|
||
field: 'signUserName',
|
||
minWidth: 150,
|
||
},
|
||
{
|
||
title: '已回款金额(元)',
|
||
field: 'totalReceivablePrice',
|
||
minWidth: 150,
|
||
formatter: 'formatAmount2',
|
||
},
|
||
{
|
||
title: '未回款金额(元)',
|
||
field: 'unpaidPrice',
|
||
minWidth: 150,
|
||
formatter: ({ row }) => {
|
||
return floatToFixed2(row.totalPrice - row.totalReceivablePrice);
|
||
},
|
||
},
|
||
{
|
||
title: '最后跟进时间',
|
||
field: 'contactLastTime',
|
||
minWidth: 150,
|
||
formatter: 'formatDateTime',
|
||
},
|
||
{
|
||
title: '负责人',
|
||
field: 'ownerUserName',
|
||
minWidth: 150,
|
||
},
|
||
{
|
||
title: '所属部门',
|
||
field: 'ownerUserDeptName',
|
||
minWidth: 150,
|
||
},
|
||
{
|
||
title: '更新时间',
|
||
field: 'updateTime',
|
||
minWidth: 150,
|
||
formatter: 'formatDateTime',
|
||
},
|
||
{
|
||
title: '创建时间',
|
||
field: 'createTime',
|
||
minWidth: 150,
|
||
formatter: 'formatDateTime',
|
||
},
|
||
{
|
||
title: '创建人',
|
||
field: 'creatorName',
|
||
minWidth: 150,
|
||
},
|
||
{
|
||
title: '备注',
|
||
field: 'remark',
|
||
minWidth: 150,
|
||
},
|
||
{
|
||
title: '合同状态',
|
||
field: 'auditStatus',
|
||
fixed: 'right',
|
||
minWidth: 100,
|
||
cellRender: {
|
||
name: 'CellDict',
|
||
props: { type: DICT_TYPE.CRM_AUDIT_STATUS },
|
||
},
|
||
},
|
||
{
|
||
title: '操作',
|
||
field: 'actions',
|
||
fixed: 'right',
|
||
width: 130,
|
||
slots: { default: 'actions' },
|
||
},
|
||
];
|
||
}
|