Merge branch 'develop' of https://gitlab.eascs.com/tms-ui/tms-obc-web into develop
This commit is contained in:
@ -45,13 +45,13 @@ export class ReceivableOrderDetailComponent implements OnInit {
|
|||||||
Object.assign(requestOptions.body, { ahxHId: this.id });
|
Object.assign(requestOptions.body, { ahxHId: this.id });
|
||||||
if (this.sf) {
|
if (this.sf) {
|
||||||
Object.assign(requestOptions.body, {
|
Object.assign(requestOptions.body, {
|
||||||
...this.sf.value,
|
...this.sf.value
|
||||||
});
|
});
|
||||||
if (this.sf.value.feedate?.[0]) {
|
if (this.sf.value.feedate?.[0]) {
|
||||||
Object.assign(requestOptions.body, {
|
Object.assign(requestOptions.body, {
|
||||||
feedate: {
|
feedate: {
|
||||||
start: this.sf.value.feedate?.[0] || '',
|
start: this.sf.value.feedate?.[0] || '',
|
||||||
end: this.sf.value.feedate?.[1] || ''
|
end: this.sf.value.feedate?.[1] || ''
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -108,7 +108,7 @@ export class ReceivableOrderDetailComponent implements OnInit {
|
|||||||
widget: 'select',
|
widget: 'select',
|
||||||
placeholder: '请选择',
|
placeholder: '请选择',
|
||||||
allowClear: true,
|
allowClear: true,
|
||||||
asyncData: () => this.service.getCloseAccount(),
|
asyncData: () => this.service.getCloseAccount()
|
||||||
},
|
},
|
||||||
default: ''
|
default: ''
|
||||||
},
|
},
|
||||||
@ -122,7 +122,7 @@ export class ReceivableOrderDetailComponent implements OnInit {
|
|||||||
expand: (value: boolean) => value
|
expand: (value: boolean) => value
|
||||||
}
|
}
|
||||||
} as SFDateWidgetSchema
|
} as SFDateWidgetSchema
|
||||||
},
|
}
|
||||||
// billTime: {
|
// billTime: {
|
||||||
// title: '订单日期',
|
// title: '订单日期',
|
||||||
// type: 'string',
|
// type: 'string',
|
||||||
@ -146,7 +146,7 @@ export class ReceivableOrderDetailComponent implements OnInit {
|
|||||||
{ title: '订单号', index: 'billHCode', width: 100 },
|
{ title: '订单号', index: 'billHCode', width: 100 },
|
||||||
// { title: '订单日期', index: 'billTime', width: 150 },
|
// { title: '订单日期', index: 'billTime', width: 150 },
|
||||||
// { title: '费用类型', index: 'cnoName', width: 90 },
|
// { title: '费用类型', index: 'cnoName', width: 90 },
|
||||||
// { title: '订单费用科目', index: 'feeSubId', width: 100 },
|
{ title: '订单费用科目', index: 'billLTypeLabel', width: 100 },
|
||||||
{ title: '费用科目', index: 'feeSubName', width: 140 },
|
{ title: '费用科目', index: 'feeSubName', width: 140 },
|
||||||
{ title: '结算客户', index: 'cnoName', width: 100 },
|
{ title: '结算客户', index: 'cnoName', width: 100 },
|
||||||
{
|
{
|
||||||
|
|||||||
@ -22,7 +22,7 @@
|
|||||||
<!-- <button nz-button nzType="primary" [nzLoading]="service.http.loading" style="float: right;">打印</button> -->
|
<!-- <button nz-button nzType="primary" [nzLoading]="service.http.loading" style="float: right;">打印</button> -->
|
||||||
</se-title>
|
</se-title>
|
||||||
<se label="帐套" required>
|
<se label="帐套" required>
|
||||||
{{info?.ltdId}}
|
{{info?.vcltdcode}} - {{info?.vcltdname}}
|
||||||
</se>
|
</se>
|
||||||
<se label="凭证类型" required>
|
<se label="凭证类型" required>
|
||||||
{{info?.vctype}}
|
{{info?.vctype}}
|
||||||
|
|||||||
@ -13,9 +13,7 @@ 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';
|
||||||
import { SFComponent, SFSchema, SFDateWidgetSchema } from '@delon/form';
|
import { SFComponent, SFSchema, SFDateWidgetSchema } from '@delon/form';
|
||||||
import { ShipperBaseService } from '@shared';
|
|
||||||
import { NzModalService } from 'ng-zorro-antd/modal';
|
import { NzModalService } from 'ng-zorro-antd/modal';
|
||||||
import { AddCollectionInvoiceModalComponent } from 'src/app/routes/ticket-management/components/input-invoice/add-collection-invoice-modal/add-collection-invoice-modal.component';
|
|
||||||
import { FreightAccountService } from '../../services/freight-account.service';
|
import { FreightAccountService } from '../../services/freight-account.service';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
@ -294,7 +292,7 @@ export class VoucherManagementComponent implements OnInit {
|
|||||||
return [
|
return [
|
||||||
{ title: '', index: 'key', type: 'checkbox', width: 60, className: 'text-center', fixed: 'left' },
|
{ title: '', index: 'key', type: 'checkbox', width: 60, className: 'text-center', fixed: 'left' },
|
||||||
{ title: '凭证号', index: 'vccode', type: 'link', width: 200 },
|
{ title: '凭证号', index: 'vccode', type: 'link', width: 200 },
|
||||||
{ title: '帐套', index: 'ltdId', width: 200 },
|
{ title: '帐套', index: 'ltdId', width: 200,format:item=>`${item.vcltdcode}-${item.vcltdname}` },
|
||||||
{ title: '凭证时间', index: 'vctime', type: 'date', width: 200 },
|
{ title: '凭证时间', index: 'vctime', type: 'date', width: 200 },
|
||||||
{ title: '凭证类型', index: 'vctype', width: 200 },
|
{ title: '凭证类型', index: 'vctype', width: 200 },
|
||||||
{ title: '序号', index: 'invmoney', width: 200, format: _ => '1' },
|
{ title: '序号', index: 'invmoney', width: 200, format: _ => '1' },
|
||||||
|
|||||||
Reference in New Issue
Block a user