Merge branch 'develop' of https://gitlab.eascs.com/tms-ui/tms-obc-web into develop
This commit is contained in:
		| @ -4,7 +4,7 @@ | |||||||
|  * @Author       : Shiming |  * @Author       : Shiming | ||||||
|  * @Date         : 2021-12-24 16:58:02 |  * @Date         : 2021-12-24 16:58:02 | ||||||
|  * @LastEditors  : Shiming |  * @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 |  * @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. |  * Copyright (C) 2022 huzhenhong. All rights reserved. | ||||||
| --> | --> | ||||||
| @ -254,31 +254,38 @@ | |||||||
|  |  | ||||||
|       </sf> |       </sf> | ||||||
| </nz-card> | </nz-card> | ||||||
|  | <!-- | ||||||
| <nz-card nzTitle="运费信息"#distannce3> | 结算依据为1时,卸货时间不为空,显示运费信息,否则隐藏 | ||||||
|   <h2>{{i?.goodsInfoList?.[0]?.freightPrice}}{{i?.goodsInfoList?.[0]?.freightTypeLabel}}({{ i?.goodsInfoList?.[0]?.settlementBasisLabel ? i?.goodsInfoList?.[0]?.settlementBasisLabel + ',' :' ' }}{{i?.goodsInfoList?.[0]?.ruleLabel}})</h2> | 结算依据为2时,装货时间不为空,显示运费信息,否则隐藏 | ||||||
|   <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> |  <nz-card [nzTitle]="priceTitel" #distannce3 | ||||||
|     <ng-template st-row="price" let-item let-index="index"> |  [hidden]="!(i?.settlementBasis ==='1' && i?.unloadTime) && !(i?.settlementBasis ==='2' && i?.loadTime)"> | ||||||
|       {{ item.price | currency }} |  <ng-template #priceTitel> | ||||||
|  |    <span>运费信息</span><span | ||||||
|  |      style="padding-left: 24px; color: #f59a23;font-size: small;">到货后{{i?.goodsResource.paymentDays}}天内支付运费</span> | ||||||
|  </ng-template> |  </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"> |   <ng-template st-row="prices" let-item let-index="index"> | ||||||
|     {{ item.price + item.surcharge | currency }} |     {{ item.price + item.surcharge | currency }} | ||||||
|   </ng-template> |   </ng-template> | ||||||
|     <ng-template st-row="surcharge" let-item let-index="index"> |    <ng-template st-row="PriceType" let-item let-index="index"> 到付 </ng-template> | ||||||
|       {{ item.surcharge | currency }} |    <ng-template st-row="price" let-item let-index="index"> {{item.price | currency}} </ng-template> | ||||||
|     </ng-template> |    <ng-template st-row="surcharge" let-item let-index="index"> {{item.surcharge | currency}} </ng-template> | ||||||
|  </st> |  </st> | ||||||
|  <div> |  <div> | ||||||
|     <div> |    总计:<span style="color: #da001b; font-size: 18px">{{ i?.totalAmount | currency }}</span> (运费{{ i?.totalFreight | | ||||||
|       总计:<span style="color: #da001b; font-size: 18px">{{ i?.totalAmount | currency }}</span> (运费{{ i?.totalFreight | currency }}, |    currency }}, | ||||||
|       附加费{{ i?.totalSurcharge | currency }},附加费率{{ (i?.totalRate * 100).toFixed(2)}}%) |    附加费{{ i?.totalSurcharge | currency }},附加费率{{ i?.totalRate * 100 | number: '0.2-2' }}%) | ||||||
|  </div> |  </div> | ||||||
|   </div> |  <div *ngIf=" i?.payeeId !== i?.driverId" class="mt-xs">车队长:{{ i?.payeeName }}/{{ i?.payeePhone }}/{{ i?.payeeIdNo }}</div> | ||||||
|   <div *ngIf ="i?.payeePhone && i?.payeePhone !== i?.driverPhone">车队长:{{ i?.payeeName }}{{ i?.payeePhone ? "/" +  i?.payeePhone : ''}}</div> |  | ||||||
| </nz-card> | </nz-card> | ||||||
|  |  | ||||||
|  |  | ||||||
| <nz-card nzTitle="附件信息" #distannce4> | <nz-card nzTitle="附件信息" #distannce4> | ||||||
|   <sv-container> |   <sv-container> | ||||||
|     <sv label="协议附件"> |     <sv label="协议附件"> | ||||||
|  | |||||||
| @ -4,7 +4,7 @@ | |||||||
|  * @Author       : Shiming |  * @Author       : Shiming | ||||||
|  * @Date         : 2021-12-06 20:20:26 |  * @Date         : 2021-12-06 20:20:26 | ||||||
|  * @LastEditors  : Shiming |  * @LastEditors  : Shiming | ||||||
|  * @LastEditTime : 2022-04-14 10:08:12 |  * @LastEditTime : 2022-04-15 09:58:13 | ||||||
|  * @FilePath     : \\tms-obc-web\\src\\app\\routes\\order-management\\components\\bulk-detail\\bulk-detail.component.html |  * @FilePath     : \\tms-obc-web\\src\\app\\routes\\order-management\\components\\bulk-detail\\bulk-detail.component.html | ||||||
|  * Copyright (C) 2022 huzhenhong. All rights reserved. |  * Copyright (C) 2022 huzhenhong. All rights reserved. | ||||||
| --> | --> | ||||||
| @ -127,30 +127,36 @@ | |||||||
|     </div> |     </div> | ||||||
|   </div> |   </div> | ||||||
| </nz-card> | </nz-card> | ||||||
| <nz-card nzTitle="运费信息" #distannce3> | <!-- | ||||||
|   <h2>{{i?.freightPrice}}{{i?.freightTypeLabel}}({{ i?.settlementBasisLabel ? i?.settlementBasisLabel + ',' :' ' | 结算依据为1时,卸货时间不为空,显示运费信息,否则隐藏 | ||||||
|     }}{{i?.ruleLabel}})</h2> | 结算依据为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 }"> |  <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"> |   <ng-template st-row="prices" let-item let-index="index"> | ||||||
|     {{ item.price + item.surcharge | currency }} |     {{ item.price + item.surcharge | currency }} | ||||||
|   </ng-template> |   </ng-template> | ||||||
|     <ng-template st-row="price" let-item let-index="index"> |    <ng-template st-row="PriceType" let-item let-index="index"> 到付 </ng-template> | ||||||
|       {{ item.price | currency }} |    <ng-template st-row="price" let-item let-index="index"> {{item.price | currency}} </ng-template> | ||||||
|     </ng-template> |    <ng-template st-row="surcharge" let-item let-index="index"> {{item.surcharge | currency}} </ng-template> | ||||||
|     <ng-template st-row="surcharge" let-item let-index="index"> |  | ||||||
|       {{ item.surcharge | currency }} |  | ||||||
|     </ng-template> |  | ||||||
|  </st> |  </st> | ||||||
|   <div> |  | ||||||
|  <div> |  <div> | ||||||
|    总计:<span style="color: #da001b; font-size: 18px">{{ i?.totalAmount | currency }}</span> (运费{{ i?.totalFreight | |    总计:<span style="color: #da001b; font-size: 18px">{{ i?.totalAmount | currency }}</span> (运费{{ i?.totalFreight | | ||||||
|    currency }}, |    currency }}, | ||||||
|       附加费{{ i?.totalSurcharge | currency }},附加费率{{ (i?.totalRate * 100).toFixed(2)}}%) |    附加费{{ i?.totalSurcharge | currency }},附加费率{{ i?.totalRate * 100 | number: '0.2-2' }}%) | ||||||
|  </div> |  </div> | ||||||
|   </div> |  <div *ngIf=" i?.payeeId !== i?.driverId" class="mt-xs">车队长:{{ i?.payeeName }}/{{ i?.payeePhone }}/{{ i?.payeeIdNo }}</div> | ||||||
|   <div *ngIf="i?.payeePhone && i?.payeePhone !== i?.driverPhone">车队长:{{ i?.payeeName }}{{ i?.payeePhone ? "/" + |  | ||||||
|     i?.payeePhone : ''}}</div> |  | ||||||
| </nz-card> | </nz-card> | ||||||
|  |  | ||||||
| <nz-card nzTitle="附件信息" #distannce4> | <nz-card nzTitle="附件信息" #distannce4> | ||||||
|  | |||||||
| @ -4,7 +4,7 @@ | |||||||
|  * @Author       : Shiming |  * @Author       : Shiming | ||||||
|  * @Date         : 2021-12-23 13:39:58 |  * @Date         : 2021-12-23 13:39:58 | ||||||
|  * @LastEditors  : Shiming |  * @LastEditors  : Shiming | ||||||
|  * @LastEditTime : 2022-04-01 11:08:44 |  * @LastEditTime : 2022-04-15 10:07:20 | ||||||
|  * @FilePath     : \\tms-obc-web\\src\\app\\routes\\order-management\\components\\vehicle-detail-change\\vehicle-detail-change.component.html |  * @FilePath     : \\tms-obc-web\\src\\app\\routes\\order-management\\components\\vehicle-detail-change\\vehicle-detail-change.component.html | ||||||
|  * Copyright (C) 2022 huzhenhong. All rights reserved. |  * Copyright (C) 2022 huzhenhong. All rights reserved. | ||||||
| --> | --> | ||||||
| @ -250,10 +250,12 @@ | |||||||
|     </ng-template> |     </ng-template> | ||||||
|   </st> |   </st> | ||||||
|   <div> |   <div> | ||||||
|     总计:<span style="color: #da001b; font-size: 18px">{{ i?.totalAmount | currency }}</span> (运费{{ i?.totalFreight | currency }}, |     总计:<span style="color: #da001b; font-size: 18px">{{ i?.totalAmount | currency }}</span> (运费{{ i?.totalFreight | | ||||||
|     附加费{{ i?.totalSurcharge | currency }},附加费率{{ (i?.totalRate * 100).toFixed(2)}}% ) |     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> |   <div *ngIf="i?.payeePhone && i?.payeePhone !== i?.driverPhone">车队长:{{ i?.payeeName }}{{ i?.payeePhone ? '/' + | ||||||
|  |     i?.payeePhone : '' }}/{{ i?.payeeIdNo }}</div> | ||||||
| </nz-card> | </nz-card> | ||||||
|  |  | ||||||
| <nz-card nzTitle="附件信息" #distannce4> | <nz-card nzTitle="附件信息" #distannce4> | ||||||
|  | |||||||
| @ -4,7 +4,7 @@ | |||||||
|  * @Author       : Shiming |  * @Author       : Shiming | ||||||
|  * @Date         : 2021-12-28 14:42:03 |  * @Date         : 2021-12-28 14:42:03 | ||||||
|  * @LastEditors  : Shiming |  * @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 |  * @FilePath     : \\tms-obc-web\\src\\app\\routes\\order-management\\components\\vehicle-detail\\vehicle-detail.component.html | ||||||
|  * Copyright (C) 2022 huzhenhong. All rights reserved. |  * Copyright (C) 2022 huzhenhong. All rights reserved. | ||||||
| --> | --> | ||||||
| @ -158,7 +158,7 @@ | |||||||
|     附加费{{ i?.totalSurcharge | currency }},附加费率{{ (i?.totalRate * 100).toFixed(2) }}% ) |     附加费{{ i?.totalSurcharge | currency }},附加费率{{ (i?.totalRate * 100).toFixed(2) }}% ) | ||||||
|   </div> |   </div> | ||||||
|   <div *ngIf="i?.payeePhone && i?.payeePhone !== i?.driverPhone">车队长:{{ i?.payeeName }}{{ i?.payeePhone ? '/' + |   <div *ngIf="i?.payeePhone && i?.payeePhone !== i?.driverPhone">车队长:{{ i?.payeeName }}{{ i?.payeePhone ? '/' + | ||||||
|     i?.payeePhone : '' }}</div> |     i?.payeePhone : '' }}/{{ i?.payeeIdNo }}</div> | ||||||
| </nz-card> | </nz-card> | ||||||
|  |  | ||||||
| <nz-card nzTitle="附件信息" #distannce4> | <nz-card nzTitle="附件信息" #distannce4> | ||||||
|  | |||||||
| @ -53,9 +53,12 @@ export class TaxManagementIndividualDeclareComponent implements OnInit { | |||||||
|    * 查询参数 |    * 查询参数 | ||||||
|    */ |    */ | ||||||
|   get reqParams() { |   get reqParams() { | ||||||
|     const params = Object.assign({}, this.sf?.value || {}, { |     console.log(); | ||||||
|       declareStatus: this.selectedIndex |      | ||||||
|     }); |     const params = Object.assign({}, this.sf?.value || {}); | ||||||
|  |     if(this.selectedIndex) { | ||||||
|  |       params.declareStatus = this.selectedIndex | ||||||
|  |     } | ||||||
|     delete params._$expand; |     delete params._$expand; | ||||||
|     return { ...params }; |     return { ...params }; | ||||||
|   } |   } | ||||||
|  | |||||||
| @ -1,7 +1,7 @@ | |||||||
| <!-- | <!-- | ||||||
|  * @Author: your name |  * @Author: your name | ||||||
|  * @Date: 2021-12-03 15:31:52 |  * @Date: 2021-12-03 15:31:52 | ||||||
|  * @LastEditTime : 2022-04-14 16:38:56 |  * @LastEditTime : 2022-04-14 20:06:41 | ||||||
|  * @LastEditors  : Shiming |  * @LastEditors  : Shiming | ||||||
|  * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE |  * @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 |  * @FilePath     : \\tms-obc-web\\src\\app\\routes\\waybill-management\\components\\bulk-detail\\bulk-detail.component.html | ||||||
| @ -139,24 +139,6 @@ | |||||||
| </div> | </div> | ||||||
| </nz-card> | </nz-card> | ||||||
| <!-- <nz-card  [nzTitle]="'运费信息' +'(到货后'+i?.paymentDays+'天内支付运费)'"  #distannce3> | <!-- <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> |  | ||||||
|   <h2>{{i?.freightPrice}}{{i?.goodsInfos?.[0]?.freightTypeLabel}}({{ i?.goodsInfos?.[0]?.settlementBasisLabel ? i?.goodsInfos?.[0]?.settlementBasisLabel + ',' :' ' }}{{i?.goodsInfos?.[0]?.ruleLabel}})</h2> |   <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 }"> |   <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="PriceType" let-item let-index="index"> 到付 </ng-template> | ||||||
| @ -178,8 +160,38 @@ | |||||||
|   </div> |   </div> | ||||||
|   <div *ngIf=" i?.payee?.name !== i?.driver?.name">车队长:{{ i?.payee?.name }}{{ i?.payee?.phone ? "/" + |   <div *ngIf=" i?.payee?.name !== i?.driver?.name">车队长:{{ i?.payee?.name }}{{ i?.payee?.phone ? "/" + | ||||||
|     i?.payee?.phone : ''}}/{{ i?.payee?.idNo }}</div> |     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> | ||||||
|  |  | ||||||
| <nz-card nzTitle="附件信息" #distannce4> | <nz-card nzTitle="附件信息" #distannce4> | ||||||
|   <sv-container> |   <sv-container> | ||||||
|     <sv label="协议附件"> |     <sv label="协议附件"> | ||||||
|  | |||||||
		Reference in New Issue
	
	Block a user