fix bug
This commit is contained in:
		@ -4,7 +4,7 @@
 | 
			
		||||
 * @Author       : Shiming
 | 
			
		||||
 * @Date         : 2021-12-24 16:58:02
 | 
			
		||||
 * @LastEditors  : Shiming
 | 
			
		||||
 * @LastEditTime : 2022-04-06 15:40:05
 | 
			
		||||
 * @LastEditTime : 2022-04-15 09:58:12
 | 
			
		||||
 * @FilePath     : \\tms-obc-web\\src\\app\\routes\\order-management\\components\\bulk-detail-change\\bulk-detail-change.component.html
 | 
			
		||||
 * Copyright (C) 2022 huzhenhong. All rights reserved.
 | 
			
		||||
-->
 | 
			
		||||
@ -254,31 +254,38 @@
 | 
			
		||||
 | 
			
		||||
      </sf>
 | 
			
		||||
</nz-card>
 | 
			
		||||
 | 
			
		||||
<nz-card nzTitle="运费信息"#distannce3>
 | 
			
		||||
  <h2>{{i?.goodsInfoList?.[0]?.freightPrice}}{{i?.goodsInfoList?.[0]?.freightTypeLabel}}({{ i?.goodsInfoList?.[0]?.settlementBasisLabel ? i?.goodsInfoList?.[0]?.settlementBasisLabel + ',' :' ' }}{{i?.goodsInfoList?.[0]?.ruleLabel}})</h2>
 | 
			
		||||
  <st #st [data]="billExpenses" [columns]="logColumns" [ps]="0" [page]="{ show: false, showSize: false }">
 | 
			
		||||
    <ng-template st-row="PriceType" let-item let-index="index"> 到付 </ng-template>
 | 
			
		||||
    <ng-template st-row="price" let-item let-index="index">
 | 
			
		||||
      {{ item.price | currency }}
 | 
			
		||||
    </ng-template>
 | 
			
		||||
    <ng-template st-row="prices" let-item let-index="index">
 | 
			
		||||
      {{ item.price + item.surcharge  | currency }}
 | 
			
		||||
    </ng-template>
 | 
			
		||||
    <ng-template st-row="surcharge" let-item let-index="index">
 | 
			
		||||
      {{ item.surcharge | currency }}
 | 
			
		||||
    </ng-template>
 | 
			
		||||
  </st>
 | 
			
		||||
  <div>
 | 
			
		||||
    <div>
 | 
			
		||||
      总计:<span style="color: #da001b; font-size: 18px">{{ i?.totalAmount | currency }}</span> (运费{{ i?.totalFreight | currency }},
 | 
			
		||||
      附加费{{ i?.totalSurcharge | currency }},附加费率{{ (i?.totalRate * 100).toFixed(2)}}%)
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
  <div *ngIf ="i?.payeePhone && i?.payeePhone !== i?.driverPhone">车队长:{{ i?.payeeName }}{{ i?.payeePhone ? "/" +  i?.payeePhone : ''}}</div>
 | 
			
		||||
<!--
 | 
			
		||||
结算依据为1时,卸货时间不为空,显示运费信息,否则隐藏
 | 
			
		||||
结算依据为2时,装货时间不为空,显示运费信息,否则隐藏
 | 
			
		||||
 -->
 | 
			
		||||
 <nz-card [nzTitle]="priceTitel" #distannce3
 | 
			
		||||
 [hidden]="!(i?.settlementBasis ==='1' && i?.unloadTime) && !(i?.settlementBasis ==='2' && i?.loadTime)">
 | 
			
		||||
 <ng-template #priceTitel>
 | 
			
		||||
   <span>运费信息</span><span
 | 
			
		||||
     style="padding-left: 24px; color: #f59a23;font-size: small;">到货后{{i?.goodsResource.paymentDays}}天内支付运费</span>
 | 
			
		||||
 </ng-template>
 | 
			
		||||
 <div style="margin-bottom: 18px">
 | 
			
		||||
   <span style="color: #da001b; font-size: 18px"> {{ i?.freightPrice }}{{ i?.freightTypeLabel }} </span>({{
 | 
			
		||||
   i?.settlementBasisLabel }},{{
 | 
			
		||||
   i?.ruleLabel
 | 
			
		||||
   }})
 | 
			
		||||
 </div>
 | 
			
		||||
 <st #st [data]="billExpenses" [columns]="logColumns" [ps]="0" [page]="{ show: false, showSize: false }">
 | 
			
		||||
  <ng-template st-row="prices" let-item let-index="index">
 | 
			
		||||
    {{ item.price + item.surcharge | currency }}
 | 
			
		||||
  </ng-template>
 | 
			
		||||
   <ng-template st-row="PriceType" let-item let-index="index"> 到付 </ng-template>
 | 
			
		||||
   <ng-template st-row="price" let-item let-index="index"> {{item.price | currency}} </ng-template>
 | 
			
		||||
   <ng-template st-row="surcharge" let-item let-index="index"> {{item.surcharge | currency}} </ng-template>
 | 
			
		||||
 </st>
 | 
			
		||||
 <div>
 | 
			
		||||
   总计:<span style="color: #da001b; font-size: 18px">{{ i?.totalAmount | currency }}</span> (运费{{ i?.totalFreight |
 | 
			
		||||
   currency }},
 | 
			
		||||
   附加费{{ i?.totalSurcharge | currency }},附加费率{{ i?.totalRate * 100 | number: '0.2-2' }}%)
 | 
			
		||||
 </div>
 | 
			
		||||
 <div *ngIf=" i?.payeeId !== i?.driverId" class="mt-xs">车队长:{{ i?.payeeName }}/{{ i?.payeePhone }}/{{ i?.payeeIdNo }}</div>
 | 
			
		||||
