Merge branch 'develop' of https://gitlab.eascs.com/tms-ui/tms-obc-web into develop

This commit is contained in:
wangshiming
2022-01-18 09:51:21 +08:00
12 changed files with 450 additions and 131 deletions

View File

@ -24,7 +24,7 @@ module.exports = {
// } // }
'//api': { '//api': {
target: { target: {
host: 'tms-api-dev.eascs.com', host: 'tms-api-test.eascs.com',
protocol: 'https:', protocol: 'https:',
port: 443 port: 443
}, },

View File

@ -0,0 +1,56 @@
<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>
<div se-container labelWidth="150" gutter="32" col="3">
<se-title class="text-center font-weight-bold text-xl">记账凭证
<button nz-button nzType="primary" [nzLoading]="service.http.loading" style="float: right;">打印</button>
</se-title>
<se label="帐套" required>
{{info?.vcltdcode}}
</se>
<se label="凭证类型" required>
{{info?.vctype}}
</se>
<se label="凭证日期" required>
{{info?.vctime}}
</se>
</div>
<st #st [data]="info?.faShowVOList" [columns]="columns" [footer]="footerTpl" bordered
[scroll]="{ x:'1200px',y: '420px' }" [page]="{ show: false }" [loading]="service.http.loading">
<ng-template #footerTpl let-s>
<ng-container *ngIf="st.count > 0">
<div style="display: flex;justify-content: flex-end;">
<div style="flex: 1;" class="text-right font-weight-bold text-md">合计:</div>
<div style="width: 150px;" class="text-right">{{info?.drmoney | currency}}</div>
<div style="width: 150px;" class="text-right">{{info?.crmoney | currency}}</div>
</div>
</ng-container>
</ng-template>
<ng-template st-row="auxVOList" let-item let-index="index" let-column="column">
<ng-container *ngFor="let auxVO of item.auxVOList">
{{ auxVO.auxLabel }}: {{ auxVO.auxValue }} <br>
</ng-container>
</ng-template>
</st>
<sv-container labelWidth="150" gutter="32" class="mt-md">
<sv label="摘要">
{{info?.remarks}}
</sv>
<sv label="凭证流水号">
{{info?.createUserId}}
</sv>
<sv label="创建人">
{{info?.createUserId}}
</sv>
</sv-container>
</nz-card>

View File

@ -0,0 +1,56 @@
import { CurrencyPipe } from '@angular/common';
import { Component, OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { STData, STColumn, STRequestOptions } from '@delon/abc/st';
import { FreightAccountService } from '../../../services/freight-account.service';
@Component({
selector: 'app-voucher-detail',
templateUrl: './voucher-detail.component.html',
providers: [CurrencyPipe]
})
export class VoucherDetailComponent implements OnInit {
columns: STColumn[] = [
{ title: '摘要', index: 'remarks' },
{ title: '会计科目', index: 'subname' },
{ title: '辅助核算', render: 'auxVOList' },
{ title: '币种', index: 'currency', className: 'text-center' },
{
title: '借方金额',
index: 'drlocalmoney',
width: 150,
type: 'currency',
format: item => `${this.currencyPipe.transform(item.drlocalmoney)}`
},
{
title: '贷方金额',
index: 'crlocalmoney',
width: 150,
type: 'currency',
format: item => `${this.currencyPipe.transform(item.crlocalmoney)}`
}
];
id!: string;
info: any = { faShowVOList: [] };
constructor(public service: FreightAccountService, private currencyPipe: CurrencyPipe, private route: ActivatedRoute) {
this.id = route.snapshot.params.id;
}
ngOnInit(): void {
this.loadDetail(this.id);
}
loadDetail(id: string) {
this.service.request(this.service.$api_get_fico_vch__detail, { id }).subscribe(res => {
if (res) {
this.info = res;
}
});
}
goBack() {
history.go(-1);
}
}

View File

@ -33,7 +33,7 @@
</div> </div>
</div> </div>
<st #st [data]="service.$mock_url" [columns]="columns" <st #st [data]="service.$api_get_fico_vch_page" [columns]="columns"
[req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, process: beforeReq }" [req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, process: beforeReq }"
[res]="{ reName: { list: 'data.records', total: 'data.total' } }" [res]="{ reName: { list: 'data.records', total: 'data.total' } }"
[page]="{ show: true, showSize: true, pageSizes: [10, 20, 30, 50, 100, 200, 300, 500, 1000] }" [page]="{ show: true, showSize: true, pageSizes: [10, 20, 30, 50, 100, 200, 300, 500, 1000] }"

View File

@ -1,3 +1,4 @@
import { CurrencyPipe } from '@angular/common';
import { Component, OnInit, ViewChild } from '@angular/core'; import { Component, OnInit, ViewChild } from '@angular/core';
import { Router } from '@angular/router'; import { Router } from '@angular/router';
import { STComponent, STColumn, STRequestOptions, STChange } from '@delon/abc/st'; import { STComponent, STColumn, STRequestOptions, STChange } from '@delon/abc/st';
@ -10,7 +11,8 @@ import { FreightAccountService } from '../../services/freight-account.service';
@Component({ @Component({
selector: 'app-voucher-management', selector: 'app-voucher-management',
templateUrl: './voucher-management.component.html', templateUrl: './voucher-management.component.html',
styleUrls: ['../../../commom/less/box.less'] styleUrls: ['../../../commom/less/box.less'],
providers: [CurrencyPipe]
}) })
export class VoucherManagementComponent implements OnInit { export class VoucherManagementComponent implements OnInit {
@ViewChild('st', { static: true }) @ViewChild('st', { static: true })
@ -25,23 +27,36 @@ export class VoucherManagementComponent implements OnInit {
_$expand = false; _$expand = false;
selectedRows: any[] = []; selectedRows: any[] = [];
constructor(public service: FreightAccountService, private nzModalService: NzModalService, private router: Router) {} constructor(
public service: FreightAccountService,
private nzModalService: NzModalService,
private router: Router,
private currencyPipe: CurrencyPipe
) {}
ngOnInit(): void {} ngOnInit(): void {}
beforeReq = (requestOptions: STRequestOptions) => { beforeReq = (requestOptions: STRequestOptions) => {
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] || null,
end: this.sf.value.createtime?.[1] || null
},
invdate: {
start: this.sf.value.invdate?.[0] || null,
end: this.sf.value.invdate?.[1] || null
}
}); });
if (this.sf.value.createTime) {
Object.assign(requestOptions.body, {
createTime: {
start: this.sf.value.createTime?.[0] || null,
end: this.sf.value.createTime?.[1] || null
}
});
}
if (this.sf.value.vctime) {
Object.assign(requestOptions.body, {
vctime: {
start: this.sf.value.vctime?.[0] || null,
end: this.sf.value.vctime?.[1] || null
}
});
}
} }
return requestOptions; return requestOptions;
}; };
@ -54,19 +69,6 @@ export class VoucherManagementComponent implements OnInit {
} }
} }
addInvoice() {
if (this.selectedRows?.length <= 0) {
this.service.msgSrv.warning('请选择申请记录');
return;
}
const modal = this.nzModalService.create({
nzTitle: '收票信息',
nzContent: AddCollectionInvoiceModalComponent,
nzComponentParams: { i: { userId: 0 } },
nzFooter: null
});
}
/** /**
* 重置表单 * 重置表单
*/ */
@ -92,7 +94,7 @@ export class VoucherManagementComponent implements OnInit {
hidden: true hidden: true
} }
}, },
inpinvcode: { vccode: {
type: 'string', type: 'string',
title: '凭证号', title: '凭证号',
ui: { ui: {
@ -100,7 +102,7 @@ export class VoucherManagementComponent implements OnInit {
placeholder: '请输入' placeholder: '请输入'
} }
}, },
ltdid: { cno: {
type: 'string', type: 'string',
title: '客户', title: '客户',
ui: { ui: {
@ -111,7 +113,7 @@ export class VoucherManagementComponent implements OnInit {
}, },
default: '' default: ''
}, },
createtime: { vctime: {
title: '凭证时间', title: '凭证时间',
type: 'string', type: 'string',
ui: { ui: {
@ -119,7 +121,7 @@ export class VoucherManagementComponent implements OnInit {
format: 'yyyy-MM-dd' format: 'yyyy-MM-dd'
} as SFDateWidgetSchema } as SFDateWidgetSchema
}, },
inpinvc2ode: { sourceCode: {
type: 'string', type: 'string',
title: '原始单号', title: '原始单号',
ui: { ui: {
@ -130,7 +132,7 @@ export class VoucherManagementComponent implements OnInit {
} }
} }
}, },
invtype: { sourceType: {
type: 'string', type: 'string',
title: '原始单类型', title: '原始单类型',
ui: { ui: {
@ -141,7 +143,7 @@ export class VoucherManagementComponent implements OnInit {
} }
} }
}, },
createtim2e: { createTime: {
title: '创建时间', title: '创建时间',
type: 'string', type: 'string',
ui: { ui: {
@ -162,19 +164,20 @@ export class VoucherManagementComponent implements OnInit {
} }
} }
}, },
sts: { vctype: {
type: 'string', type: 'string',
title: '凭证类型', title: '凭证类型',
ui: { ui: {
widget: 'dict-select', widget: 'dict-select',
params: { dictKey: 'refund:apply:status' }, params: { dictKey: 'credential:type' },
placeholder: '请选择', placeholder: '请选择',
visibleIf: { visibleIf: {
expand: (value: boolean) => value expand: (value: boolean) => value
} }
} },
default: ''
}, },
s2ts: { subid: {
type: 'string', type: 'string',
title: '科目', title: '科目',
ui: { ui: {
@ -186,7 +189,7 @@ export class VoucherManagementComponent implements OnInit {
} }
} }
}, },
remarks: { drmoney: {
type: 'string', type: 'string',
title: '借方金额', title: '借方金额',
ui: { ui: {
@ -196,7 +199,7 @@ export class VoucherManagementComponent implements OnInit {
} }
} }
}, },
billCode: { crmoney: {
type: 'string', type: 'string',
title: '贷方金额', title: '贷方金额',
ui: { ui: {
@ -206,7 +209,7 @@ export class VoucherManagementComponent implements OnInit {
} }
} }
}, },
s2t2s: { vcltdid: {
type: 'string', type: 'string',
title: '帐套', title: '帐套',
ui: { ui: {
@ -218,19 +221,20 @@ export class VoucherManagementComponent implements OnInit {
} }
} }
}, },
s22t2s: { sts: {
type: 'string', type: 'string',
title: '凭证状态', title: '凭证状态',
ui: { ui: {
widget: 'dict-select', widget: 'dict-select',
params: { dictKey: 'refund:apply:status' }, params: { dictKey: 'credential:status' },
placeholder: '请选择', placeholder: '请选择',
visibleIf: { visibleIf: {
expand: (value: boolean) => value expand: (value: boolean) => value
} }
} },
default: ''
}, },
feecode: { importncnotes: {
type: 'string', type: 'string',
title: 'NC凭证', title: 'NC凭证',
ui: { ui: {
@ -240,7 +244,7 @@ export class VoucherManagementComponent implements OnInit {
} }
} }
}, },
feecsode: { vc2code: {
type: 'string', type: 'string',
title: '汇总凭证号', title: '汇总凭证号',
ui: { ui: {
@ -250,7 +254,7 @@ export class VoucherManagementComponent implements OnInit {
} }
} }
}, },
s22t2ss: { importnc: {
type: 'string', type: 'string',
title: '导入NC', title: '导入NC',
ui: { ui: {
@ -262,9 +266,14 @@ export class VoucherManagementComponent implements OnInit {
} }
} }
}, },
s22t2s1s: { isvc2: {
type: 'string', type: 'string',
title: '是否汇总', title: '是否汇总',
enum: [
{ value: null, label: '全部' },
{ value: 0, label: '否' },
{ value: 1, label: '是' }
],
ui: { ui: {
widget: 'select', widget: 'select',
placeholder: '请选择', placeholder: '请选择',
@ -279,28 +288,41 @@ export class VoucherManagementComponent implements OnInit {
private initST(): STColumn[] { private initST(): STColumn[] {
return [ return [
{ title: '', index: 'key', type: 'checkbox' }, { title: '', index: 'key', type: 'checkbox', width: 60, className: 'text-center', fixed: 'left' },
{ title: '凭证号', index: 'inpinvcode', type: 'link' }, { title: '凭证号', index: 'id', type: 'link', width: 150 },
{ title: '帐套', index: 'ltdid' }, { title: '帐套', index: 'vcltdid', width: 150 },
{ title: '凭证时间', index: 'invdate', type: 'date' }, { title: '凭证时间', index: 'vctime', type: 'date', width: 150 },
{ title: '凭证类型', index: 'invoiceno' }, { title: '凭证类型', index: 'vctype', enum: { WLW: 'WLW', CH: 'CH', YHY: 'YHY', KP: 'KP' }, width: 150 },
{ title: '序号', index: 'invmoney' }, { title: '序号', index: 'invmoney', width: 150, format: _ => '1' },
{ title: '摘要', index: 'invtax' }, { title: '摘要', index: 'remarks', width: 300 },
{ title: '币种', index: 'invtype' }, { title: '币种', index: 'currency', width: 100 },
{ title: '借方金额', index: 'hrto' }, {
{ title: '方金额', index: 'createtime', type: 'date' }, title: '方金额',
{ title: 'NC凭证', index: 'createbyname' }, index: 'drmoney',
{ title: '汇总凭证号', index: 'sts', width: 150 }, width: 120,
{ title: '凭证状态', index: 'sts' }, className: 'text-right',
{ title: '创建时间', index: 'sts' }, format: item => `${this.currencyPipe.transform(item.armoney || 0)}`
{ title: '创建人', index: 'sts' }, },
{
title: '贷方金额',
index: 'crmoney',
width: 120,
className: 'text-right',
format: item => `${this.currencyPipe.transform(item.armoney || 0)}`
},
{ title: 'NC凭证', index: 'importncnotes', width: 150 },
{ title: '汇总凭证号', index: 'vc2id', width: 150 },
{ title: '凭证状态', index: 'sts', enum: { 0: '新建', 1: '待审核', 2: '已通过' }, width: 120 },
{ title: '创建时间', index: 'createTime', width: 140 },
{ title: '创建人', index: 'createUserId', width: 150 },
{ {
title: '操作', title: '操作',
width: '130px', width: '130px',
fixed: 'right', fixed: 'right',
buttons: [ buttons: [
{ {
text: '浏览' text: '浏览',
click: (item: any) => this.router.navigate(['/financial-management/voucher-management/detail/' + item.id])
}, },
{ {
text: '修改' text: '修改'

View File

@ -0,0 +1,49 @@
<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>
<div se-container labelWidth="150" gutter="32" col="3">
<se-title class="text-center font-weight-bold text-xl">记账凭证
<button nz-button nzType="primary" [nzLoading]="service.http.loading" style="float: right;">打印</button>
</se-title>
<se label="帐套" required>
天津怡亚通物流科技有限公司
</se>
<se label="凭证类型" required>
WL
</se>
<se label="凭证日期" required>
2021-12-12
</se>
</div>
<st #st [data]="data" [columns]="columns" [footer]="bodyTpl" bordered [scroll]="{ x:'1200px',y: '420px' }"
[req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, process: beforeReq }"
[res]="{ reName: { list: 'data.records', total: 'data.total' } }" [page]="{ show: false }"
[loading]="service.http.loading">
<ng-template #bodyTpl let-s>
<ng-container *ngIf="st.count > 0">
<div style="display: flex;justify-content: flex-end;">
<div style="flex: 1;" class="text-left">合计:</div>
<div style="width: 150px;" class="text-right">{{111 | currency}}</div>
<div style="width: 150px;" class="text-right">{{111 | currency}}</div>
</div>
</ng-container>
</ng-template>
</st>
<sv-container labelWidth="150" gutter="32" col="2" class="mt-md">
<sv label="摘要">
收取服务费XXXX
</sv>
<sv label="凭证流水号">
VC202112120001
</sv>
</sv-container>
</nz-card>

View File

@ -0,0 +1,39 @@
import { CurrencyPipe } from '@angular/common';
import { Component, OnInit } from '@angular/core';
import { STData, STColumn, STRequestOptions } from '@delon/abc/st';
import { FreightAccountService } from '../../../services/freight-account.service';
@Component({
selector: 'app-summary-detail',
templateUrl: './summary-detail.component.html',
providers: [CurrencyPipe]
})
export class SummaryDetailComponent implements OnInit {
data: STData[] = Array(100)
.fill({})
.map((_, idx) => ({
id: idx + 1,
price: ~~(Math.random() * 100),
age: ~~(Math.random() * 100) > 50 ? '女' : '男'
}));
columns: STColumn[] = [
{ title: '摘要', type: 'no' },
{ title: '会计科目', index: 'id' },
{ title: '辅助核算', index: 'age' },
{ title: '币种', index: 'price', className: 'text-center' },
{ title: '借方金额', index: 'price', width: 150, type: 'currency', format: item => `${this.currencyPipe.transform(item.price)}` },
{ title: '贷方金额', index: 'price', width: 150, type: 'currency', format: item => `${this.currencyPipe.transform(item.price)}` }
];
constructor(public service: FreightAccountService, private currencyPipe: CurrencyPipe) {}
ngOnInit(): void {}
beforeReq = (requestOptions: STRequestOptions) => {
return requestOptions;
};
goBack() {
history.go(-1);
}
}

View File

@ -3,16 +3,17 @@
<nz-card class="search-box" nzBordered> <nz-card class="search-box" nzBordered>
<div nz-row nzGutter="8"> <div nz-row nzGutter="8">
<div nz-col [nzXl]="_$expand ? 24 : 18" [nzLg]="24" [nzSm]="24" [nzXs]="24"> <div nz-col [nzXl]="_$expand ? 24 : 16" [nzLg]="24" [nzSm]="24" [nzXs]="24">
<sf #sf [schema]="searchSchema" <sf #sf [schema]="searchSchema"
[ui]="{ '*': { spanLabelFixed: 100,grid: { lg: 8, md: 12, sm: 12, xs: 24 } }}" [compact]="true" [ui]="{ '*': { spanLabelFixed: 100,grid: { lg: 8, md: 12, sm: 12, xs: 24 } }}" [compact]="true"
[button]="'none'"></sf> [button]="'none'"></sf>
</div> </div>
<div nz-col [nzXl]="_$expand ? 24 : 6" [nzLg]="24" [nzSm]="24" [nzXs]="24" class="text-right" <div nz-col [nzXl]="_$expand ? 24 : 8" [nzLg]="24" [nzSm]="24" [nzXs]="24" class="text-right">
[class.expend-options]="_$expand">
<button nz-button nzType="primary" [nzLoading]="service.http.loading" (click)="st?.load(1)">查询</button> <button nz-button nzType="primary" [nzLoading]="service.http.loading" (click)="st?.load(1)">查询</button>
<button nz-button (click)="resetSF()">重置</button> <button nz-button [disabled]="service.http.loading" (click)="resetSF()">重置</button>
<button nz-button> 导出</button> <button nz-button nzType="primary" [disabled]="service.http.loading"> 导出</button>
<button nz-button nzType="primary" [disabled]="service.http.loading"> 导出明细</button>
<button nz-button nzType="primary" [disabled]="service.http.loading"> 导出凭证</button>
<button nz-button nzType="link" (click)="expandToggle()"> <button nz-button nzType="link" (click)="expandToggle()">
{{ !_$expand ? '展开' : '收起' }} {{ !_$expand ? '展开' : '收起' }}
<i nz-icon [nzType]="!_$expand ? 'down' : 'up'"></i> <i nz-icon [nzType]="!_$expand ? 'down' : 'up'"></i>
@ -21,17 +22,7 @@
</div> </div>
</nz-card> </nz-card>
<nz-card class="content-box" nzBordered> <nz-card nzBordered>
<div class="d-flex align-items-center mb-md mt-md">
<button nz-button (click)="this.addInvoice()" nzType="primary">添加发票</button>
<div class="ml-md">
已选择
<strong class="text-primary">{{ selectedRows.length }}</strong> 张发票
<a *ngIf="selectedRows.length > 0" (click)="st.clearCheck()" class="ml-lg">清空</a>
</div>
</div>
<st #st [data]="service.$mock_url" [columns]="columns" <st #st [data]="service.$mock_url" [columns]="columns"
[req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, process: beforeReq }" [req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, process: beforeReq }"
[res]="{ reName: { list: 'data.records', total: 'data.total' } }" [res]="{ reName: { list: 'data.records', total: 'data.total' } }"

View File

@ -1,3 +1,4 @@
import { CurrencyPipe } from '@angular/common';
import { Component, OnInit, ViewChild } from '@angular/core'; import { Component, OnInit, ViewChild } from '@angular/core';
import { Router } from '@angular/router'; import { Router } from '@angular/router';
import { STComponent, STColumn, STRequestOptions, STChange } from '@delon/abc/st'; import { STComponent, STColumn, STRequestOptions, STChange } from '@delon/abc/st';
@ -9,22 +10,26 @@ import { FreightAccountService } from '../../services/freight-account.service';
@Component({ @Component({
selector: 'app-voucher-summary', selector: 'app-voucher-summary',
templateUrl: './voucher-summary.component.html', templateUrl: './voucher-summary.component.html',
styleUrls: ['../../../commom/less/box.less'] styleUrls: ['../../../commom/less/box.less'],
providers: [CurrencyPipe]
}) })
export class VoucherSummaryComponent implements OnInit { export class VoucherSummaryComponent implements OnInit {
@ViewChild('st', { static: true }) @ViewChild('st', { static: true })
st!: STComponent; st!: STComponent;
@ViewChild('sf', { static: false }) @ViewChild('sf', { static: false })
sf!: SFComponent; sf!: SFComponent;
@ViewChild('auditModal', { static: false })
auditModal!: any;
columns: STColumn[] = this.initST(); columns: STColumn[] = this.initST();
searchSchema: SFSchema = this.initSF(); searchSchema: SFSchema = this.initSF();
_$expand = false; _$expand = false;
selectedRows: any[] = []; selectedRows: any[] = [];
constructor(public service: FreightAccountService, private nzModalService: NzModalService, private router: Router) {} constructor(
public service: FreightAccountService,
private nzModalService: NzModalService,
private router: Router,
private currencyPipe: CurrencyPipe
) {}
ngOnInit(): void {} ngOnInit(): void {}
@ -93,7 +98,7 @@ export class VoucherSummaryComponent implements OnInit {
}, },
inpinvcode: { inpinvcode: {
type: 'string', type: 'string',
title: '收票单号', title: '汇总凭证号',
ui: { ui: {
autocomplete: 'off', autocomplete: 'off',
placeholder: '请输入' placeholder: '请输入'
@ -101,7 +106,7 @@ export class VoucherSummaryComponent implements OnInit {
}, },
ltdid: { ltdid: {
type: 'string', type: 'string',
title: '网络货运人', title: '客户',
ui: { ui: {
widget: 'select', widget: 'select',
placeholder: '请选择', placeholder: '请选择',
@ -110,37 +115,37 @@ export class VoucherSummaryComponent implements OnInit {
}, },
default: '' default: ''
}, },
invoiceno: { createtime: {
title: '凭证时间',
type: 'string', type: 'string',
title: '发票号码', ui: {
widget: 'sl-from-to-search',
format: 'yyyy-MM-dd'
} as SFDateWidgetSchema
},
inpinvc2ode: {
type: 'string',
title: '原始单号',
ui: { ui: {
autocomplete: 'off', autocomplete: 'off',
placeholder: '请输入'
}
},
invtype: {
type: 'string',
title: '发票类型',
ui: {
widget: 'dict-select',
params: { dictKey: 'refund:apply:status' },
placeholder: '请选择',
visibleIf: {
expand: (value: boolean) => value
}
}
},
hrto: {
type: 'string',
title: '销售方',
ui: {
placeholder: '请输入', placeholder: '请输入',
visibleIf: { visibleIf: {
expand: (value: boolean) => value expand: (value: boolean) => value
} }
} }
}, },
createtime: { invtype: {
type: 'string',
title: '原始单类型',
ui: {
widget: 'select',
placeholder: '请选择',
visibleIf: {
expand: (value: boolean) => value
}
}
},
createtim2e: {
title: '创建时间', title: '创建时间',
type: 'string', type: 'string',
ui: { ui: {
@ -151,9 +156,19 @@ export class VoucherSummaryComponent implements OnInit {
} }
} as SFDateWidgetSchema } as SFDateWidgetSchema
}, },
inpinvcosde: {
type: 'string',
title: '凭证摘要',
ui: {
placeholder: '请输入',
visibleIf: {
expand: (value: boolean) => value
}
}
},
sts: { sts: {
type: 'string', type: 'string',
title: '收票状态', title: '凭证类型',
ui: { ui: {
widget: 'dict-select', widget: 'dict-select',
params: { dictKey: 'refund:apply:status' }, params: { dictKey: 'refund:apply:status' },
@ -163,12 +178,13 @@ export class VoucherSummaryComponent implements OnInit {
} }
} }
}, },
invdate: { s2ts: {
type: 'string', type: 'string',
title: '发票日期', title: '科目',
ui: { ui: {
widget: 'sl-from-to-search', widget: 'dict-select',
format: 'yyyy-MM-dd', params: { dictKey: 'refund:apply:status' },
placeholder: '请选择',
visibleIf: { visibleIf: {
expand: (value: boolean) => value expand: (value: boolean) => value
} }
@ -176,7 +192,7 @@ export class VoucherSummaryComponent implements OnInit {
}, },
remarks: { remarks: {
type: 'string', type: 'string',
title: '收票备注', title: '借方金额',
ui: { ui: {
placeholder: '请输入', placeholder: '请输入',
visibleIf: { visibleIf: {
@ -186,7 +202,7 @@ export class VoucherSummaryComponent implements OnInit {
}, },
billCode: { billCode: {
type: 'string', type: 'string',
title: '订单号', title: '贷方金额',
ui: { ui: {
placeholder: '请输入', placeholder: '请输入',
visibleIf: { visibleIf: {
@ -194,15 +210,72 @@ export class VoucherSummaryComponent implements OnInit {
} }
} }
}, },
s2t2s: {
type: 'string',
title: '帐套',
ui: {
widget: 'dict-select',
params: { dictKey: 'refund:apply:status' },
placeholder: '请选择',
visibleIf: {
expand: (value: boolean) => value
}
}
},
s22t2s: {
type: 'string',
title: '凭证状态',
ui: {
widget: 'dict-select',
params: { dictKey: 'refund:apply:status' },
placeholder: '请选择',
visibleIf: {
expand: (value: boolean) => value
}
}
},
feecode: { feecode: {
type: 'string', type: 'string',
title: '费用号', title: 'NC凭证',
ui: { ui: {
placeholder: '请输入', placeholder: '请输入',
visibleIf: { visibleIf: {
expand: (value: boolean) => value expand: (value: boolean) => value
} }
} }
},
feecsode: {
type: 'string',
title: '凭证号',
ui: {
placeholder: '请输入',
visibleIf: {
expand: (value: boolean) => value
}
}
},
s22t2ss: {
type: 'string',
title: '导入NC',
ui: {
widget: 'dict-select',
params: { dictKey: 'refund:apply:status' },
placeholder: '请选择',
visibleIf: {
expand: (value: boolean) => value
}
}
},
createt1im2e: {
title: '统计时间',
type: 'string',
ui: {
widget: 'sl-from-to-search',
format: 'yyyy-MM-dd',
visibleIf: {
expand: (value: boolean) => value
}
} as SFDateWidgetSchema
} }
} }
}; };
@ -210,28 +283,47 @@ export class VoucherSummaryComponent implements OnInit {
private initST(): STColumn[] { private initST(): STColumn[] {
return [ return [
{ title: '', index: 'key', type: 'checkbox' }, { title: '', index: 'key', type: 'checkbox', width: 60, className: 'text-center', fixed: 'left' },
{ title: '收票单号', index: 'inpinvcode', type: 'link' }, { title: '汇总凭证号', index: 'inpinvcode', type: 'link', width: 140 },
{ title: '网络货运人', index: 'ltdid' }, { title: '帐套', index: 'ltdid', width: 120 },
{ title: '发票日期', index: 'invdate', type: 'date' }, { title: '凭证时间', index: 'invdate', type: 'date', width: 150 },
{ title: '发票号', index: 'invoiceno' }, { title: '统计时间', index: 'invdate', type: 'date', width: 150 },
{ title: '发票金额', index: 'invmoney' }, { title: '凭证类型', index: 'invoiceno', width: 120 },
{ title: '税额', index: 'invtax' }, { title: '序号', index: 'invmoney', width: 100 },
{ title: '发票类型', index: 'invtype' }, { title: '摘要', index: 'invtax', width: 120 },
{ title: '销售方', index: 'hrto' }, { title: '币种', index: 'invtype', width: 100 },
{ title: '创建时间', index: 'createtime', type: 'date' }, {
{ title: '创建人', index: 'createbyname' }, title: '借方金额',
{ title: '收票状态', index: 'sts' }, index: 'hrto',
width: 120,
className: 'text-right',
format: item => `${this.currencyPipe.transform(item.armoney || 0)}`
},
{
title: '贷方金额',
index: 'createtime',
type: 'date',
width: 120,
className: 'text-right',
format: item => `${this.currencyPipe.transform(item.armoney || 0)}`
},
{ title: 'NC凭证', index: 'createbyname', width: 120 },
{ title: '凭证状态', index: 'sts', width: 120 },
{ title: '创建时间', index: 'sts', width: 150 },
{ title: '创建人', index: 'sts', width: 120 },
{ {
title: '操作', title: '操作',
width: '130px',
fixed: 'right',
className: 'text-center',
buttons: [ buttons: [
{ {
text: '浏览', text: '浏览',
click: item => this.router.navigate(['/ticket/input-invoice/detail/' + item.id]) click: (item: any) => this.router.navigate(['/financial-management/voucher-summary/detail/' + item.id])
}, },
{ {
text: '修改', text: '列表',
click: item => this.router.navigate(['/ticket/input-invoice/edit/1']) click: (item: any) => this.router.navigate(['/financial-management/voucher-summary/detail/' + item.id])
} }
] ]
} }

View File

@ -22,6 +22,8 @@ import { ReceivableOrderComponent } from './components/receivable-order/receivab
import { PayableOrderComponent } from './components/payable-order/payable-order.component'; import { PayableOrderComponent } from './components/payable-order/payable-order.component';
import { ReceivableOrderDetailComponent } from './components/receivable-order/receivable-order-detail/receivable-order-detail.component'; import { ReceivableOrderDetailComponent } from './components/receivable-order/receivable-order-detail/receivable-order-detail.component';
import { PayableOrderDetailComponent } from './components/payable-order/payable-order-detail/payable-order-detail.component'; import { PayableOrderDetailComponent } from './components/payable-order/payable-order-detail/payable-order-detail.component';
import { VoucherDetailComponent } from './components/voucher-management/voucher-detail/voucher-detail.component';
import { SummaryDetailComponent } from './components/voucher-summary/summary-detail/summary-detail.component';
const routes: Routes = [ const routes: Routes = [
{ path: 'freight-account', component: FreightAccountComponent }, { path: 'freight-account', component: FreightAccountComponent },
@ -32,7 +34,9 @@ const routes: Routes = [
{ path: 'withdrawals-record', component: WithdrawalsRecordComponent }, { path: 'withdrawals-record', component: WithdrawalsRecordComponent },
{ path: 'withdrawals-record/detail/:id', component: WithdrawalsDetailComponent }, { path: 'withdrawals-record/detail/:id', component: WithdrawalsDetailComponent },
{ path: 'voucher-management', component: VoucherManagementComponent }, { path: 'voucher-management', component: VoucherManagementComponent },
{ path: 'voucher-management/detail/:id', component: VoucherDetailComponent },
{ path: 'voucher-summary', component: VoucherSummaryComponent }, { path: 'voucher-summary', component: VoucherSummaryComponent },
{ path: 'voucher-summary/detail/:id', component: SummaryDetailComponent },
{ path: 'cost-management', component: CostManagementComponent }, { path: 'cost-management', component: CostManagementComponent },
{ path: 'cost-management/detail/:id', component: CostManagementDetailComponent }, { path: 'cost-management/detail/:id', component: CostManagementDetailComponent },
{ path: 'cost-management/expenses-receivable/:id', component: ExpensesReceivableComponent }, { path: 'cost-management/expenses-receivable/:id', component: ExpensesReceivableComponent },

View File

@ -26,6 +26,8 @@ import { ReceivableOrderComponent } from './components/receivable-order/receivab
import { PayableOrderComponent } from './components/payable-order/payable-order.component'; import { PayableOrderComponent } from './components/payable-order/payable-order.component';
import { ReceivableOrderDetailComponent } from './components/receivable-order/receivable-order-detail/receivable-order-detail.component'; import { ReceivableOrderDetailComponent } from './components/receivable-order/receivable-order-detail/receivable-order-detail.component';
import { PayableOrderDetailComponent } from './components/payable-order/payable-order-detail/payable-order-detail.component'; import { PayableOrderDetailComponent } from './components/payable-order/payable-order-detail/payable-order-detail.component';
import { VoucherDetailComponent } from './components/voucher-management/voucher-detail/voucher-detail.component';
import { SummaryDetailComponent } from './components/voucher-summary/summary-detail/summary-detail.component';
const ROUTESCOMPONENTS = [ const ROUTESCOMPONENTS = [
FreightAccountComponent, FreightAccountComponent,
@ -43,16 +45,19 @@ const ROUTESCOMPONENTS = [
PaymentOrderComponent, PaymentOrderComponent,
ReceiptOrderComponent, ReceiptOrderComponent,
VoucherManagementComponent, VoucherManagementComponent,
VoucherDetailComponent,
VoucherSummaryComponent, VoucherSummaryComponent,
SummaryDetailComponent,
ReceivableOrderComponent, ReceivableOrderComponent,
PayableOrderComponent, PayableOrderComponent,
ReceivableOrderDetailComponent ReceivableOrderDetailComponent,
PayableOrderDetailComponent
]; ];
const NOTROUTECOMPONENTS = [DriverAccountDetailComponent, FreightAccountDetailComponent, SettingFinancialComponent, ClearingModalComponent]; const NOTROUTECOMPONENTS = [DriverAccountDetailComponent, FreightAccountDetailComponent, SettingFinancialComponent, ClearingModalComponent];
@NgModule({ @NgModule({
declarations: [...ROUTESCOMPONENTS, ...NOTROUTECOMPONENTS, PayableOrderDetailComponent], declarations: [...ROUTESCOMPONENTS, ...NOTROUTECOMPONENTS],
imports: [CommonModule, FinancialManagementRoutingModule, SharedModule] imports: [CommonModule, FinancialManagementRoutingModule, SharedModule]
}) })
export class FinancialManagementModule {} export class FinancialManagementModule {}

View File

@ -71,6 +71,11 @@ export class FreightAccountService extends ShipperBaseService {
// 查询应付核销明细 // 查询应付核销明细
$api_get_fico_ph_detail_header = '/api/fcc/ficoPhxL/list/page'; $api_get_fico_ph_detail_header = '/api/fcc/ficoPhxL/list/page';
// 查询总账凭证表
$api_get_fico_vch_page = '/api/fcc/ficoVcH/list/page';
// 获取总账凭证表详情信息
$api_get_fico_vch__detail = '/api/fcc/ficoVcH/getDetail';
constructor(public injector: Injector,public eaCacheSrv: EACacheService) { constructor(public injector: Injector,public eaCacheSrv: EACacheService) {
super(injector, eaCacheSrv); super(injector, eaCacheSrv);