edit
This commit is contained in:
@ -77,7 +77,7 @@
|
|||||||
{{openInfo?.isdetail?'需要':'不需要'}}
|
{{openInfo?.isdetail?'需要':'不需要'}}
|
||||||
</se>
|
</se>
|
||||||
<se [col]="1" label="开票金额" class="mb-sm">
|
<se [col]="1" label="开票金额" class="mb-sm">
|
||||||
{{openInfo?.vatnotax | currency}}
|
{{openInfo?.vatmoney | currency}}
|
||||||
</se>
|
</se>
|
||||||
<se [col]="1" label="开票日期" required>
|
<se [col]="1" label="开票日期" required>
|
||||||
<nz-date-picker [(ngModel)]="openInfo.invoicedate" nzPlaceHolder="请选择" style=" width: 100%;">
|
<nz-date-picker [(ngModel)]="openInfo.invoicedate" nzPlaceHolder="请选择" style=" width: 100%;">
|
||||||
|
|||||||
@ -123,7 +123,7 @@ export class InputInvoiceComponent implements OnInit {
|
|||||||
title: '发票类型',
|
title: '发票类型',
|
||||||
ui: {
|
ui: {
|
||||||
widget: 'dict-select',
|
widget: 'dict-select',
|
||||||
params: { dictKey: 'DictConstants.INVOICE_TYPE' },
|
params: { dictKey: 'invoice:type' },
|
||||||
placeholder: '请选择',
|
placeholder: '请选择',
|
||||||
visibleIf: {
|
visibleIf: {
|
||||||
expand: (value: boolean) => value
|
expand: (value: boolean) => value
|
||||||
|
|||||||
@ -406,6 +406,7 @@ export class InvoiceRequestedComponent {
|
|||||||
return [
|
return [
|
||||||
{ title: '', index: 'key', type: 'checkbox' },
|
{ title: '', index: 'key', type: 'checkbox' },
|
||||||
{ title: '申请编号', render: 'vatappcode', width: 190 },
|
{ title: '申请编号', render: 'vatappcode', width: 190 },
|
||||||
|
{ title: '发票类型', index: 'vatapptypeLable', width: 140 },
|
||||||
{ title: '网络货运人', index: 'ltdName', width: 170 },
|
{ title: '网络货运人', index: 'ltdName', width: 170 },
|
||||||
{ title: '货主名称', index: 'artoName', width: 170 },
|
{ title: '货主名称', index: 'artoName', width: 170 },
|
||||||
{ title: '订单数', index: 'ordlines', width: 90 },
|
{ title: '订单数', index: 'ordlines', width: 90 },
|
||||||
@ -444,6 +445,7 @@ export class InvoiceRequestedComponent {
|
|||||||
params: ({ record }) => ({ value: record.invoicedMoney })
|
params: ({ record }) => ({ value: record.invoicedMoney })
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{ title: '已开票张数', index: 'invoicedNum', width: 160 },
|
||||||
{ title: '开户行', index: 'bankName', width: 160 },
|
{ title: '开户行', index: 'bankName', width: 160 },
|
||||||
{ title: '银行账户', index: 'bankAccount', width: 140 },
|
{ title: '银行账户', index: 'bankAccount', width: 140 },
|
||||||
{ title: '注册地址', index: 'registerAddr', width: 140 },
|
{ title: '注册地址', index: 'registerAddr', width: 140 },
|
||||||
@ -463,7 +465,7 @@ export class InvoiceRequestedComponent {
|
|||||||
{
|
{
|
||||||
title: '快递是否下单成功',
|
title: '快递是否下单成功',
|
||||||
index: 'expressHSts',
|
index: 'expressHSts',
|
||||||
width: 150,
|
width: 170,
|
||||||
className: 'text-center',
|
className: 'text-center',
|
||||||
type: 'enum',
|
type: 'enum',
|
||||||
enum: { true: '是', false: '否' }
|
enum: { true: '是', false: '否' }
|
||||||
|
|||||||
@ -75,7 +75,7 @@ export class TicketService extends ShipperBaseService {
|
|||||||
// 获取分票发票明细
|
// 获取分票发票明细
|
||||||
$api_get_invoice_details = '/api/fcc/ficoVatinvL/getDetailByVatinvHId';
|
$api_get_invoice_details = '/api/fcc/ficoVatinvL/getDetailByVatinvHId';
|
||||||
// 运营端订单明细开票处理
|
// 运营端订单明细开票处理
|
||||||
$api_get_applyFicoVatinv = '/api/fcc/ficoVatinvH/applyFicoVatinv';
|
$api_get_applyFicoVatinv = '/api/fcc/ficoVatinvH/applyBatchFicoVatinv';
|
||||||
// 开票申请列表批量开票
|
// 开票申请列表批量开票
|
||||||
$api_get_applyBatchFicoVatinv = '/api/fcc/ficoVatinvH/applyBatchFicoVatinv';
|
$api_get_applyBatchFicoVatinv = '/api/fcc/ficoVatinvH/applyBatchFicoVatinv';
|
||||||
// 删除销项发票抬头
|
// 删除销项发票抬头
|
||||||
|
|||||||
Reference in New Issue
Block a user