</nz-card>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
<nz-card nzTitle="附件信息" #distannce4>
 | 
			
		||||
  <sv-container>
 | 
			
		||||
    <sv label="协议附件">
 | 
			
		||||
 | 
			
		||||
@ -4,7 +4,7 @@
 | 
			
		||||
 * @Author       : Shiming
 | 
			
		||||
 * @Date         : 2021-12-06 20:20:26
 | 
			
		||||
 * @LastEditors  : Shiming
 | 
			
		||||
 * @LastEditTime : 2022-04-14 20:03:33
 | 
			
		||||
 * @LastEditTime : 2022-04-15 09:58:13
 | 
			
		||||
 * @FilePath     : \\tms-obc-web\\src\\app\\routes\\order-management\\components\\bulk-detail\\bulk-detail.component.html
 | 
			
		||||
 * Copyright (C) 2022 huzhenhong. All rights reserved.
 | 
			
		||||
-->
 | 
			
		||||
@ -127,31 +127,6 @@
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</nz-card>
 | 
			
		||||
<!-- <nz-card nzTitle="运费信息" #distannce3>
 | 
			
		||||
  <h2>{{i?.freightPrice}}{{i?.freightTypeLabel}}({{ i?.settlementBasisLabel ? i?.settlementBasisLabel + ',' :' '
 | 
			
		||||
    }}{{i?.ruleLabel}})</h2>
 | 
			
		||||
  <st #st [data]="billExpenses" [columns]="logColumns" [ps]="0" [page]="{ show: false, showSize: false }">
 | 
			
		||||
    <ng-template st-row="PriceType" let-item let-index="index"> 到付 </ng-template>
 | 
			
		||||
    <ng-template st-row="prices" let-item let-index="index">
 | 
			
		||||
      {{ item.price + item.surcharge | currency }}
 | 
			
		||||
    </ng-template>
 | 
			
		||||
    <ng-template st-row="price" let-item let-index="index">
 | 
			
		||||
      {{ item.price | currency }}
 | 
			
		||||
    </ng-template>
 | 
			
		||||
    <ng-template st-row="surcharge" let-item let-index="index">
 | 
			
		||||
      {{ item.surcharge | currency }}
 | 
			
		||||
    </ng-template>
 | 
			
		||||
  </st>
 | 
			
		||||
  <div>
 | 
			
		||||
    <div>
 | 
			
		||||
      总计:<span style="color: #da001b; font-size: 18px">{{ i?.totalAmount | currency }}</span> (运费{{ i?.totalFreight |
 | 
			
		||||
      currency }},
 | 
			
		||||
      附加费{{ i?.totalSurcharge | currency }},附加费率{{ (i?.totalRate * 100).toFixed(2)}}%)
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
  <div *ngIf="i?.payeePhone && i?.payeePhone !== i?.driverPhone">车队长:{{ i?.payeeName }}{{ i?.payeePhone ? "/" +
 | 
			
		||||
    i?.payeePhone : ''}}</div>
 | 
			
		||||
</nz-card> -->
 | 
			
		||||
<!--
 | 
			
		||||
结算依据为1时,卸货时间不为空,显示运费信息,否则隐藏
 | 
			
		||||
结算依据为2时,装货时间不为空,显示运费信息,否则隐藏
 | 
			
		||||
