diff --git a/src/app/routes/financial-management/components/cost-management/cost-management-detail/cost-management-detail.component.html b/src/app/routes/financial-management/components/cost-management/cost-management-detail/cost-management-detail.component.html index fb07af22..8b315a1f 100644 --- a/src/app/routes/financial-management/components/cost-management/cost-management-detail/cost-management-detail.component.html +++ b/src/app/routes/financial-management/components/cost-management/cost-management-detail/cost-management-detail.component.html @@ -9,7 +9,7 @@
- + 基本信息(应收费用) {{ costInfo?.ltdName }} @@ -27,13 +27,13 @@ {{ costInfo?.arvattypeLabel }} - {{ costInfo?.armoeny }} + {{ costInfo?.armoeny | currency }} - {{ costInfo?.arkpmoney }} + {{ costInfo?.arkpmoney | currency }} - {{ costInfo?.armoeny }} + {{ costInfo?.armoeny | currency }} @@ -44,7 +44,7 @@ {{ costInfo?.feetypeLabel }} - + {{ costInfo?.hrmoney}} {{ costInfo?.hrremarks }} @@ -55,13 +55,13 @@ {{ costInfo?.hrvattypeLabel }} - {{ costInfo?.hrmoney }} + {{ costInfo?.hrmoney | currency}} - {{ costInfo?.hrvatmoney }} + {{ (costInfo?.hrvatmoney || 0) | currency }} - {{ costInfo?.hrpaymoney }} + {{ costInfo?.hrpaymoney | currency }}
@@ -71,31 +71,27 @@ - - - {{ costInfo?.artocode}}/{{ costInfo?.artonames}} - - - {{ item.armoney | currency}} - {{ item.hrmoney | currency}} - - - {{ item.armoney | currency}} - - - {{ item.arkpmoney | currency}} - + - {{ textStatus ? item.hrmoney : item.hrvatmoney }} + {{ index + 1 }} + + {{ costInfo?.artocode}}/{{ costInfo?.artonames}} + + + {{ item.armoney | currency}} + {{ item.hrmoney | currency}} + + + {{ item.armoney | currency}} + + + {{ item.arkpmoney | currency}} + + {{costInfo.billTime}} @@ -105,42 +101,28 @@ - - - {{ item.vatnotax | currency}} - - - {{ item.vatmoney | currency}} - + + + {{ item.vatnotax | currency}} + + + {{ item.vatmoney | currency}} + {{ index + 1 }} - - - {{ item.ahxmoney | currency}} - - - {{ item.ahxmoney | currency}} - + + + {{ item.ahxmoney | currency}} + + + {{ item.ahxmoney | currency}} + {{ index + 1 }} @@ -148,30 +130,16 @@ - + - - + + {{ index + 1 }} - + \ No newline at end of file diff --git a/src/app/routes/financial-management/components/payable-order/payable-order-detail/payable-order-detail.component.html b/src/app/routes/financial-management/components/payable-order/payable-order-detail/payable-order-detail.component.html index 2f975a9a..4c0a2c2a 100644 --- a/src/app/routes/financial-management/components/payable-order/payable-order-detail/payable-order-detail.component.html +++ b/src/app/routes/financial-management/components/payable-order/payable-order-detail/payable-order-detail.component.html @@ -40,7 +40,7 @@ {{headerInfo?.driver2IdName}} - {{headerInfo?.ltdaccount}} + {{headerInfo?.ltdaccountId}} {{headerInfo?.prmoney | currency}} diff --git a/src/app/routes/financial-management/components/withdrawals-record/withdrawals-detail/withdrawals-detail.component.html b/src/app/routes/financial-management/components/withdrawals-record/withdrawals-detail/withdrawals-detail.component.html index 82f0ce06..27916f8e 100644 --- a/src/app/routes/financial-management/components/withdrawals-record/withdrawals-detail/withdrawals-detail.component.html +++ b/src/app/routes/financial-management/components/withdrawals-record/withdrawals-detail/withdrawals-detail.component.html @@ -16,9 +16,9 @@ - + -
+
{{formData?.ltdName}} @@ -41,7 +41,7 @@ {{formData?.refundStatusLabel}} - {{formData?.amount}} + {{formData?.amount | currency}} {{formData?.bankSerialNumber}} @@ -50,7 +50,7 @@ {{formData?.bankId}} - + {{formData?.refundStatus==='3'?'下载回单':'暂无回单'}}
diff --git a/src/app/routes/financial-management/components/withdrawals-record/withdrawals-detail/withdrawals-detail.component.ts b/src/app/routes/financial-management/components/withdrawals-record/withdrawals-detail/withdrawals-detail.component.ts index 1c789121..c184fa93 100644 --- a/src/app/routes/financial-management/components/withdrawals-record/withdrawals-detail/withdrawals-detail.component.ts +++ b/src/app/routes/financial-management/components/withdrawals-record/withdrawals-detail/withdrawals-detail.component.ts @@ -67,6 +67,19 @@ export class WithdrawalsDetailComponent implements OnInit { }); } + downBack() { + if (this.formData?.refundStatus !== '3') { + return; + } + this.service.getReceiptUrl(this.formData.receiptUrl, { + bankType: this.formData.bankType, + rmYll: this.formData.userId, + snglFlgCd: this.formData.coreSerNo, + bussType: '06', + ltdId: this.formData.ltdId + }); + } + goBack() { history.go(-1); } diff --git a/src/app/routes/sys-setting/components/role-management/menu/menu.less b/src/app/routes/sys-setting/components/role-management/menu/menu.less index 4e400d45..ea1914df 100644 --- a/src/app/routes/sys-setting/components/role-management/menu/menu.less +++ b/src/app/routes/sys-setting/components/role-management/menu/menu.less @@ -174,6 +174,21 @@ li { list-style : none; } +.dictData { + dl { + margin : 0; + padding: 0; + } + + dt { + margin : 0 0 5px 0; + padding : 3px 0; + color : #999; + font-weight : normal; + font-size : 13px; + border-bottom: solid 1px #eee; + } +} label { color : #666; @@ -185,18 +200,12 @@ label { width : 700px; .leftBox { - width : 250px; - border : 1px solid #d1d1d1; - max-height: 500px; - overflow : auto; + width : 40%; + // border-right: solid 1px #eee; } .rightBox { - flex : 1; - margin : 0 0 0 20px; - padding-left: 12px; - border : 1px solid #d1d1d1; - max-height : 500px; - overflow : auto; + width : 60%; + padding: 0 0 0 20px; } } \ No newline at end of file diff --git a/src/app/routes/ticket-management/components/cancellation-invoice/cancellation-invoice.component.html b/src/app/routes/ticket-management/components/cancellation-invoice/cancellation-invoice.component.html index 460bd272..32244510 100644 --- a/src/app/routes/ticket-management/components/cancellation-invoice/cancellation-invoice.component.html +++ b/src/app/routes/ticket-management/components/cancellation-invoice/cancellation-invoice.component.html @@ -45,7 +45,7 @@ - diff --git a/src/app/routes/ticket-management/components/cancellation-invoice/cancellation-invoice.component.ts b/src/app/routes/ticket-management/components/cancellation-invoice/cancellation-invoice.component.ts index b0a55a45..858cf893 100644 --- a/src/app/routes/ticket-management/components/cancellation-invoice/cancellation-invoice.component.ts +++ b/src/app/routes/ticket-management/components/cancellation-invoice/cancellation-invoice.component.ts @@ -353,7 +353,7 @@ export class CancellationInvoiceComponent implements OnInit { }, { title: '服务名称', index: 'vatname', width: 100 }, { title: '销货清单', index: 'isdetail', width: 90, type: 'enum', enum: { 1: '是', 0: '否' }, className: 'text-center' }, - { title: '票面备注', render: 'vatremarks', width: 250 }, + { title: '票面备注', index: 'remarks', width: 250 }, { title: '其他要求', index: 'otherremarks', width: 100 }, { title: '操作', diff --git a/src/app/routes/ticket-management/components/cancellation-invoice/push-invoice/push-invoice.component.html b/src/app/routes/ticket-management/components/cancellation-invoice/push-invoice/push-invoice.component.html index 34b2be1b..86dbbfdd 100644 --- a/src/app/routes/ticket-management/components/cancellation-invoice/push-invoice/push-invoice.component.html +++ b/src/app/routes/ticket-management/components/cancellation-invoice/push-invoice/push-invoice.component.html @@ -19,7 +19,7 @@ {{info?.artoacc}} - {{info?.vatremarks}} + {{info?.remarks}}
diff --git a/src/app/routes/ticket-management/components/cancellation-invoice/push-invoice/push-invoice.component.ts b/src/app/routes/ticket-management/components/cancellation-invoice/push-invoice/push-invoice.component.ts index fcb6b560..f226a86b 100644 --- a/src/app/routes/ticket-management/components/cancellation-invoice/push-invoice/push-invoice.component.ts +++ b/src/app/routes/ticket-management/components/cancellation-invoice/push-invoice/push-invoice.component.ts @@ -14,22 +14,6 @@ export class PushInvoiceComponent implements OnInit { @ViewChild('st', { static: false }) st!: STComponent; columns: STColumn[] = this.initST(); - data = [ - { - key: 0, - disabled: true, - href: 'https://ant.design', - avatar: 'https://gw.alipayobjects.com/zos/rmsportal/eeHMaZBwmTvLdIwMfBpg.png', - no: 'TradeCode 0' - }, - { - key: 1, - disabled: false, - href: 'https://ant.design', - avatar: 'https://gw.alipayobjects.com/zos/rmsportal/udxAbMEhpwthVVcjLXik.png', - no: 'TradeCode 1' - } - ]; info: any = {}; id!: number; diff --git a/src/app/routes/ticket-management/components/etc-blacklist/etc-blacklist.component.html b/src/app/routes/ticket-management/components/etc-blacklist/etc-blacklist.component.html index 175cf98e..c0bf7776 100644 --- a/src/app/routes/ticket-management/components/etc-blacklist/etc-blacklist.component.html +++ b/src/app/routes/ticket-management/components/etc-blacklist/etc-blacklist.component.html @@ -32,5 +32,5 @@
+ [page]="{}" [req]="{ process: beforeReq }" [loading]="service.http.loading" (change)="stChange($event)">
\ No newline at end of file diff --git a/src/app/routes/ticket-management/components/etc-invoiced-list/etc-invoiced-list.component.html b/src/app/routes/ticket-management/components/etc-invoiced-list/etc-invoiced-list.component.html index 92b7deda..256f65cf 100644 --- a/src/app/routes/ticket-management/components/etc-invoiced-list/etc-invoiced-list.component.html +++ b/src/app/routes/ticket-management/components/etc-invoiced-list/etc-invoiced-list.component.html @@ -23,7 +23,7 @@ + [page]="{}" [loading]="service.http.loading" [scroll]="{ x:'1200px' }"> {{item.driverName}}
{{item.driverTelephone}}
diff --git a/src/app/routes/ticket-management/components/etc-invoiced-logs/etc-invoiced-logs.component.html b/src/app/routes/ticket-management/components/etc-invoiced-logs/etc-invoiced-logs.component.html index e51410c7..327ca6d3 100644 --- a/src/app/routes/ticket-management/components/etc-invoiced-logs/etc-invoiced-logs.component.html +++ b/src/app/routes/ticket-management/components/etc-invoiced-logs/etc-invoiced-logs.component.html @@ -23,7 +23,7 @@
- {{item.driverName}}
{{item.driverCellphone}} diff --git a/src/app/routes/ticket-management/components/etc-invoiced-requested/etc-invoiced-requested.component.html b/src/app/routes/ticket-management/components/etc-invoiced-requested/etc-invoiced-requested.component.html index c70109db..53afff60 100644 --- a/src/app/routes/ticket-management/components/etc-invoiced-requested/etc-invoiced-requested.component.html +++ b/src/app/routes/ticket-management/components/etc-invoiced-requested/etc-invoiced-requested.component.html @@ -32,7 +32,7 @@ - {{item.driverName}}
{{item.driverTelephone}} diff --git a/src/app/routes/ticket-management/components/express-info/express-info.component.html b/src/app/routes/ticket-management/components/express-info/express-info.component.html index 10d768d1..bb175e73 100644 --- a/src/app/routes/ticket-management/components/express-info/express-info.component.html +++ b/src/app/routes/ticket-management/components/express-info/express-info.component.html @@ -19,6 +19,6 @@
-
\ No newline at end of file diff --git a/src/app/routes/ticket-management/components/input-invoice/input-invoice.component.html b/src/app/routes/ticket-management/components/input-invoice/input-invoice.component.html index 0e667010..b1049186 100644 --- a/src/app/routes/ticket-management/components/input-invoice/input-invoice.component.html +++ b/src/app/routes/ticket-management/components/input-invoice/input-invoice.component.html @@ -32,7 +32,7 @@ - \ No newline at end of file diff --git a/src/app/routes/ticket-management/components/invoice-requested/invoice-requested-detail/invoice-requested-detail.component.ts b/src/app/routes/ticket-management/components/invoice-requested/invoice-requested-detail/invoice-requested-detail.component.ts index 7b62c99c..794459b6 100644 --- a/src/app/routes/ticket-management/components/invoice-requested/invoice-requested-detail/invoice-requested-detail.component.ts +++ b/src/app/routes/ticket-management/components/invoice-requested/invoice-requested-detail/invoice-requested-detail.component.ts @@ -289,12 +289,12 @@ export class InvoiceRequestedDetailComponent implements OnInit { { title: '订单类型', index: 'billType', width: 100, type: 'enum', enum: { 1: '整车', 2: '大宗' } }, { title: '装货地', index: 'loadingfrom', width: 220 }, { title: '卸货地', index: 'loadingto', width: 220 }, - { title: '货物信息', index: 'goodsinfo', width: 100 }, + { title: '货物信息', index: 'goodsinfo', width: 150 }, { title: '承运司机', index: 'driverinfo', width: 140 }, { title: '申请金额', index: 'billkpmoney', - width: 100, + width: 150, type: 'widget', className: 'text-right', widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.billkpmoney }) } @@ -302,7 +302,7 @@ export class InvoiceRequestedDetailComponent implements OnInit { { title: '运输费', index: 'fjfmoney2', - width: 90, + width: 150, type: 'widget', className: 'text-right', widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.fjfmoney2 }) } @@ -310,7 +310,7 @@ export class InvoiceRequestedDetailComponent implements OnInit { { title: '附加费', index: 'fjfmoney', - width: 90, + width: 150, type: 'widget', className: 'text-right', widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.fjfmoney }) } @@ -318,7 +318,7 @@ export class InvoiceRequestedDetailComponent implements OnInit { { title: '开票金额', index: 'billkpmoney', - width: 100, + width: 150, type: 'widget', className: 'text-right', widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.billkpmoney }) } diff --git a/src/app/routes/ticket-management/components/invoice-requested/invoice-requested.component.html b/src/app/routes/ticket-management/components/invoice-requested/invoice-requested.component.html index 08f30dea..9ec28409 100644 --- a/src/app/routes/ticket-management/components/invoice-requested/invoice-requested.component.html +++ b/src/app/routes/ticket-management/components/invoice-requested/invoice-requested.component.html @@ -53,7 +53,7 @@ {{ item.vatappcode }}
diff --git a/src/app/routes/ticket-management/components/invoice-requested/invoice-requested.component.ts b/src/app/routes/ticket-management/components/invoice-requested/invoice-requested.component.ts index 55b78712..fbe7accb 100644 --- a/src/app/routes/ticket-management/components/invoice-requested/invoice-requested.component.ts +++ b/src/app/routes/ticket-management/components/invoice-requested/invoice-requested.component.ts @@ -343,14 +343,14 @@ export class InvoiceRequestedComponent implements OnInit { private initST(): STColumn[] { return [ { title: '', index: 'key', type: 'checkbox' }, - { title: '申请编号', render: 'vatappcode', width: 180 }, - { title: '网络货运人', index: 'ltdName', width: 150 }, - { title: '购买方', index: 'artoName', width: 150 }, + { title: '申请编号', render: 'vatappcode', width: 190 }, + { title: '网络货运人', index: 'ltdName', width: 170 }, + { title: '购买方', index: 'artoName', width: 170 }, { title: '订单数', index: 'ordlines', width: 90 }, { title: '申请金额', index: 'applyAmount', - width: 140, + width: 150, type: 'widget', className: 'text-right', widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.applyAmount }) } @@ -358,7 +358,7 @@ export class InvoiceRequestedComponent implements OnInit { { title: '运输费', index: 'fjfmoney2', - width: 140, + width: 150, type: 'widget', className: 'text-right', widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.fjfmoney2 }) } @@ -366,7 +366,7 @@ export class InvoiceRequestedComponent implements OnInit { { title: '附加费', index: 'fjfmoney', - width: 140, + width: 150, type: 'widget', className: 'text-right', widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.fjfmoney }) } @@ -374,7 +374,7 @@ export class InvoiceRequestedComponent implements OnInit { { title: '已开票金额', index: 'invoicedMoney', - width: 140, + width: 150, type: 'widget', className: 'text-right', widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.invoicedMoney }) } @@ -382,7 +382,7 @@ export class InvoiceRequestedComponent implements OnInit { { title: '开户行', index: 'bankName', width: 160 }, { title: '银行账户', index: 'bankAccount', width: 140 }, { title: '注册地址', index: 'registerAddr', width: 140 }, - { title: '注册电话', index: 'registerPhone', width: 120 }, + { title: '注册电话', index: 'registerPhone', width: 130 }, { title: '服务名称', index: 'vatnameLabel', width: 150 }, { title: '销货清单', diff --git a/src/styles.less b/src/styles.less index 5ba862a5..2fc2a748 100644 --- a/src/styles.less +++ b/src/styles.less @@ -20,7 +20,7 @@ } } -@layout-gutter: 8px; +@layout-gutter: 11px; /* 全局滚动条美化 */ *::-webkit-scrollbar {