182 lines
7.0 KiB
HTML
182 lines
7.0 KiB
HTML
<div *ngIf="i">
|
||
<page-header-wrapper [title]="'整车货源详情'" [logo]="logo" [content]="headerContent">
|
||
<ng-template #logo>
|
||
<button nz-button nz-tooltip nzTooltipTitle="返回上一页" (click)="goBack()">
|
||
<i nz-icon nzType="left" nzTheme="outline"></i>
|
||
</button>
|
||
</ng-template>
|
||
<ng-template #headerContent>
|
||
<div class="mb-xs" nz-row>
|
||
<button nz-button nzType="primary" nzSize="small" nzDanger>{{i?.resourceStatusLabel}}</button>
|
||
<h4 class="ml-md">货源编码 : {{ i?.resourceCode }}</h4>
|
||
</div>
|
||
<div nz-row>
|
||
<div nz-col nzSpan="14" class="text-grey-darker">网络货运人:{{i?.enterpriseInfoName}}</div>
|
||
<div nz-col nzSpan="10">
|
||
<button nz-button (click)="cancleGoodsSource()" *ngIf="i?.resourceStatus === '1'">取消货源</button>
|
||
<button nz-button (click)="assignedCar(i)"
|
||
*ngIf="i?.resourceStatus === '1' && i?.serviceType === '2'">重新指派</button>
|
||
<button nz-button (click)="updateGoodsSource(i)" *ngIf="i?.resourceStatus === '1'">修改货源</button>
|
||
<button nz-button nzType="primary" nzGhost (click)="nextOrder(i)">再下一单</button>
|
||
</div>
|
||
</div>
|
||
<div class="mt-sm mb-sm" nz-row>
|
||
<div>
|
||
<b>总费用:<span class="text-red-light text-md">{{i?.totalAmount | currency: '¥'}}</span></b>
|
||
</div>
|
||
</div>
|
||
<nz-divider></nz-divider>
|
||
<div sv-container *ngIf="i">
|
||
<sv label="外部货源号">{{ i?.externalResourceCode }} </sv>
|
||
<sv label="项目">{{i?.enterpriseProjectName}}</sv>
|
||
<sv label="录单员">{{i?.createUserName}}/{{i?.createUserPhone}}</sv>
|
||
<sv label="调度员">{{i?.dispatchName}}/{{i?.dispatchPhone}} </sv>
|
||
<sv label="服务类型">{{i?.serviceTypeLabel}} </sv>
|
||
</div>
|
||
</ng-template>
|
||
</page-header-wrapper>
|
||
<nz-card title="货源进度">
|
||
<div class="approval-status">
|
||
<div style="width: 60%; margin: 0 auto">
|
||
<nz-steps [nzLabelPlacement]="'vertical'">
|
||
<nz-step [nzStatus]="i?.resourceStatus !== '1'?'finish':'process'" nzIcon="solution"
|
||
[nzDescription]="i?.createAt" nzTitle="下单"></nz-step>
|
||
<nz-step *ngIf="i?.resourceStatus === '1' || i?.resourceStatus === '2' "
|
||
[nzStatus]="i?.resourceStatus=== '1'? 'wait':'finish'" nzIcon="file-done" [nzTitle]="'接单'"></nz-step>
|
||
<nz-step nzStatus="finish" nzIcon="close-circle" nzTitle="取消货源" *ngIf="i?.resourceStatus === '3'"></nz-step>
|
||
</nz-steps>
|
||
</div>
|
||
</div>
|
||
</nz-card>
|
||
|
||
|
||
<nz-card nzTitle="基本信息">
|
||
<sv-container col="2">
|
||
<sv-title>货物信息</sv-title>
|
||
<ng-container *ngFor="let item of i?.goodsInfoVOList">
|
||
<sv label="货物名称">
|
||
{{item.goodsName}}
|
||
</sv>
|
||
<sv label="货物数量">
|
||
{{item.weight}}吨,{{item.volume}}方,{{item.number}}件
|
||
</sv>
|
||
</ng-container>
|
||
</sv-container>
|
||
<sv-container class="mt-md">
|
||
<sv-title>承运信息</sv-title>
|
||
<sv label="司机姓名">
|
||
{{i?.carrierInformationVO?.driverName}}
|
||
</sv>
|
||
<sv label="手机号">
|
||
{{i?.carrierInformationVO?.driverTelephone}}
|
||
</sv>
|
||
<sv label="车牌号">
|
||
{{i?.carrierInformationVO?.driverLicensePlate}}
|
||
</sv>
|
||
</sv-container>
|
||
<div class="mt-md">
|
||
<h4 class="text-md">装货卸货信息
|
||
<span class="ml-sm text-sm">(
|
||
<label>{{i?.loadingCount}}装</label>
|
||
<label>{{i?.unloadingCount}}卸</label>
|
||
)
|
||
</span>
|
||
</h4>
|
||
<div nz-row [nzGutter]="24">
|
||
<div nz-col [nzSpan]="12">
|
||
<div class="handling-info p-md">
|
||
<div class="flex" *ngFor="let item of i?.unLoadingPlaceVOList">
|
||
<div *ngIf="item?.type === '1'" class="loading-row">
|
||
<div class="handling-info-icon loading-bg">装</div>
|
||
<div class="info">
|
||
<h4>装货地:{{item?.province}}{{item?.city}}{{item?.area}}{{item?.detailedAddress}}</h4>
|
||
<p>联系人:{{item?.appUserName}}/{{item?.contractTelephone}}</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<p class="time-info">装货时间:{{i?.loadingTime}}</p>
|
||
</div>
|
||
</div>
|
||
<div nz-col [nzSpan]="12">
|
||
<div class="handling-info p-md">
|
||
<div class="flex" *ngFor="let item of i?.unLoadingPlaceVOList">
|
||
<div *ngIf="item?.type === '2'" class="loading-row">
|
||
<div class="handling-info-icon unloaing-bg">卸</div>
|
||
<div class="info">
|
||
<h4>卸货地:{{item?.province}}{{item?.city}}{{item?.area}}{{item?.detailedAddress}}</h4>
|
||
<p>联系人:{{item?.appUserName}}/{{item?.contractTelephone}}</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<p class="time-info">卸货时间:{{i?.unloadingTime}}</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</nz-card>
|
||
|
||
<nz-card nzTitle="服务信息">
|
||
<sv-container>
|
||
<sv label="增值服务套餐">
|
||
{{i?.insuranceTypeLabel}}
|
||
</sv>
|
||
<sv label="货物价值">
|
||
{{i?.goodsValue |currency}}
|
||
</sv>
|
||
<sv label="保价费金额">
|
||
{{i?.insuranceAmount |currency}} 元
|
||
</sv>
|
||
</sv-container>
|
||
</nz-card>
|
||
<nz-card [nzTitle]="'运费信息(到货后'+i?.paymentDays+'天内支付运费)'">
|
||
<st [data]="i?.expenseVOList" [columns]="expenseColumns" [page]="{show:false}">
|
||
<ng-template st-row="total" let-item>
|
||
<div>
|
||
{{item?.totalAmount | currency}}
|
||
<span>(含附加费)</span>
|
||
</div>
|
||
</ng-template>
|
||
<ng-template st-row="price" let-item>
|
||
<div>
|
||
{{item?.price | currency}}
|
||
</div>
|
||
</ng-template>
|
||
</st>
|
||
<div class="freight-info-box mt-md" nz-row>
|
||
<div nz-col nzSpan="24">
|
||
<h3>
|
||
<label>总计 :</label>
|
||
<span class="text-error-dark text-xl">
|
||
{{(i?.totalAmount) | currency}}
|
||
</span>
|
||
<span>(运费{{i?.totalFreight | currency}}含附加运费 {{i?.totalSurcharge| currency}})</span>
|
||
</h3>
|
||
<div>收款人:{{ i?.payeeName }}/{{ i?.payeePhone }}/{{ i?.payeeCardNo }}</div>
|
||
</div>
|
||
</div>
|
||
</nz-card>
|
||
<nz-card nzTitle="补充信息">
|
||
<sv-container>
|
||
<sv label="是否回单">
|
||
{{i?.supplementaryInformationVO?.stateReceipt?'是':'否'}}
|
||
</sv>
|
||
<sv label="回单类型">
|
||
{{ i?.supplementaryInformationVO?.receiptType === '1' ? '电子回单' : '纸质回单' }}
|
||
</sv>
|
||
<sv label="所在地区">
|
||
{{i?.supplementaryInformationVO?.area}}
|
||
</sv>
|
||
<sv label="详细地址">
|
||
{{i?.supplementaryInformationVO?.address}}
|
||
</sv>
|
||
<sv label="备注">
|
||
{{i?.supplementaryInformationVO?.remarks}}
|
||
</sv>
|
||
</sv-container>
|
||
</nz-card>
|
||
<nz-card nzTitle="操作日志">
|
||
<st #st [data]="i?.auditRecordList" [columns]="logColumns" [ps]="0" [page]="{ show: false, showSize: false }">
|
||
</st>
|
||
</nz-card>
|
||
</div>
|