@ -181,7 +156,7 @@
 | 
			
		||||
   currency }},
 | 
			
		||||
   附加费{{ i?.totalSurcharge | currency }},附加费率{{ i?.totalRate * 100 | number: '0.2-2' }}%)
 | 
			
		||||
 </div>
 | 
			
		||||
 <div *ngIf=" i?.payeeId !== i?.driverId" class="mt-xs">车队长:{{ i?.payeeName }}/{{ i?.payeePhone }}</div>
 | 
			
		||||
 <div *ngIf=" i?.payeeId !== i?.driverId" class="mt-xs">车队长:{{ i?.payeeName }}/{{ i?.payeePhone }}/{{ i?.payeeIdNo }}</div>
 | 
			
		||||
</nz-card>
 | 
			
		||||
 | 
			
		||||
<nz-card nzTitle="附件信息" #distannce4>
 | 
			
		||||
 | 
			
		||||
@ -4,7 +4,7 @@
 | 
			
		||||
 * @Author       : Shiming
 | 
			
		||||
 * @Date         : 2021-12-28 14:42:03
 | 
			
		||||
 * @LastEditors  : Shiming
 | 
			
		||||
 * @LastEditTime : 2022-04-14 10:09:03
 | 
			
		||||
 * @LastEditTime : 2022-04-15 09:56:50
 | 
			
		||||
 * @FilePath     : \\tms-obc-web\\src\\app\\routes\\order-management\\components\\vehicle-detail\\vehicle-detail.component.html
 | 
			
		||||
 * Copyright (C) 2022 huzhenhong. All rights reserved.
 | 
			
		||||
-->
 | 
			
		||||
@ -158,7 +158,7 @@
 | 
			
		||||
    附加费{{ i?.totalSurcharge | currency }},附加费率{{ (i?.totalRate * 100).toFixed(2) }}% )
 | 
			
		||||
  </div>
 | 
			
		||||
  <div *ngIf="i?.payeePhone && i?.payeePhone !== i?.driverPhone">车队长:{{ i?.payeeName }}{{ i?.payeePhone ? '/' +
 | 
			
		||||
    i?.payeePhone : '' }}</div>
 | 
			
		||||
    i?.payeePhone : '' }}/{{ i?.payeeIdNo }}</div>
 | 
			
		||||
</nz-card>
 | 
			
		||||
 | 
			
		||||
<nz-card nzTitle="附件信息" #distannce4>
 | 
			
		||||
 | 
			
		||||
@ -1,7 +1,7 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: your name
 | 
			
		||||
 * @Date: 2021-12-03 15:31:52
 | 
			
		||||
 * @LastEditTime : 2022-04-14 16:38:56
 | 
			
		||||
 * @LastEditTime : 2022-04-14 20:06:41
 | 
			
		||||
 * @LastEditors  : Shiming
 | 
			
		||||
 * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
 | 
			
		||||
 * @FilePath     : \\tms-obc-web\\src\\app\\routes\\waybill-management\\components\\bulk-detail\\bulk-detail.component.html
 | 
			
		||||
@ -138,25 +138,7 @@
 | 
			
		||||
  </div>
 | 
			
		||||
</div>
 | 
			
		||||
</nz-card>
 | 
			
		||||
<!-- <nz-card  [nzTitle]="'运费信息' +'(到货后'+i?.paymentDays+'天内支付运费)'" #distannce3>
 | 
			
		||||
  <div style="margin-bottom: 18px">
 | 
			
		||||
    <span style="color: #da001b; font-size: 18px"> {{ i?.goodsInfos?.[0]?.freightPrice | currency }}{{ i?.goodsInfos?.[0]?.freightTypeLabel }} </span>({{ i?.goodsInfos?.[0]?.settlementBasisLabel }},{{
 | 
			
		||||
      i?.goodsInfos?.[0]?.ruleLabel
 | 
			
		||||
    }})</div
 | 
			
		||||
  >
 | 
			
		||||
  <st #st [data]="i?.billExpenseDetailVOList" [columns]="logColumns" [ps]="0" [page]="{ show: false, showSize: false }">
 | 
			
		||||
    <ng-template st-row="price" let-item let-index="index">
 | 
			
		||||
      {{ item.price | currency}}
 | 
			
		||||
    </ng-template>
 | 
			
		||||
  </st>
 | 
			
		||||
  <div>
 | 
			
		||||
    总计:<span style="color: #da001b; font-size: 18px">{{ totalObj?.price | currency }}</span> (运费{{
 | 
			
		||||
      totalObj?.price - attObj?.price | currency
 | 
			
		||||
    }},附加运费{{ attObj?.price | currency}},附加费率{{ (attObj?.price / totalObj?.price) * 100 | number: '0.2-2' }}%)
 | 
			
		||||
  </div>
 | 
			
		||||
  <div>收款人:{{ i?.payee?.name }}/{{ i?.payee?.phone }}/{{ i?.payee?.idNo }}</div>
 | 
			
		||||
