This commit is contained in:
Taric Xin
2022-02-15 16:07:25 +08:00
parent bb331fa4b8
commit 2ec7169598
6 changed files with 246 additions and 6 deletions

View File

@ -0,0 +1,5 @@
:host::ng-deep {
.ant-form-item {
margin-bottom: 0;
}
}

View File

@ -0,0 +1,83 @@
<page-header-wrapper title="收款单" [logo]="logo">
<ng-template #logo>
<button nz-button nz-tooltip nzTooltipTitle="返回上一页" (click)="goBack()">
<i nz-icon nzType="left" nzTheme="outline"></i>
</button>
</ng-template>
</page-header-wrapper>
<nz-card class="search-box">
<div nz-row>
<div nz-col nzSpan="24">
<se-container col="3" labelWidth="100">
<se-title class="mb-md" style="font-size: 18px">基本信息</se-title>
<se label="网络货运人" required>
{{ costInfo?.ltdId }}
</se>
<se label="银行类型">
{{ costInfo?.brmdate }}
</se>
<se label="付款人" required>
{{ costInfo?.brmModeLabel }}
</se>
<se label="结算客户" required>
{{ costInfo?.banktypeLabel }}
</se>
<se label="收款账户">
{{ costInfo?.artoname }}
</se>
<se label="预收金额">
{{ costInfo?.recnopay |currency }}
</se>
<se label="收款类型" required>
{{ costInfo?.ltdaccountId }}
</se>
</se-container>
</div>
</div>
</nz-card>
<nz-card class="content-box" nzBordered>
<nz-tabset>
<nz-tab nzTitle="转入信息">
<div nz-row nzGutter="8">
<div nz-col [nzXl]="16" [nzLg]="18" [nzSm]="24" [nzXs]="24">
<sf #sf [schema]="inputSearchSchema"
[ui]="{ '*': { spanLabelFixed: 90,grid: { lg: 12, md: 12, sm: 12, xs: 24 } }}" [compact]="true"
[button]="'none'"></sf>
</div>
<div nz-col [nzXl]="8" [nzLg]="6" [nzSm]="24" [nzXs]="24">
<button nz-button nzType="primary" [nzLoading]="service.http.loading"
(click)="inputST?.load(1)">查询</button>
<button nz-button (click)="resetInputSF()">重置</button>
</div>
</div>
<st #inputST [scroll]="{ x: '2000px' }" [data]="[]" [columns]="columns.input" [page]="{ show: false }"
[loading]="service.http.loading" [scroll]="{ x: '1200px', y: '370px' }" class="mt-md">
<ng-template st-row="no" let-item let-index="index" let-column="column">
{{index+1}}
</ng-template>
</st>
</nz-tab>
<nz-tab nzTitle="核销信息">
<div nz-row nzGutter="8">
<div nz-col [nzXl]="16" [nzLg]="18" [nzSm]="24" [nzXs]="24">
<sf #sf [schema]="infoSearchSchema"
[ui]="{ '*': { spanLabelFixed: 90,grid: { lg: 12, md: 12, sm: 12, xs: 24 } }}" [compact]="true"
[button]="'none'"></sf>
</div>
<div nz-col [nzXl]="8" [nzLg]="6" [nzSm]="24" [nzXs]="24">
<button nz-button nzType="primary" [nzLoading]="service.http.loading"
(click)="infoST?.load(1)">查询</button>
<button nz-button (click)="resetInfoSF()">重置</button>
</div>
</div>
<st #infoST [scroll]="{ x: '2000px' }" [data]="[]" [columns]="columns.info" [req]="{ process: beforeReq }"
[loading]="service.http.loading" [scroll]="{ x: '1200px', y: '370px' }" class="mt-md">
<ng-template st-row="no" let-item let-index="index" let-column="column">
{{index+1}}
</ng-template>
</st>
</nz-tab>
</nz-tabset>
</nz-card>

View File

