|
|
@ -34,6 +34,16 @@ |
|
|
|
</nz-form-control> |
|
|
|
</nz-form-control> |
|
|
|
</nz-form-item> |
|
|
|
</nz-form-item> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div nz-col nzSpan="8"> |
|
|
|
|
|
|
|
<nz-form-item> |
|
|
|
|
|
|
|
<nz-form-label [nzSpan]="6">油号</nz-form-label> |
|
|
|
|
|
|
|
<nz-form-control [nzSpan]="16"> |
|
|
|
|
|
|
|
<nz-select nzShowSearch nzAllowClear nzPlaceHolder="请选择订单状态" formControlName="oilNo"> |
|
|
|
|
|
|
|
<nz-option *ngFor="let item of oilNoArray" nzLabel="{{item.codeName}}" nzValue="{{item.codeValue}}"></nz-option> |
|
|
|
|
|
|
|
</nz-select> |
|
|
|
|
|
|
|
</nz-form-control> |
|
|
|
|
|
|
|
</nz-form-item> |
|
|
|
|
|
|
|
</div> |
|
|
|
<div nz-col nzSpan="8"> |
|
|
|
<div nz-col nzSpan="8"> |
|
|
|
<nz-form-item> |
|
|
|
<nz-form-item> |
|
|
|
<nz-form-label [nzSpan]="6">状态</nz-form-label> |
|
|
|
<nz-form-label [nzSpan]="6">状态</nz-form-label> |
|
|
@ -61,6 +71,18 @@ |
|
|
|
</nz-form-control> |
|
|
|
</nz-form-control> |
|
|
|
</nz-form-item> |
|
|
|
</nz-form-item> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div nz-col nzSpan="8"> |
|
|
|
|
|
|
|
<nz-form-item> |
|
|
|
|
|
|
|
<nz-form-label [nzSpan]="6">支付时间</nz-form-label> |
|
|
|
|
|
|
|
<nz-form-control [nzSpan]="16"> |
|
|
|
|
|
|
|
<nz-range-picker |
|
|
|
|
|
|
|
formControlName="payTime" |
|
|
|
|
|
|
|
[nzShowTime]="{ nzHideDisabledOptions: true}" |
|
|
|
|
|
|
|
nzFormat="yyyy-MM-dd HH:mm:ss" |
|
|
|
|
|
|
|
></nz-range-picker> |
|
|
|
|
|
|
|
</nz-form-control> |
|
|
|
|
|
|
|
</nz-form-item> |
|
|
|
|
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
<div nz-row> |
|
|
|
<div nz-row> |
|
|
@ -76,7 +98,7 @@ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="inner-content"> |
|
|
|
<div class="inner-content"> |
|
|
|
<span>共计 {{total}} 条数据</span> |
|
|
|
<span>总笔数:{{dataCount.refuelNum}} 笔,总加油金额:{{dataCount.refuelPrice}} 元,总升数:{{dataCount.refuelLiters}} 升</span> |
|
|
|
<div class="operating-button"> |
|
|
|
<div class="operating-button"> |
|
|
|
<button nz-button nzType="primary" class="right-btn" (click)="excelOrder()" ><i nz-icon nzType="import" nzTheme="outline"></i>导出订单</button> |
|
|
|
<button nz-button nzType="primary" class="right-btn" (click)="excelOrder()" ><i nz-icon nzType="import" nzTheme="outline"></i>导出订单</button> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -110,6 +132,7 @@ |
|
|
|
<th nzWidth="90px">支付金额</th> |
|
|
|
<th nzWidth="90px">支付金额</th> |
|
|
|
<th nzWidth="90px">优惠金额</th> |
|
|
|
<th nzWidth="90px">优惠金额</th> |
|
|
|
<th nzWidth="120px">创建时间</th> |
|
|
|
<th nzWidth="120px">创建时间</th> |
|
|
|
|
|
|
|
<th nzWidth="120px">支付时间</th> |
|
|
|
<th nzRight nzWidth="80px">状态</th> |
|
|
|
<th nzRight nzWidth="80px">状态</th> |
|
|
|
<th nzWidth="105px" nzRight>操作</th> |
|
|
|
<th nzWidth="105px" nzRight>操作</th> |
|
|
|
</tr> |
|
|
|
</tr> |
|
|
@ -130,6 +153,7 @@ |
|
|
|
<td>{{data.payRealPrice}}</td> |
|
|
|
<td>{{data.payRealPrice}}</td> |
|
|
|
<td>{{data.deductionPrice}}</td> |
|
|
|
<td>{{data.deductionPrice}}</td> |
|
|
|
<td>{{data.createTime | date: 'yyyy-MM-dd HH:mm:ss'}}</td> |
|
|
|
<td>{{data.createTime | date: 'yyyy-MM-dd HH:mm:ss'}}</td> |
|
|
|
|
|
|
|
<td>{{data.payTime | date: 'yyyy-MM-dd HH:mm:ss'}}</td> |
|
|
|
<td nzRight>{{data.status | orderCouponStatus}}</td> |
|
|
|
<td nzRight>{{data.status | orderCouponStatus}}</td> |
|
|
|
<td nzRight class="table-td-operation"> |
|
|
|
<td nzRight class="table-td-operation"> |
|
|
|
<a style="float: left;width: 100%;margin-bottom: 10px;" *ngIf="BTN_GAS_ORDER_PRINT && (secUser['objectType'] == 3 || secUser['objectType'] == 8) && data.printStatus == false" (click)="showPrintModal(data.orderId, data)">打印小票</a> |
|
|
|
<a style="float: left;width: 100%;margin-bottom: 10px;" *ngIf="BTN_GAS_ORDER_PRINT && (secUser['objectType'] == 3 || secUser['objectType'] == 8) && data.printStatus == false" (click)="showPrintModal(data.orderId, data)">打印小票</a> |
|
|
|