</nz-card> -->
 | 
			
		||||
<nz-card  [nzTitle]="'运费信息' +'(到货后'+i?.paymentDays+'天内支付运费)'"  #distannce3>
 | 
			
		||||
<!-- <nz-card  [nzTitle]="'运费信息' +'(到货后'+i?.paymentDays+'天内支付运费)'"  #distannce3>
 | 
			
		||||
  <h2>{{i?.freightPrice}}{{i?.goodsInfos?.[0]?.freightTypeLabel}}({{ i?.goodsInfos?.[0]?.settlementBasisLabel ? i?.goodsInfos?.[0]?.settlementBasisLabel + ',' :' ' }}{{i?.goodsInfos?.[0]?.ruleLabel}})</h2>
 | 
			
		||||
  <st #st [data]="billExpenses" [columns]="logColumns" [ps]="0" [page]="{ show: false, showSize: false }">
 | 
			
		||||
    <ng-template st-row="PriceType" let-item let-index="index"> 到付 </ng-template>
 | 
			
		||||
@ -178,8 +160,38 @@
 | 
			
		||||
  </div>
 | 
			
		||||
  <div *ngIf=" i?.payee?.name !== i?.driver?.name">车队长:{{ i?.payee?.name }}{{ i?.payee?.phone ? "/" +
 | 
			
		||||
    i?.payee?.phone : ''}}/{{ i?.payee?.idNo }}</div>
 | 
			
		||||
</nz-card> -->
 | 
			
		||||
<!--
 | 
			
		||||
结算依据为1时,卸货时间不为空,显示运费信息,否则隐藏
 | 
			
		||||
结算依据为2时,装货时间不为空,显示运费信息,否则隐藏
 | 
			
		||||
 -->
 | 
			
		||||
 <nz-card [nzTitle]="priceTitel" #distannce3
 | 
			
		||||
 [hidden]="!(i?.settlementBasis ==='1' && i?.unloadTime) && !(i?.settlementBasis ==='2' && i?.loadTime)">
 | 
			
		||||
 <ng-template #priceTitel>
 | 
			
		||||
   <span>运费信息</span><span
 | 
			
		||||
     style="padding-left: 24px; color: #f59a23;font-size: small;">到货后{{i?.goodsResource.paymentDays}}天内支付运费</span>
 | 
			
		||||
 </ng-template>
 | 
			
		||||
 <div style="margin-bottom: 18px">
 | 
			
		||||
   <span style="color: #da001b; font-size: 18px"> {{ i?.freightPrice }}{{ i?.freightTypeLabel }} </span>({{
 | 
			
		||||
   i?.settlementBasisLabel }},{{
 | 
			
		||||
   i?.ruleLabel
 | 
			
		||||
   }})
 | 
			
		||||
 </div>
 | 
			
		||||
 <st #st [data]="billExpenses" [columns]="logColumns" [ps]="0" [page]="{ show: false, showSize: false }">
 | 
			
		||||
  <ng-template st-row="prices" let-item let-index="index">
 | 
			
		||||
    {{ item.price + item.surcharge | currency }}
 | 
			
		||||
  </ng-template>
 | 
			
		||||
   <ng-template st-row="PriceType" let-item let-index="index"> 到付 </ng-template>
 | 
			
		||||
   <ng-template st-row="price" let-item let-index="index"> {{item.price | currency}} </ng-template>
 | 
			
		||||
   <ng-template st-row="surcharge" let-item let-index="index"> {{item.surcharge | currency}} </ng-template>
 | 
			
		||||
 </st>
 | 
			
		||||
 <div>
 | 
			
		||||
   总计:<span style="color: #da001b; font-size: 18px">{{ i?.totalAmount | currency }}</span> (运费{{ i?.totalFreight |
 | 
			
		||||
   currency }},
 | 
			
		||||
   附加费{{ i?.totalSurcharge | currency }},附加费率{{ i?.totalRate * 100 | number: '0.2-2' }}%)
 | 
			
		||||
 </div>
 | 
			
		||||
 <div *ngIf=" i?.payeeId !== i?.driverId" class="mt-xs">车队长:{{ i?.payeeName }}/{{ i?.payeePhone }}</div>
 | 
			
		||||
</nz-card>
 | 
			
		||||
 | 
			
		||||
<nz-card nzTitle="附件信息" #distannce4>
 | 
			
		||||
  <sv-container>
 | 
			
		||||
    <sv label="协议附件">
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user