@ -0,0 +1,150 @@
import { Component, OnInit, ViewChild } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { STComponent, STColumn, STRequestOptions } from '@delon/abc/st';
import { SFComponent, SFDateWidgetSchema, SFSchema } from '@delon/form';
import { FreightAccountService } from '../../../services/freight-account.service';
@Component({
selector: 'app-advance-collection-detail',
templateUrl: './advance-collection-detail.component.html',
styleUrls: ['../../../../commom/less/box.less', '../../../../commom/less/basic-board.less']
})
export class AdvanceCollectionDetailComponent implements OnInit {
@ViewChild('inputST', { static: true })
inputST!: STComponent;
columns: { [key: string]: STColumn[] } = this.initST();
@ViewChild('infoST', { static: true })
infoST!: STComponent;
costInfo: any = {};
id: any = null;
@ViewChild('sf', { static: false })
inputSF!: SFComponent;
@ViewChild('sf', { static: false })
infoSF!: SFComponent;
inputSearchSchema: SFSchema = this.initInputSF();
infoSearchSchema: SFSchema = this.initInfoSF();
constructor(public service: FreightAccountService, private route: ActivatedRoute) {
this.id = route.snapshot.params.id;
this.loadDetail(this.id);
}
ngOnInit(): void {}
beforeReq = (requestOptions: STRequestOptions) => {
Object.assign(requestOptions.body, {
id: this.id
});
return requestOptions;
};
loadDetail(id: any) {
this.service.request(this.service.$api_get_receipt_header, { id }).subscribe(res => {
if (res) {
this.costInfo = res;
}
});
}
/**
* 重置表单
*/
resetInputSF() {
this.inputSF.reset();
}
/**
* 重置表单
*/
resetInfoSF() {
this.infoSF.reset();
}
goBack() {
history.go(-1);
}
private initInputSF(): SFSchema {
return {
properties: {
feedate: {
title: '到账日期',
type: 'string',
ui: {
widget: 'sl-from-to-search',
format: 'yyyy-MM-dd'
} as SFDateWidgetSchema
},
billHCode: {
type: 'string',
title: '收款单号',
ui: {
placeholder: '请输入'
}
}
}
};
}
private initInfoSF(): SFSchema {
return {
properties: {
feedate: {
title: '核销日期',
type: 'string',
ui: {
widget: 'sl-from-to-search',
format: 'yyyy-MM-dd'
} as SFDateWidgetSchema
},
billHCode: {
type: 'string',
title: '核销单号',
ui: {
placeholder: '请输入'
}
}
}
};
}
private initST(): { [key: string]: STColumn[] } {
return {
input: [
{ title: '序号', render: 'no', width: 70, className: 'text-left' },
{ title: '收款单号', index: 'feeHId', className: 'text-left', width: 200 },
{ title: '到账日期', index: 'billHId', className: 'text-center', width: 150 },
{
title: '到账金额',
index: 'hrvatrate',
type: 'widget',
className: 'text-right',
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.yskmoney }) },
width: 140
},
{
title: '转预收金额',
index: 'hrvatrate',
type: 'widget',
className: 'text-right',
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.yskmoney }) },
width: 140
},
{ title: '预收备注', index: 'callNo', width: 200 }
],
info: [
{ title: '序号', render: 'no', width: 70, className: 'text-left' },
{ title: '核销单号', index: 'cnoName', className: 'text-left', width: 200 },
{ title: '核销日期', index: 'billHId', className: 'text-center', width: 150 },
{
title: '核销金额',
index: 'yskmoney',
type: 'widget',
className: 'text-right',
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.yskmoney }) },
width: 200
},
{ title: '核销备注', index: 'vatapptype', className: 'text-left', width: 200 }
]
};
}
}

View File

