货源详情进度条添加操作时间
This commit is contained in:
		| @ -13,16 +13,17 @@ | |||||||
|       <div nz-row> |       <div nz-row> | ||||||
|         <div nz-col nzSpan="14" class="text-grey-darker">网络货运人:{{ i?.shipperAppUserName }}</div> |         <div nz-col nzSpan="14" class="text-grey-darker">网络货运人:{{ i?.shipperAppUserName }}</div> | ||||||
|         <div nz-col nzSpan="10"> |         <div nz-col nzSpan="10"> | ||||||
|           <button nz-button (click)="cancleGoodsSource()" *ngIf="i?.resourceStatus === '1'"  acl  [acl-ability]="['SUPPLY-BULK-DETAIL-cancelSupply']">取消货源</button> |           <button nz-button (click)="cancleGoodsSource()" *ngIf="i?.resourceStatus === '1'" acl | ||||||
|           <button nz-button (click)="updatePrice(i)" *ngIf="i?.resourceStatus === '1'"  acl  [acl-ability]="['SUPPLY-BULK-DETAIL-updatePrice']">修改单价</button> |             [acl-ability]="['SUPPLY-BULK-DETAIL-cancelSupply']">取消货源</button> | ||||||
|           <button nz-button nzType="primary" nzGhost (click)="placeOrder(i)"  acl  [acl-ability]="['SUPPLY-BULK-DETAIL-bulkAnotherOrder']">再下一单</button> |           <button nz-button (click)="updatePrice(i)" *ngIf="i?.resourceStatus === '1'" acl | ||||||
|  |             [acl-ability]="['SUPPLY-BULK-DETAIL-updatePrice']">修改单价</button> | ||||||
|  |           <button nz-button nzType="primary" nzGhost (click)="placeOrder(i)" acl | ||||||
|  |             [acl-ability]="['SUPPLY-BULK-DETAIL-bulkAnotherOrder']">再下一单</button> | ||||||
|         </div> |         </div> | ||||||
|       </div> |       </div> | ||||||
|       <div class="mt-sm mb-sm" nz-row> |       <div class="mt-sm mb-sm" nz-row> | ||||||
|         <div> |         <div> | ||||||
|           <b |           <b>总费用:<span class="text-red-light text-md">{{ i?.totalAmount | currency: '¥' }}</span></b> | ||||||
|             >总费用:<span class="text-red-light text-md">{{ i?.totalAmount | currency: '¥' }}</span></b |  | ||||||
|           > |  | ||||||
|         </div> |         </div> | ||||||
|       </div> |       </div> | ||||||
|       <nz-divider></nz-divider> |       <nz-divider></nz-divider> | ||||||
| @ -39,19 +40,13 @@ | |||||||
|     <div class="approval-status"> |     <div class="approval-status"> | ||||||
|       <div style="width: 60%; margin: 0 auto"> |       <div style="width: 60%; margin: 0 auto"> | ||||||
|         <nz-steps style="width: 70%; margin: 0 auto" [nzLabelPlacement]="'vertical'"> |         <nz-steps style="width: 70%; margin: 0 auto" [nzLabelPlacement]="'vertical'"> | ||||||
|           <nz-step |           <nz-step [nzStatus]="i?.resourceStatus !== '1' ? 'finish' : 'process'" nzIcon="solution" nzTitle="下单" | ||||||
|             [nzStatus]="i?.resourceStatus !== '1' ? 'finish' : 'process'" |             [nzDescription]="i?.createTime"></nz-step> | ||||||
|             nzIcon="solution" |           <nz-step *ngIf="i?.resourceStatus === '1' || i?.resourceStatus === '2'" | ||||||
|             [nzDescription]="i?.createAt" |             [nzStatus]="i?.resourceStatus === '1' ? 'wait' : 'finish'" nzIcon="file-done" | ||||||
|             nzTitle="下单" |             [nzTitle]="i?.resourceStatus === '2' ? '已完结' : '完结'" [nzDescription]="i?.endTime"></nz-step> | ||||||
|           ></nz-step> |           <nz-step nzStatus="finish" nzIcon="close-circle" nzTitle="取消货源" *ngIf="i?.resourceStatus === '3'" | ||||||
|           <nz-step |             [nzDescription]="i?.endTime"></nz-step> | ||||||
|             *ngIf="i?.resourceStatus === '1' || i?.resourceStatus === '2'" |  | ||||||
|             [nzStatus]="i?.resourceStatus === '1' ? 'wait' : 'finish'" |  | ||||||
|             nzIcon="file-done" |  | ||||||
|             [nzTitle]="i?.resourceStatus === '2' ? '已完结' : '完结'" |  | ||||||
|           ></nz-step> |  | ||||||
|           <nz-step nzStatus="finish" nzIcon="close-circle" nzTitle="取消货源" *ngIf="i?.resourceStatus === '3'"></nz-step> |  | ||||||
|         </nz-steps> |         </nz-steps> | ||||||
|       </div> |       </div> | ||||||
|     </div> |     </div> | ||||||
| @ -77,10 +72,8 @@ | |||||||
|       </ng-container> |       </ng-container> | ||||||
|     </sv-container> |     </sv-container> | ||||||
|     <div class="mt-md"> |     <div class="mt-md"> | ||||||
|       <h4 class="text-md" |       <h4 class="text-md">装货卸货信息 | ||||||
|         >装货卸货信息 |         <span class="ml-sm text-sm">( | ||||||
|         <span class="ml-sm text-sm" |  | ||||||
|           >( |  | ||||||
|           <label>{{ i?.loadingCount || '一' }}装</label> |           <label>{{ i?.loadingCount || '一' }}装</label> | ||||||
|           <label>{{ i?.unloadingCount || '一' }}卸</label> |           <label>{{ i?.unloadingCount || '一' }}卸</label> | ||||||
|           ) |           ) | ||||||
| @ -130,7 +123,8 @@ | |||||||
|           <nz-divider class="mb-xs mt-xs"></nz-divider> |           <nz-divider class="mb-xs mt-xs"></nz-divider> | ||||||
|           <div class="text-right"> |           <div class="text-right"> | ||||||
|             <label>单价:</label> |             <label>单价:</label> | ||||||
|             <span class="text-error-dark text-xxl">{{ item?.freightPrice | currency: '¥' }} {{ freightType[item?.freightType] }}</span> |             <span class="text-error-dark text-xxl">{{ item?.freightPrice | currency: '¥' }} {{ | ||||||
|  |               freightType[item?.freightType] }}</span> | ||||||
|           </div> |           </div> | ||||||
|         </div> |         </div> | ||||||
|       </div> |       </div> | ||||||
| @ -139,8 +133,7 @@ | |||||||
|   <nz-card nzTitle="关联运单"> |   <nz-card nzTitle="关联运单"> | ||||||
|     <sv-container col="5"> |     <sv-container col="5"> | ||||||
|       <sv [label]="item?.wayBillStatusLabel" *ngFor="let item of i?.wayBillClassifiedStatisticsVOList"> |       <sv [label]="item?.wayBillStatusLabel" *ngFor="let item of i?.wayBillClassifiedStatisticsVOList"> | ||||||
|         (<span [ngClass]="{ 'text-primary': item?.count > 0 }">{{ item?.count }}</span |         (<span [ngClass]="{ 'text-primary': item?.count > 0 }">{{ item?.count }}</span>) | ||||||
|         >) |  | ||||||
|       </sv> |       </sv> | ||||||
|       <!-- <sv label="运输中"> |       <!-- <sv label="运输中"> | ||||||
|         (<span [ngClass]="{ 'text-primary': i?.id > 0 }">{{ i?.id }}</span>) |         (<span [ngClass]="{ 'text-primary': i?.id > 0 }">{{ i?.id }}</span>) | ||||||
| @ -176,14 +169,10 @@ | |||||||
|     </sv-container> |     </sv-container> | ||||||
|   </nz-card> |   </nz-card> | ||||||
|   <nz-card nzTitle="操作日志"> |   <nz-card nzTitle="操作日志"> | ||||||
|     <st |     <st #st [data]="service.$api_getOperationLogRecordsList" [columns]="logColumns" | ||||||
|       #st |  | ||||||
|       [data]="service.$api_getOperationLogRecordsList" |  | ||||||
|       [columns]="logColumns" |  | ||||||
|       [page]="{ show: false, showSize: false }" |       [page]="{ show: false, showSize: false }" | ||||||
|       [req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, params: reqParams }" |       [req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, params: reqParams }" | ||||||
|       [res]="{ reName: { list: 'data.records', total: 'data.total' } }" |       [res]="{ reName: { list: 'data.records', total: 'data.total' } }"> | ||||||
|     > |  | ||||||
|     </st> |     </st> | ||||||
|   </nz-card> |   </nz-card> | ||||||
| </div> | </div> | ||||||
|  | |||||||
| @ -13,11 +13,14 @@ | |||||||
|       <div nz-row> |       <div nz-row> | ||||||
|         <div nz-col nzSpan="14" class="text-grey-darker">网络货运人:{{i?.enterpriseInfoName}}</div> |         <div nz-col nzSpan="14" class="text-grey-darker">网络货运人:{{i?.enterpriseInfoName}}</div> | ||||||
|         <div nz-col nzSpan="10"> |         <div nz-col nzSpan="10"> | ||||||
|           <button nz-button (click)="cancleGoodsSource()" *ngIf="i?.resourceStatus  === '1'"  acl  [acl-ability]="['SUPPLY-VEHICLE-DETAIL-cancelSupply']">取消货源</button> |           <button nz-button (click)="cancleGoodsSource()" *ngIf="i?.resourceStatus  === '1'" acl | ||||||
|           <button nz-button (click)="assignedCar(i)" |             [acl-ability]="['SUPPLY-VEHICLE-DETAIL-cancelSupply']">取消货源</button> | ||||||
|             *ngIf="i?.resourceStatus  === '1' && i?.serviceType === '2'"  acl  [acl-ability]="['SUPPLY-VEHICLE-DETAIL-vehicleAnew']">重新指派</button> |           <button nz-button (click)="assignedCar(i)" *ngIf="i?.resourceStatus  === '1' && i?.serviceType === '2'" acl | ||||||
|           <button nz-button (click)="updateGoodsSource(i)" *ngIf="i?.resourceStatus === '1'"  acl  [acl-ability]="['SUPPLY-VEHICLE-DETAIL-changeSupply']">修改货源</button> |             [acl-ability]="['SUPPLY-VEHICLE-DETAIL-vehicleAnew']">重新指派</button> | ||||||
|           <button nz-button nzType="primary" nzGhost (click)="nextOrder(i)" acl  [acl-ability]="['SUPPLY-VEHICLE-DETAIL-vehiclePlaceOrder']">再下一单</button> |           <button nz-button (click)="updateGoodsSource(i)" *ngIf="i?.resourceStatus === '1'" acl | ||||||
|  |             [acl-ability]="['SUPPLY-VEHICLE-DETAIL-changeSupply']">修改货源</button> | ||||||
|  |           <button nz-button nzType="primary" nzGhost (click)="nextOrder(i)" acl | ||||||
|  |             [acl-ability]="['SUPPLY-VEHICLE-DETAIL-vehiclePlaceOrder']">再下一单</button> | ||||||
|         </div> |         </div> | ||||||
|       </div> |       </div> | ||||||
|       <div class="mt-sm mb-sm" nz-row> |       <div class="mt-sm mb-sm" nz-row> | ||||||
| @ -40,10 +43,12 @@ | |||||||
|       <div style="width: 60%; margin: 0 auto"> |       <div style="width: 60%; margin: 0 auto"> | ||||||
|         <nz-steps [nzLabelPlacement]="'vertical'"> |         <nz-steps [nzLabelPlacement]="'vertical'"> | ||||||
|           <nz-step [nzStatus]="i?.resourceStatus !== '1'?'finish':'process'" nzIcon="solution" |           <nz-step [nzStatus]="i?.resourceStatus !== '1'?'finish':'process'" nzIcon="solution" | ||||||
|             [nzDescription]="i?.createAt" nzTitle="下单"></nz-step> |             [nzDescription]="i?.createTime" nzTitle="下单"></nz-step> | ||||||
|           <nz-step *ngIf="i?.resourceStatus === '1' || i?.resourceStatus === '2' " |           <nz-step *ngIf="i?.resourceStatus === '1' || i?.resourceStatus === '2' " | ||||||
|             [nzStatus]="i?.resourceStatus=== '1'? 'wait':'finish'" nzIcon="file-done" [nzTitle]="'接单'"></nz-step> |             [nzStatus]="i?.resourceStatus=== '1'? 'wait':'finish'" nzIcon="file-done" [nzTitle]="'接单'" | ||||||
|           <nz-step nzStatus="finish" nzIcon="close-circle" nzTitle="取消货源" *ngIf="i?.resourceStatus === '3'"></nz-step> |             [nzDescription]="i?.orderReceivingTime"></nz-step> | ||||||
|  |           <nz-step nzStatus="finish" nzIcon="close-circle" nzTitle="取消货源" *ngIf="i?.resourceStatus === '3'" | ||||||
|  |             [nzDescription]="i?.endTime"></nz-step> | ||||||
|         </nz-steps> |         </nz-steps> | ||||||
|       </div> |       </div> | ||||||
|     </div> |     </div> | ||||||
|  | |||||||
		Reference in New Issue
	
	Block a user