This commit is contained in:
Taric Xin
2022-02-17 10:21:47 +08:00
parent 228203ea49
commit 6ea9c97d08
5 changed files with 85 additions and 84 deletions

View File

@ -63,9 +63,6 @@
</nz-card> </nz-card>
<nz-card nzBordered> <nz-card nzBordered>
<st #st [data]="service.$api_get_driver_account_detail" [columns]="columns" <st #st [data]="service.$api_get_platform_account_detail_page" [columns]="columns" [req]="{ process: beforeReq }"
[req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, process: beforeReq }"
[res]="{ reName: { list: 'data.records', total: 'data.total' } }"
[page]="{ show: true, showSize: true, pageSizes: [10, 20, 30, 50, 100, 200, 300, 500, 1000] }"
[loading]="service.http.loading" [scroll]="{ x:'1200px',y: '300px' }" (change)="stChange($event)"></st> [loading]="service.http.loading" [scroll]="{ x:'1200px',y: '300px' }" (change)="stChange($event)"></st>
</nz-card> </nz-card>

View File

@ -10,7 +10,6 @@ import { FreightAccountService } from '../../../services/freight-account.service
styleUrls: ['../../../../commom/less/box.less', '../../../../commom/less/expend-but.less'] styleUrls: ['../../../../commom/less/box.less', '../../../../commom/less/expend-but.less']
}) })
export class PlatformAccountDetailComponent implements OnInit { export class PlatformAccountDetailComponent implements OnInit {
@ViewChild('st', { static: true }) @ViewChild('st', { static: true })
st!: STComponent; st!: STComponent;
@ViewChild('sf', { static: false }) @ViewChild('sf', { static: false })
@ -31,38 +30,30 @@ export class PlatformAccountDetailComponent implements OnInit {
} }
beforeReq = (requestOptions: STRequestOptions) => { beforeReq = (requestOptions: STRequestOptions) => {
Object.assign(requestOptions.body, { Object.assign(requestOptions.body, { ...this.params });
ltdId: this.params.ltdId,
projectId: this.params.projectId,
enterpriseId: this.params.enterpriseId,
roleId: this.params.roleId
});
if (this.sf) { if (this.sf) {
Object.assign(requestOptions.body, { Object.assign(requestOptions.body, {
...this.sf.value, ...this.sf.value
createTime: {
start: this.sf.value?.createTime?.[0] || '',
end: this.sf.value?.createTime?.[1] || ''
}
}); });
if (this.sf.value.createTime) {
Object.assign(requestOptions.body, {
createTime: {
start: this.sf.value?.createTime?.[0] || '',
end: this.sf.value?.createTime?.[1] || ''
}
});
}
} }
return requestOptions; return requestOptions;
}; };
loadInfo() { loadInfo() {
this.service this.service
.request(this.service.$api_get_driver_account_balance_detail, { .request(this.service.$api_get_platform_account_header, {
...this.sf?.value, ...this.sf?.value,
ltdId: this.params.ltdId, ...this.params,
projectId: this.params.projectId,
enterpriseId: this.params.enterpriseId,
roleId: this.params.roleId,
pageIndex: this.st.pi, pageIndex: this.st.pi,
pageSize: this.st.ps, pageSize: this.st.ps
createTime: {
start: this.sf?.value?.createTime?.[0] || '',
end: this.sf?.value?.createTime?.[1] || ''
}
}) })
.subscribe(res => { .subscribe(res => {
if (res) { if (res) {
@ -116,14 +107,14 @@ export class PlatformAccountDetailComponent implements OnInit {
nzShowTime: true nzShowTime: true
} as SFDateWidgetSchema } as SFDateWidgetSchema
}, },
transactionNumber: { businessNumber: {
type: 'string', type: 'string',
title: '流水号', title: '流水号',
ui: { ui: {
placeholder: '请输入' placeholder: '请输入'
} }
}, },
businessNumber: { transactionNumber: {
type: 'string', type: 'string',
title: '交易单号', title: '交易单号',
ui: { ui: {
@ -156,7 +147,7 @@ export class PlatformAccountDetailComponent implements OnInit {
}, },
default: '' default: ''
}, },
incomeType1: { enterpriseId: {
type: 'string', type: 'string',
title: '货主', title: '货主',
ui: { ui: {
@ -168,7 +159,7 @@ export class PlatformAccountDetailComponent implements OnInit {
}, },
default: '' default: ''
}, },
incomeType2: { projectId: {
type: 'string', type: 'string',
title: '所属项目', title: '所属项目',
ui: { ui: {
@ -186,16 +177,16 @@ export class PlatformAccountDetailComponent implements OnInit {
private initST(): STColumn[] { private initST(): STColumn[] {
return [ return [
{ title: '交易时间', index: 'createTime', type: 'date' }, { title: '交易时间', index: 'createTime', type: 'date', width: 150 },
{ title: '流水号', index: 'channelPaySn' }, { title: '流水号', index: 'channelPaySn', width: 170 },
{ title: '交易类型', index: 'tradeTypeLabel', className: 'text-center' }, { title: '交易类型', index: 'tradeTypeLabel', className: 'text-center', width: 130 },
{ title: '交易单号', index: 'businessNumber' }, { title: '交易单号', index: 'transactionNumber', width: 190 },
{ title: '订单号', index: 'businessNumber' }, { title: '订单号', index: 'orderSn', width: 170 },
{ title: '运单号', index: 'businessNumber' }, { title: '运单号', index: 'businessNumber', width: 190 },
{ title: '账户类型', index: 'incomeTypeLabel', className: 'text-center' }, { title: '账户类型', index: 'accountTypeLabel', className: 'text-center', width: 130 },
{ title: '账户名称', index: 'incomeTypeLabel', className: 'text-center' }, { title: '账户名称', index: 'incomeTypeLabel', className: 'text-center', width: 150 },
{ title: '所属项目', index: 'incomeTypeLabel', className: 'text-center' }, { title: '所属项目', index: 'projectName', className: 'text-center', width: 150 },
{ title: '收支类型', index: 'incomeTypeLabel', className: 'text-center' }, { title: '收支类型', index: 'incomeTypeLabel', className: 'text-center', width: 130 },
{ {
title: '交易金额', title: '交易金额',
index: 'amount', index: 'amount',
@ -212,10 +203,9 @@ export class PlatformAccountDetailComponent implements OnInit {
className: 'text-right', className: 'text-right',
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.accountBalance }) } widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.accountBalance }) }
}, },
{ title: '付款方', index: 'incomeTypeLabel', className: 'text-center' }, { title: '付款方', index: 'incomeTypeLabel', className: 'text-center', width: 150 },
{ title: '收款方', index: 'incomeTypeLabel', className: 'text-center' }, { title: '收款方', index: 'payeeName', className: 'text-center', width: 150 },
{ title: '备注', index: 'incomeTypeLabel', className: 'text-center' }, { title: '备注', index: 'tradeContent', className: 'text-center', width: 150 }
]; ];
} }
} }

View File

@ -4,32 +4,32 @@
<nz-card> <nz-card>
<nz-row [nzGutter]="16"> <nz-row [nzGutter]="16">
<nz-col [nzXl]="4" [nzLg]="6" [nzSm]="12"> <nz-col [nzXl]="4" [nzLg]="6" [nzSm]="12">
<nz-statistic [nzValue]="'100,000,000.00 '" nzTitle="平台账户余额" <nz-statistic [nzValue]="((info.availableBalance |currency:' ') || 0)+''" nzTitle="平台账户余额"
[nzValueStyle]="{'font-size':'16px','font-weight':'bold'}" class="bold"> [nzValueStyle]="{'font-size':'16px','font-weight':'bold'}" class="bold">
</nz-statistic> </nz-statistic>
</nz-col> </nz-col>
<nz-col [nzXl]="4" [nzLg]="6" [nzSm]="12"> <nz-col [nzXl]="4" [nzLg]="6" [nzSm]="12">
<nz-statistic [nzValue]="'100,000.00 '" [nzTitle]="'货主账户余额'" <nz-statistic [nzValue]="((info.shipperAvailableBalance |currency:' ') || 0)+' '" [nzTitle]="'货主账户余额'"
[nzValueStyle]="{'font-size':'16px',color:'red'}"> [nzValueStyle]="{'font-size':'16px',color:'red'}">
</nz-statistic> </nz-statistic>
</nz-col> </nz-col>
<nz-col [nzXl]="4" [nzLg]="6" [nzSm]="12"> <nz-col [nzXl]="4" [nzLg]="6" [nzSm]="12">
<nz-statistic [nzValue]="'100,000.00 '" [nzTitle]="'司机账户余额'" <nz-statistic [nzValue]="((info.driverAvailableBalance |currency:' ') || 0)+' '" [nzTitle]="'司机账户余额'"
[nzValueStyle]="{'font-size':'16px',color:'red'}"> [nzValueStyle]="{'font-size':'16px',color:'red'}">
</nz-statistic> </nz-statistic>
</nz-col> </nz-col>
<nz-col [nzXl]="4" [nzLg]="6" [nzSm]="12"> <nz-col [nzXl]="4" [nzLg]="6" [nzSm]="12">
<nz-statistic [nzValue]="'100,000.00 '" [nzTitle]="'累计充值金额'" <nz-statistic [nzValue]="((info.rechargeBalance |currency:' ') || 0)+' '" [nzTitle]="'累计充值金额'"
[nzValueStyle]="{'font-size':'16px',color:'red'}"> [nzValueStyle]="{'font-size':'16px',color:'red'}">
</nz-statistic> </nz-statistic>
</nz-col> </nz-col>
<nz-col [nzXl]="4" [nzLg]="6" [nzSm]="12"> <nz-col [nzXl]="4" [nzLg]="6" [nzSm]="12">
<nz-statistic [nzValue]="'100,000.00 '" [nzTitle]="'货主累计提现金额'" <nz-statistic [nzValue]="((info.shipperWithdrawBalance |currency:' ') || 0)+' '" [nzTitle]="'货主累计提现金额'"
[nzValueStyle]="{'font-size':'16px',color:'red'}"> [nzValueStyle]="{'font-size':'16px',color:'red'}">
</nz-statistic> </nz-statistic>
</nz-col> </nz-col>
<nz-col [nzXl]="4" [nzLg]="6" [nzSm]="12"> <nz-col [nzXl]="4" [nzLg]="6" [nzSm]="12">
<nz-statistic [nzValue]="'100,000.00 '" [nzTitle]="'司机累计提现金额'" <nz-statistic [nzValue]="((info.driverWithdrawBalance |currency:' ') || 0)+' '" [nzTitle]="'司机累计提现金额'"
[nzValueStyle]="{'font-size':'16px',color:'red'}"> [nzValueStyle]="{'font-size':'16px',color:'red'}">
</nz-statistic> </nz-statistic>
</nz-col> </nz-col>
@ -52,7 +52,7 @@
</nz-card> </nz-card>
<nz-card class="content-box"> <nz-card class="content-box">
<st #st [data]="service.$api_get_platform_page" [columns]="columns" [req]="{ process: beforeReq }" <st #st [data]="service.$api_get_platform_account_page" [columns]="columns" [req]="{ process: beforeReq }"
[scroll]="{ x: '1200px' }" [loading]="service.http.loading"> [scroll]="{ x: '1200px' }" [loading]="service.http.loading">
</st> </st>
</nz-card> </nz-card>

View File

@ -18,9 +18,12 @@ export class PlatformAccountComponent implements OnInit {
searchSchema: SFSchema = this.initSF(); searchSchema: SFSchema = this.initSF();
columns: STColumn[] = this.initST(); columns: STColumn[] = this.initST();
info: any = {};
constructor(public service: FreightAccountService, private router: Router, private nzModalService: NzModalService) {} constructor(public service: FreightAccountService, private router: Router, private nzModalService: NzModalService) {}
ngOnInit(): void {} ngOnInit(): void {
this.loadInfo();
}
beforeReq = (requestOptions: STRequestOptions) => { beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) { if (this.sf) {
@ -29,6 +32,18 @@ export class PlatformAccountComponent implements OnInit {
return requestOptions; return requestOptions;
}; };
loadInfo() {
const params = {};
if (this.sf) {
Object.assign(params, { ...this.sf.value });
}
this.service.request(this.service.$api_get_platform_account_header, params).subscribe(res => {
if (res) {
this.info = res;
}
});
}
/** /**
* 重置表单 * 重置表单
*/ */
@ -45,9 +60,6 @@ export class PlatformAccountComponent implements OnInit {
ui: { ui: {
widget: 'select', widget: 'select',
placeholder: '请选择', placeholder: '请选择',
visibleIf: {
expand: (value: boolean) => value
},
allowClear: true, allowClear: true,
asyncData: () => this.service.getNetworkFreightForwarder() asyncData: () => this.service.getNetworkFreightForwarder()
} }
@ -62,10 +74,7 @@ export class PlatformAccountComponent implements OnInit {
], ],
ui: { ui: {
widget: 'select', widget: 'select',
placeholder: '请选择', placeholder: '请选择'
visibleIf: {
expand: (value: boolean) => value
}
}, },
default: null default: null
}, },
@ -73,10 +82,7 @@ export class PlatformAccountComponent implements OnInit {
type: 'string', type: 'string',
title: '虚拟账户', title: '虚拟账户',
ui: { ui: {
placeholder: '请输入', placeholder: '请输入'
visibleIf: {
expand: (value: boolean) => value
}
} }
} }
} }
@ -86,11 +92,11 @@ export class PlatformAccountComponent implements OnInit {
private initST(): STColumn[] { private initST(): STColumn[] {
return [ return [
{ title: '网络货运人', index: 'ltdName', width: 180 }, { title: '网络货运人', index: 'ltdName', width: 180 },
{ title: '银行类型', index: 'description', width: 120 }, { title: '银行类型', index: 'bankTypeLabel', width: 120 },
{ title: '虚拟账户', index: 'description', width: 140 }, { title: '虚拟账户', index: 'virtualAccount', width: 160 },
{ {
title: '平台账户可用余额', title: '平台账户可用余额',
index: 'description', index: 'availableBalance',
width: 180, width: 180,
type: 'widget', type: 'widget',
className: 'text-right', className: 'text-right',
@ -98,67 +104,67 @@ export class PlatformAccountComponent implements OnInit {
}, },
{ {
title: '平台账户冻结余额', title: '平台账户冻结余额',
index: 'description', index: 'freezeBalance',
width: 180, width: 180,
type: 'widget', type: 'widget',
className: 'text-right', className: 'text-right',
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.availableBalance }) } widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.freezeBalance }) }
}, },
{ {
title: '货主账户可用余额', title: '货主账户可用余额',
index: 'description', index: 'shipperAvailableBalance',
width: 180, width: 180,
type: 'widget', type: 'widget',
className: 'text-right', className: 'text-right',
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.availableBalance }) } widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.shipperAvailableBalance }) }
}, },
{ {
title: '货主账户冻结余额', title: '货主账户冻结余额',
index: 'description', index: 'shipperFreezeBalance',
width: 180, width: 180,
type: 'widget', type: 'widget',
className: 'text-right', className: 'text-right',
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.availableBalance }) } widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.shipperFreezeBalance }) }
}, },
{ {
title: '司机账户可用余额', title: '司机账户可用余额',
index: 'description', index: 'driverAvailableBalance',
width: 180, width: 180,
type: 'widget', type: 'widget',
className: 'text-right', className: 'text-right',
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.availableBalance }) } widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.driverAvailableBalance }) }
}, },
{ {
title: '司机账户冻结余额', title: '司机账户冻结余额',
index: 'description', index: 'driverFreezeBalance',
width: 180, width: 180,
type: 'widget', type: 'widget',
className: 'text-right', className: 'text-right',
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.availableBalance }) } widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.driverFreezeBalance }) }
}, },
{ {
title: '累计充值金额', title: '累计充值金额',
index: 'description', index: 'rechargeBalance',
width: 180, width: 180,
type: 'widget', type: 'widget',
className: 'text-right', className: 'text-right',
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.availableBalance }) } widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.rechargeBalance }) }
}, },
{ {
title: '货主累计提现金额', title: '货主累计提现金额',
index: 'description', index: 'shipperWithdrawBalance',
width: 180, width: 180,
type: 'widget', type: 'widget',
className: 'text-right', className: 'text-right',
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.availableBalance }) } widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.shipperWithdrawBalance }) }
}, },
{ {
title: '司机累计提现金额', title: '司机累计提现金额',
index: 'description', index: 'driverWithdrawBalance',
width: 180, width: 180,
type: 'widget', type: 'widget',
className: 'text-right', className: 'text-right',
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.availableBalance }) } widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.driverWithdrawBalance }) }
}, },
{ {
title: '操作', title: '操作',
@ -168,7 +174,10 @@ export class PlatformAccountComponent implements OnInit {
buttons: [ buttons: [
{ {
text: '查看明细', text: '查看明细',
click: item => this.router.navigate(['/financial-management/platform-account/detail/' + item.id]) click: item =>
this.router.navigate(['/financial-management/platform-account/detail/' + item.id], {
queryParams: { ltdId: item.ltdId, bankType: item.bankType }
})
} }
] ]
} }

View File

@ -21,8 +21,13 @@ export class FreightAccountService extends ShipperBaseService {
$api_get_shipper_account_page = '/api/fcc/accountBalance/getShipperAccountBalanceByOperator'; $api_get_shipper_account_page = '/api/fcc/accountBalance/getShipperAccountBalanceByOperator';
// 运营端获取司机账户信息 // 运营端获取司机账户信息
$api_get_driver_account_page = '/api/fcc/accountBalance/getDriverAccountBalanceByOperator'; $api_get_driver_account_page = '/api/fcc/accountBalance/getDriverAccountBalanceByOperator';
// 运营端获取平台余额 // 运营端获取平台余额
$api_get_platform_page = '/api/fcc/accountBalance/getPlatformBalanceByOperator'; $api_get_platform_account_header = '/api/fcc/accountBalance/getPlatformBalanceByOperator';
// 运营端获取平台余额
$api_get_platform_account_page = '/api/fcc/accountBalance/getPlatformAccountBalanceByOperator';
// 运营端获取账户余额交易明细
$api_get_platform_account_detail_page = '/api/fcc/accountBalanceDetail/getAccountBalanceByPage';
// 运营端获取货主账户明细信息 // 运营端获取货主账户明细信息
$api_get_shipper_account_detail = '/api/fcc/accountBalanceDetail/getAccountBalanceShipperByOperatorPage'; $api_get_shipper_account_detail = '/api/fcc/accountBalanceDetail/getAccountBalanceShipperByOperatorPage';