@ -119,7 +119,7 @@ export class AdvanceCollectionComponent implements OnInit {
return [ return [
{ title: '网络货运人', width: 160, index: 'ltdName' }, { title: '网络货运人', width: 160, index: 'ltdName' },
{ title: '银行类型', width: 120, index: 'bankTypeLabel' }, { title: '银行类型', width: 120, index: 'bankTypeLabel' },
{ title: '银行类型', width: 120, index: 'banktype' }, { title: '收款账户', width: 120, index: 'ltdaccountId' },
{ title: '收款类型', width: 120, index: 'brmtype' }, { title: '收款类型', width: 120, index: 'brmtype' },
{ {
title: '预收余额', title: '预收余额',
@ -139,15 +139,13 @@ export class AdvanceCollectionComponent implements OnInit {
buttons: [ buttons: [
{ {
text: '浏览', text: '浏览',
click: item => this.router.navigate(['/financial-management/driver-account/detail/' + item.id]) click: item => this.router.navigate(['/financial-management/advance-collection/detail/' + item.id])
}, },
{ {
text: '核销', text: '核销',
click: item => this.router.navigate(['/financial-management/driver-account/detail/' + item.id])
}, },
{ {
text: '退款', text: '退款',
click: item => this.router.navigate(['/financial-management/driver-account/detail/' + item.id])
} }
] ]
} }

View File

@ -30,6 +30,7 @@ import { PaymentOrderDetailComponent } from './components/payment-order/payment-
import { PlatformAccountComponent } from './components/platform-account/platform-account.component'; import { PlatformAccountComponent } from './components/platform-account/platform-account.component';
import { PlatformAccountDetailComponent } from './components/platform-account/platform-account-detail/platform-account-detail.component'; import { PlatformAccountDetailComponent } from './components/platform-account/platform-account-detail/platform-account-detail.component';
import { AdvanceCollectionComponent } from './components/advance-collection/advance-collection.component'; import { AdvanceCollectionComponent } from './components/advance-collection/advance-collection.component';
import { AdvanceCollectionDetailComponent } from './components/advance-collection/advance-collection-detail/advance-collection-detail.component';
const routes: Routes = [ const routes: Routes = [
{ path: 'freight-account', component: FreightAccountComponent, data: { guard: { ability: ['FINANCIAL-FREIGHT-ACOUNT-list'] } } }, { path: 'freight-account', component: FreightAccountComponent, data: { guard: { ability: ['FINANCIAL-FREIGHT-ACOUNT-list'] } } },
@ -38,7 +39,6 @@ const routes: Routes = [
{ path: 'driver-account/detail/:id', component: DriverAccountDetailComponent }, { path: 'driver-account/detail/:id', component: DriverAccountDetailComponent },
{ path: 'platform-account', component: PlatformAccountComponent }, { path: 'platform-account', component: PlatformAccountComponent },
{ path: 'platform-account/detail/:id', component: PlatformAccountDetailComponent }, { path: 'platform-account/detail/:id', component: PlatformAccountDetailComponent },
{ path: 'advance-collection', component: AdvanceCollectionComponent },
{ path: 'recharge-record', component: RechargeRecordComponent }, { path: 'recharge-record', component: RechargeRecordComponent },
{ path: 'withdrawals-record', component: WithdrawalsRecordComponent }, { path: 'withdrawals-record', component: WithdrawalsRecordComponent },
{ path: 'withdrawals-record/detail/:id', component: WithdrawalsDetailComponent }, { path: 'withdrawals-record/detail/:id', component: WithdrawalsDetailComponent },
@ -59,6 +59,8 @@ const routes: Routes = [
{ path: 'payment-order/detail/:id', component: PaymentOrderDetailComponent }, { path: 'payment-order/detail/:id', component: PaymentOrderDetailComponent },
{ path: 'receipt-order', component: ReceiptOrderComponent }, { path: 'receipt-order', component: ReceiptOrderComponent },
{ path: 'receipt-order/detail/:id', component: ReceiptOrderDetailComponent }, { path: 'receipt-order/detail/:id', component: ReceiptOrderDetailComponent },
{ path: 'advance-collection', component: AdvanceCollectionComponent },
{ path: 'advance-collection/detail/:id', component: AdvanceCollectionDetailComponent },
{ path: 'receivable-order', component: ReceivableOrderComponent }, { path: 'receivable-order', component: ReceivableOrderComponent },
{ path: 'receivable-order/detail/:id', component: ReceivableOrderDetailComponent }, { path: 'receivable-order/detail/:id', component: ReceivableOrderDetailComponent },
{ path: 'payable-order', component: PayableOrderComponent }, { path: 'payable-order', component: PayableOrderComponent },

View File

@ -33,6 +33,7 @@ import { ReceiptOrderDetailComponent } from './components/receipt-order/receipt-
import { PlatformAccountComponent } from './components/platform-account/platform-account.component'; import { PlatformAccountComponent } from './components/platform-account/platform-account.component';
import { PlatformAccountDetailComponent } from './components/platform-account/platform-account-detail/platform-account-detail.component'; import { PlatformAccountDetailComponent } from './components/platform-account/platform-account-detail/platform-account-detail.component';
import { AdvanceCollectionComponent } from './components/advance-collection/advance-collection.component'; import { AdvanceCollectionComponent } from './components/advance-collection/advance-collection.component';
import { AdvanceCollectionDetailComponent } from './components/advance-collection/advance-collection-detail/advance-collection-detail.component';
const ROUTESCOMPONENTS = [ const ROUTESCOMPONENTS = [
FreightAccountComponent, FreightAccountComponent,
@ -62,7 +63,8 @@ const ROUTESCOMPONENTS = [
PaymentOrderDetailComponent, PaymentOrderDetailComponent,
VoucherListComponent, VoucherListComponent,
ReceiptOrderDetailComponent, ReceiptOrderDetailComponent,
AdvanceCollectionComponent AdvanceCollectionComponent,
AdvanceCollectionDetailComponent
]; ];
const NOTROUTECOMPONENTS = [DriverAccountDetailComponent, FreightAccountDetailComponent, ClearingModalComponent]; const NOTROUTECOMPONENTS = [DriverAccountDetailComponent, FreightAccountDetailComponent, ClearingModalComponent];