commit
fc78d3b1c0
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,114 @@ |
||||
<!-- start 面包屑 --> |
||||
<app-breadcrumb></app-breadcrumb> |
||||
<!-- end 面包屑 --> |
||||
<!--条件搜索--> |
||||
|
||||
<div class="inner-content"> |
||||
<form nz-form [formGroup]="searchForm" (ngSubmit)="search(searchForm.value)"> |
||||
<div nz-row> |
||||
<div nz-col nzSpan="8"> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="8">班组名称</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<input nz-input formControlName="name" /> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
</div> |
||||
<div nz-col nzSpan="8"> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="8">负责人名称</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<input nz-input formControlName="principalName" /> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
</div> |
||||
<div nz-col nzSpan="8"> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="8">负责人电话</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<input nz-input formControlName="principalPhone" /> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
</div> |
||||
</div> |
||||
|
||||
<div nz-row> |
||||
<div nz-col nzSpan="24" class="search-button"> |
||||
<button nz-button nzType="primary"><i nz-icon nzType="search" nzTheme="outline"></i>搜索</button> |
||||
<button nz-button nzType="default" (click)="resetForm()"><i nz-icon nzType="reload" nzTheme="outline"></i>重置</button> |
||||
</div> |
||||
</div> |
||||
</form> |
||||
</div> |
||||
|
||||
<div class="inner-content"> |
||||
<span>共计 {{dataObject.total?dataObject.total:0}} 条数据</span> |
||||
<div class="operating-button"> |
||||
<button nz-button nzType="primary" class="right-btn" (click)="showEditClassGroup(null)"><i nz-icon nzType="plus" nzTheme="outline"></i>添加班组</button> |
||||
</div> |
||||
|
||||
<!--数组表格 --> |
||||
<nz-table #basicTable |
||||
[nzData]="dataObject.list" |
||||
[nzTotal]="dataObject.total" |
||||
[nzFrontPagination]="false" |
||||
[nzLoading]="tableLoading" |
||||
[nzPageIndex]="whereObject.pageNum" |
||||
(nzPageIndexChange)="requestData($event)" |
||||
[nzScroll]="{ x: '1150px'}"> |
||||
<thead> |
||||
<tr> |
||||
<th nzWidth="80px">序号</th> |
||||
<th nzWidth="100px">班组名称</th> |
||||
<th nzWidth="100px">负责人名称</th> |
||||
<th nzWidth="100px">负责人电话</th> |
||||
<th nzWidth="120px">创建时间</th> |
||||
<th nzWidth="100px" nzRight="0px">操作</th> |
||||
</tr> |
||||
</thead> |
||||
<tbody> |
||||
<tr *ngFor="let data of basicTable.data;let i = index"> |
||||
<td>{{i + 1}}</td> |
||||
<td>{{data.name}}</td> |
||||
<td>{{data.principalName}}</td> |
||||
<td>{{data.principalPhone}}</td> |
||||
<td>{{data.createTime | date : 'yyyy-MM-dd HH:mm:ss'}}</td> |
||||
<td nzRight="0px" class="table-td-operation"> |
||||
<a nz-dropdown [nzDropdownMenu]="menu"> 操作列表 <i nz-icon nzType="down"></i> </a> |
||||
<nz-dropdown-menu #menu="nzDropdownMenu"> |
||||
<ul nz-menu nzSelectable> |
||||
<li nz-menu-item><a (click)="showEditClassGroup(data)" >修改</a></li> |
||||
<li nz-menu-item><a (click)="showDeleteConfirm(data.id)">删除</a></li> |
||||
</ul> |
||||
</nz-dropdown-menu> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</nz-table> |
||||
</div> |
||||
|
||||
<nz-modal [(nzVisible)]="classGroupModal" nzTitle="编辑班组" (nzOnCancel)="closeEditClassGroup()" nzWidth="500px" [nzFooter]="null"> |
||||
<form nz-form [formGroup]="classGroupForm"> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="6" nzRequired >班组名称</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<input nz-input formControlName="name" /> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="6" nzRequired >负责人名称</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<input nz-input formControlName="principalName" /> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="6" nzRequired >负责人电话</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<input nz-input formControlName="principalPhone" /> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
<div style="text-align: center;"> |
||||
<button nz-button nzType="primary" style="width: 150px;" (click)="submitEditClassGroup()">保存</button> |
||||
</div> |
||||
</form> |
||||
</nz-modal> |
@ -0,0 +1,159 @@ |
||||
import { Component, OnInit } from '@angular/core'; |
||||
import {FormBuilder, FormGroup, Validators} from '@angular/forms'; |
||||
import {NzMessageService, NzModalService} from 'ng-zorro-antd'; |
||||
import {GasClassGroupService} from '../../../services/gas-class-group.service'; |
||||
|
||||
@Component({ |
||||
selector: 'app-gas-class-group-list', |
||||
templateUrl: './gas-class-group-list.component.html', |
||||
styleUrls: ['./gas-class-group-list.component.scss'] |
||||
}) |
||||
export class GasClassGroupListComponent implements OnInit { |
||||
|
||||
dataObject: any = {}; |
||||
tableLoading = true; |
||||
searchForm: FormGroup; |
||||
pageNum: number; |
||||
whereObject: any = {}; |
||||
|
||||
classGroupModal = false; |
||||
classGroupForm: FormGroup; |
||||
|
||||
constructor(private modal: NzModalService, |
||||
private message: NzMessageService, |
||||
private gasClassGroupService: GasClassGroupService, |
||||
private form: FormBuilder) { } |
||||
|
||||
ngOnInit(): void { |
||||
this.searchForm = this.form.group({ |
||||
name: [null], |
||||
principalName: [null], |
||||
principalPhone: [null], |
||||
}); |
||||
|
||||
this.classGroupForm = this.form.group({ |
||||
id: [null], |
||||
name: [null, [Validators.required]], |
||||
principalName: [null, [Validators.required]], |
||||
principalPhone: [null, [Validators.required]], |
||||
}); |
||||
this.requestData(1); |
||||
} |
||||
|
||||
/** |
||||
* 请求数据 |
||||
*/ |
||||
requestData(pageNum) { |
||||
this.tableLoading = true; |
||||
this.whereObject['pageNum'] = pageNum; |
||||
this.whereObject['pageSize'] = 10; |
||||
this.gasClassGroupService.getClassGroupList(this.whereObject, data => { |
||||
if (data['return_code'] === '000000') { |
||||
this.dataObject = data['return_data']; |
||||
} else { |
||||
this.modal.error(data['return_msg']); |
||||
} |
||||
this.tableLoading = false; |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 搜索 |
||||
* @param whereObject 条件 |
||||
*/ |
||||
search(whereObject: object) { |
||||
this.whereObject = whereObject; |
||||
this.requestData(1); |
||||
} |
||||
|
||||
/** |
||||
* 重置 |
||||
*/ |
||||
resetForm(): void { |
||||
this.searchForm.reset(); |
||||
} |
||||
|
||||
/** |
||||
* 弹出删除对话框 |
||||
*/ |
||||
showDeleteConfirm(groupId: number): void { |
||||
this.modal.confirm({ |
||||
nzTitle: '警告', |
||||
nzContent: '是否删除班组', |
||||
nzOkText: '是', |
||||
nzCancelText: '否', |
||||
nzOkType: 'danger', |
||||
nzOnOk: () => this.deleteData(groupId) |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 删除数据 |
||||
* |
||||
*/ |
||||
deleteData(groupId: number) { |
||||
this.gasClassGroupService.delClassGroup(groupId, data => { |
||||
if (data['return_code'] === '000000') { |
||||
this.requestData(this.whereObject['pageNum']); |
||||
} else { |
||||
this.modal.error({ |
||||
nzTitle: '提示', |
||||
nzContent: data['return_msg'] |
||||
}); |
||||
} |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 打开编辑班组模态框 |
||||
*/ |
||||
showEditClassGroup(data: object) { |
||||
if (data != null) { |
||||
this.classGroupForm.patchValue(data); |
||||
} |
||||
this.classGroupModal = true; |
||||
} |
||||
|
||||
/** |
||||
* 关闭编辑班组模态框 |
||||
*/ |
||||
closeEditClassGroup() { |
||||
this.classGroupForm.reset(); |
||||
this.classGroupModal = false; |
||||
} |
||||
|
||||
/** |
||||
* 提交编辑班组 |
||||
*/ |
||||
submitEditClassGroup(){ |
||||
for (const i in this.classGroupForm.controls) { |
||||
this.classGroupForm.controls[i].markAsDirty(); |
||||
this.classGroupForm.controls[i].updateValueAndValidity(); |
||||
} |
||||
if (this.classGroupForm.status == null || this.classGroupForm.status !== 'VALID') { |
||||
this.modal.warning({ |
||||
nzTitle: '提示', |
||||
nzContent: '请填写所有必填项', |
||||
}); |
||||
return; |
||||
} |
||||
|
||||
// 提交数据
|
||||
this.gasClassGroupService.editClassGroup(this.classGroupForm.value, data => { |
||||
if (data['return_code'] === '000000') { |
||||
this.modal.success({ |
||||
nzTitle: '提示', |
||||
nzContent: '保存成功', |
||||
}); |
||||
this.closeEditClassGroup(); |
||||
this.requestData(this.whereObject['pageNum']); |
||||
} else { |
||||
this.modal.warning({ |
||||
nzTitle: '提示', |
||||
nzContent: data['return_msg'], |
||||
}); |
||||
} |
||||
}); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,16 @@ |
||||
import { NgModule } from '@angular/core'; |
||||
import { Routes, RouterModule } from '@angular/router'; |
||||
import {GasClassGroupListComponent} from './gas-class-group-list/gas-class-group-list.component'; |
||||
import {GasClassGroupTaskComponent} from './gas-class-group-task/gas-class-group-task.component'; |
||||
|
||||
|
||||
const routes: Routes = [ |
||||
{ path: 'list', component: GasClassGroupListComponent}, |
||||
{ path: 'task-list', component: GasClassGroupTaskComponent}, |
||||
]; |
||||
|
||||
@NgModule({ |
||||
imports: [RouterModule.forChild(routes)], |
||||
exports: [RouterModule] |
||||
}) |
||||
export class GasClassGroupRoutingModule { } |
@ -0,0 +1,188 @@ |
||||
<!-- start 面包屑 --> |
||||
<app-breadcrumb></app-breadcrumb> |
||||
<!-- end 面包屑 --> |
||||
<!--条件搜索--> |
||||
|
||||
<!--<div class="inner-content"> |
||||
<form nz-form [formGroup]="searchForm" (ngSubmit)="search(searchForm.value)"> |
||||
<div nz-row> |
||||
<div nz-col nzSpan="8"> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="8">班组名称</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<input nz-input formControlName="name" /> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
</div> |
||||
</div> |
||||
|
||||
<div nz-row> |
||||
<div nz-col nzSpan="24" class="search-button"> |
||||
<button nz-button nzType="primary"><i nz-icon nzType="search" nzTheme="outline"></i>搜索</button> |
||||
<button nz-button nzType="default" (click)="resetForm()"><i nz-icon nzType="reload" nzTheme="outline"></i>重置</button> |
||||
</div> |
||||
</div> |
||||
</form> |
||||
</div>--> |
||||
|
||||
<div class="inner-content"> |
||||
<nz-row [nzGutter]="16"> |
||||
<nz-col [nzSpan]="4"> |
||||
<nz-statistic [nzValue]="currentClassGroupCountData['classNum'] == null ? '无' : currentClassGroupCountData['classNum'] + ' 班'" [nzTitle]="'当前班次'"></nz-statistic> |
||||
</nz-col> |
||||
<nz-col [nzSpan]="4"> |
||||
<nz-statistic [nzValue]="currentClassGroupCountData['refuelPrice']" [nzTitle]="'加油总金额'" [nzSuffix]="'元'"></nz-statistic> |
||||
</nz-col> |
||||
<nz-col [nzSpan]="4"> |
||||
<nz-statistic [nzValue]="currentClassGroupCountData['refuelNum']" [nzTitle]="'加油总笔数'" [nzSuffix]="'笔'"></nz-statistic> |
||||
</nz-col> |
||||
<nz-col [nzSpan]="4"> |
||||
<nz-statistic [nzValue]="currentClassGroupCountData['refuelLiters']" [nzTitle]="'加油总升数'" [nzSuffix]="'升'"></nz-statistic> |
||||
</nz-col> |
||||
<nz-col [nzSpan]="4"> |
||||
<nz-statistic [nzValue]="currentClassGroupCountData['refundPrice']" [nzTitle]="'退款总金额'" [nzSuffix]="'元'"></nz-statistic> |
||||
</nz-col> |
||||
<nz-col [nzSpan]="4"> |
||||
<nz-statistic [nzValue]="currentClassGroupCountData['refundNum']" [nzTitle]="'退款总笔数'" [nzSuffix]="'笔'"></nz-statistic> |
||||
</nz-col> |
||||
</nz-row> |
||||
|
||||
<div class="gas-count-btn"> |
||||
<button nz-button nzType="primary" *ngIf="currentClassGroupCountData.status == 0" (click)="showStartClassGroupModal()"><i nz-icon nzType="sync" nzTheme="outline"></i>开启班次</button> |
||||
<button nz-button nzType="primary" *ngIf="currentClassGroupCountData.status == 1" (click)="getCurrentClassGroupCountData()"><i nz-icon nzType="sync" nzTheme="outline"></i>刷新数据</button> |
||||
<button nz-button nzType="primary" *ngIf="currentClassGroupCountData.status == 1" (click)="showSwapClassGroupModal()"><i nz-icon nzType="swap" nzTheme="outline"></i>交接班组</button> |
||||
<button nz-button nzType="primary" *ngIf="currentClassGroupCountData.status == 1" (click)="showEndClassGroupConfirm()"><i nz-icon nzType="poweroff" nzTheme="outline"></i>结束班次</button> |
||||
</div> |
||||
<nz-divider></nz-divider> |
||||
|
||||
|
||||
<span>历史班次,共计 {{dataObject.total?dataObject.total:0}} 条数据</span> |
||||
<div class="operating-button"> |
||||
<!-- <button nz-button nzType="primary" class="right-btn" (click)="showEditClassGroup(null)"><i nz-icon nzType="plus" nzTheme="outline"></i>添加班组</button>--> |
||||
</div> |
||||
|
||||
<!--数组表格 --> |
||||
<nz-table #basicTable |
||||
[nzData]="dataObject.list" |
||||
[nzTotal]="dataObject.total" |
||||
[nzFrontPagination]="false" |
||||
[nzLoading]="tableLoading" |
||||
[nzPageIndex]="whereObject.pageNum" |
||||
(nzPageIndexChange)="requestData($event)" |
||||
[nzScroll]="{ x: '1150px'}"> |
||||
<thead> |
||||
<tr> |
||||
<th nzWidth="80px">班次</th> |
||||
<th nzWidth="100px">班组名称</th> |
||||
<th nzWidth="100px">开始时间</th> |
||||
<th nzWidth="100px">结束时间</th> |
||||
<th nzWidth="100px">状态</th> |
||||
<th nzWidth="100px" nzRight="0px">操作</th> |
||||
</tr> |
||||
</thead> |
||||
<tbody> |
||||
<tr *ngFor="let data of basicTable.data;let i = index"> |
||||
<td>{{data.classNum + ' 班'}}</td> |
||||
<td>{{data.gasClassGroupName}}</td> |
||||
<td>{{data.startTime | date : 'yyyy-MM-dd HH:mm:ss'}}</td> |
||||
<td> |
||||
<span *ngIf="data.endTime != null">{{data.endTime | date : 'yyyy-MM-dd HH:mm:ss'}}</span> |
||||
<span *ngIf="data.endTime == null">未结束</span> |
||||
</td> |
||||
<td>{{data.status | gasClassGroupTaskStatus}}</td> |
||||
<td nzRight="0px" class="table-td-operation"> |
||||
<a nz-dropdown [nzDropdownMenu]="menu"> 操作列表 <i nz-icon nzType="down"></i> </a> |
||||
<nz-dropdown-menu #menu="nzDropdownMenu"> |
||||
<ul nz-menu nzSelectable> |
||||
<li nz-menu-item nzDisabled *ngIf="data.status == 1">暂无操作</li> |
||||
<li nz-menu-item *ngIf="data.status == 2"><a (click)="showClassGroupTaskDataModal(data)">查看汇总</a></li> |
||||
</ul> |
||||
</nz-dropdown-menu> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</nz-table> |
||||
</div> |
||||
|
||||
<nz-modal [(nzVisible)]="classGroupCountDataModal" nzTitle="班次汇总" (nzOnCancel)="closeClassGroupTaskDataModal()" nzWidth="350px" [nzFooter]="null"> |
||||
<nz-descriptions [nzColumn]="{ xxl: 1, xl: 1, lg: 1, md: 1, sm: 1, xs: 1 }"> |
||||
<nz-descriptions-item nzTitle="开始时间">{{classGroupCountData['startTime'] | date: 'yyyy-MM-dd HH:mm:ss'}}</nz-descriptions-item> |
||||
<nz-descriptions-item nzTitle="结束时间">{{classGroupCountData['endTime'] | date: 'yyyy-MM-dd HH:mm:ss'}}</nz-descriptions-item> |
||||
<nz-descriptions-item nzTitle="加油金额汇总">{{classGroupCountData['refuelPrice']}} 元</nz-descriptions-item> |
||||
<nz-descriptions-item nzTitle="加油笔数汇总">{{classGroupCountData['refuelNum']}} 笔</nz-descriptions-item> |
||||
<nz-descriptions-item nzTitle="加油升数汇总">{{classGroupCountData['refuelLiters']}} 升</nz-descriptions-item> |
||||
<nz-descriptions-item nzTitle="退款金额汇总">{{classGroupCountData['refundPrice']}} 元</nz-descriptions-item> |
||||
<nz-descriptions-item nzTitle="退款笔数汇总">{{classGroupCountData['refundNum']}} 笔</nz-descriptions-item> |
||||
<nz-descriptions-item nzTitle="退款升数汇总">{{classGroupCountData['refundLiters']}} 升</nz-descriptions-item> |
||||
</nz-descriptions> |
||||
|
||||
<nz-table #oilCountTable [nzData]="classGroupCountData['groupTaskOilCountList']" [nzShowPagination]="false"> |
||||
<thead> |
||||
<tr> |
||||
<th>油号</th> |
||||
<th>金额</th> |
||||
<th>升数</th> |
||||
<th>笔数</th> |
||||
</tr> |
||||
</thead> |
||||
<tbody> |
||||
<tr *ngFor="let item of oilCountTable.data"> |
||||
<td>{{ item.oilNo }}#</td> |
||||
<td>{{ item.refuelPrice }}元</td> |
||||
<td>{{ item.refuelLiters }}升</td> |
||||
<td>{{ item.refuelNum }}笔</td> |
||||
</tr> |
||||
</tbody> |
||||
</nz-table> |
||||
<div style="width: 100%;text-align: center;margin-top: 10px;"> |
||||
<button nz-button nzType="primary" (click)="showPrintModal(classGroupCountData)">打印小票</button> |
||||
</div> |
||||
</nz-modal> |
||||
|
||||
<nz-modal [(nzVisible)]="printModal" nzTitle="选择打印方式" nzWidth="350" (nzOnCancel)="printModal = false" [nzFooter]="null"> |
||||
<form nz-form> |
||||
<nz-form-item> |
||||
<nz-form-control> |
||||
<button nz-button nzType="primary" nzBlock (click)="showPrintDiv()">热敏打印机</button> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
|
||||
<nz-form-item> |
||||
<nz-form-control> |
||||
<button nz-button nzType="primary" nzBlock (click)="cloudPrint()">云打印机</button> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
</form> |
||||
</nz-modal> |
||||
|
||||
<nz-modal [(nzVisible)]="startClassGroupModal" nzTitle="开启班次" (nzOnCancel)="closeStartClassGroupModal()" nzWidth="500px" [nzFooter]="null"> |
||||
<form nz-form [formGroup]="startClassGroupModalForm"> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="6" nzRequired>班组</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<nz-select ngModel="lucy" [nzPlaceHolder]="'请选择班组'" formControlName="gasClassGroupId"> |
||||
<nz-option *ngFor="let item of classGroupArray" nzValue="{{item.id}}" nzLabel="{{item.name}}"></nz-option> |
||||
</nz-select> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
<div style="text-align: center;"> |
||||
<button nz-button nzType="primary" style="width: 150px;" (click)="submitStartClassGroup()">开启</button> |
||||
</div> |
||||
</form> |
||||
</nz-modal> |
||||
|
||||
<nz-modal [(nzVisible)]="swapClassGroupModal" nzTitle="交换班次" (nzOnCancel)="closeSwapClassGroupModal()" nzWidth="500px" [nzFooter]="null"> |
||||
<form nz-form [formGroup]="swapClassGroupModalForm"> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="6" nzRequired>班组</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<nz-select ngModel="lucy" [nzPlaceHolder]="'请选择班组'" formControlName="gasClassGroupId"> |
||||
<nz-option *ngFor="let item of classGroupArray" nzValue="{{item.id}}" nzLabel="{{item.name}}"></nz-option> |
||||
</nz-select> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
<div style="text-align: center;"> |
||||
<button nz-button nzType="primary" style="width: 150px;" (click)="submitSwapClassGroupConfirm()">交换</button> |
||||
</div> |
||||
</form> |
||||
</nz-modal> |
@ -0,0 +1,8 @@ |
||||
.gas-count-btn { |
||||
text-align: center; |
||||
margin-top: 15px; |
||||
} |
||||
.gas-count-btn button { |
||||
margin-bottom: 15px; |
||||
margin-left: 10px; |
||||
} |
@ -0,0 +1,388 @@ |
||||
import { Component, OnInit } from '@angular/core'; |
||||
import {FormBuilder, FormGroup, Validators} from '@angular/forms'; |
||||
import {NzMessageService, NzModalService} from 'ng-zorro-antd'; |
||||
import {GasClassGroupService} from '../../../services/gas-class-group.service'; |
||||
import {GasClassGroupTaskService} from '../../../services/gas-class-group-task.service'; |
||||
import {LocalStorageService} from '../../../services/local-storage.service'; |
||||
import {ADMIN_INFO_OBJECT} from '../../../services/local-storage.namespace'; |
||||
|
||||
@Component({ |
||||
selector: 'app-gas-class-group-task', |
||||
templateUrl: './gas-class-group-task.component.html', |
||||
styleUrls: ['./gas-class-group-task.component.scss'] |
||||
}) |
||||
export class GasClassGroupTaskComponent implements OnInit { |
||||
userInfoObject: object; |
||||
|
||||
dataObject: any = {}; |
||||
tableLoading = true; |
||||
searchForm: FormGroup; |
||||
pageNum: number; |
||||
whereObject: any = {}; |
||||
|
||||
classGroupArray = []; |
||||
|
||||
startClassGroupModal = false; |
||||
startClassGroupModalForm: FormGroup; |
||||
|
||||
swapClassGroupModal = false; |
||||
swapClassGroupModalForm: FormGroup; |
||||
|
||||
currentClassGroupCountData = { |
||||
classNum: '无', |
||||
refuelPrice: '0', |
||||
refuelNum: '0', |
||||
refuelLiters: '0', |
||||
refundPrice: '0', |
||||
refundNum: '0', |
||||
status: null, |
||||
}; |
||||
|
||||
classGroupCountDataModal = false; |
||||
classGroupCountData = {}; |
||||
|
||||
printModal = false; |
||||
printData = {}; |
||||
printTaskId: number; |
||||
|
||||
constructor(private modal: NzModalService, |
||||
private localStorageService: LocalStorageService, // 数据缓存
|
||||
private message: NzMessageService, |
||||
private gasClassGroupService: GasClassGroupService, |
||||
private gasClassGroupTaskService: GasClassGroupTaskService, |
||||
private form: FormBuilder) { |
||||
this.userInfoObject = this.localStorageService.get(ADMIN_INFO_OBJECT); |
||||
} |
||||
|
||||
ngOnInit(): void { |
||||
|
||||
this.searchForm = this.form.group({ |
||||
name: [null], |
||||
principalName: [null], |
||||
principalPhone: [null], |
||||
}); |
||||
|
||||
this.startClassGroupModalForm = this.form.group({ |
||||
gasId: [null], |
||||
gasClassGroupId: [null, [Validators.required]], |
||||
}); |
||||
|
||||
this.swapClassGroupModalForm = this.form.group({ |
||||
gasId: [null], |
||||
gasClassGroupId: [null, [Validators.required]], |
||||
}); |
||||
|
||||
this.gasClassGroupService.getClassGroupList({pageNum: 1, pageSize: 9999}, data => { |
||||
if (data['return_code'] === '000000') { |
||||
this.classGroupArray = data['return_data']['list']; |
||||
} |
||||
}); |
||||
this.getCurrentClassGroupCountData(); |
||||
this.requestData(1); |
||||
} |
||||
|
||||
/** |
||||
* 请求数据 |
||||
*/ |
||||
requestData(pageNum) { |
||||
this.tableLoading = true; |
||||
this.whereObject['pageNum'] = pageNum; |
||||
this.whereObject['pageSize'] = 10; |
||||
this.gasClassGroupTaskService.getClassGroupTaskList(this.whereObject, data => { |
||||
if (data['return_code'] === '000000') { |
||||
this.dataObject = data['return_data']; |
||||
} else { |
||||
this.modal.error(data['return_msg']); |
||||
} |
||||
this.tableLoading = false; |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 搜索 |
||||
* @param whereObject 条件 |
||||
*/ |
||||
search(whereObject: object) { |
||||
this.whereObject = whereObject; |
||||
this.requestData(1); |
||||
} |
||||
|
||||
/** |
||||
* 重置 |
||||
*/ |
||||
resetForm(): void { |
||||
this.searchForm.reset(); |
||||
} |
||||
|
||||
/** |
||||
* 查询当前班组数据 |
||||
*/ |
||||
getCurrentClassGroupCountData() { |
||||
this.gasClassGroupTaskService.getCurrentClassGroupTask(this.userInfoObject['merchantStore']['id'], data => { |
||||
if (data['return_code'] === '000000') { |
||||
this.currentClassGroupCountData = data['return_data']; |
||||
} else { |
||||
this.modal.warning({ |
||||
nzTitle: '提示', |
||||
nzContent: data['return_msg'], |
||||
}); |
||||
} |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 打开 开始班组模态框 |
||||
*/ |
||||
showStartClassGroupModal() { |
||||
this.startClassGroupModal = true; |
||||
} |
||||
|
||||
/** |
||||
* 关闭 开始班组模态框 |
||||
*/ |
||||
closeStartClassGroupModal() { |
||||
this.startClassGroupModalForm.reset(); |
||||
this.startClassGroupModal = false; |
||||
} |
||||
|
||||
/** |
||||
* 提交 开始班组数据 |
||||
*/ |
||||
submitStartClassGroup(){ |
||||
for (const i in this.startClassGroupModalForm.controls) { |
||||
this.startClassGroupModalForm.controls[i].markAsDirty(); |
||||
this.startClassGroupModalForm.controls[i].updateValueAndValidity(); |
||||
} |
||||
if (this.startClassGroupModalForm.status == null || this.startClassGroupModalForm.status !== 'VALID') { |
||||
this.modal.warning({ |
||||
nzTitle: '提示', |
||||
nzContent: '请填写所有必填项', |
||||
}); |
||||
return; |
||||
} |
||||
this.startClassGroupModalForm.value.gasId = this.userInfoObject['merchantStore']['id']; |
||||
|
||||
// 提交数据
|
||||
this.gasClassGroupTaskService.startGroupTask(this.startClassGroupModalForm.value, data => { |
||||
if (data['return_code'] === '000000') { |
||||
this.modal.success({ |
||||
nzTitle: '提示', |
||||
nzContent: '操作成功', |
||||
}); |
||||
this.getCurrentClassGroupCountData(); |
||||
this.requestData(this.whereObject['pageNum']); |
||||
this.closeStartClassGroupModal(); |
||||
} else { |
||||
this.modal.warning({ |
||||
nzTitle: '提示', |
||||
nzContent: data['return_msg'], |
||||
}); |
||||
} |
||||
}); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 打开 交换班组模态框 |
||||
*/ |
||||
showSwapClassGroupModal() { |
||||
this.swapClassGroupModal = true; |
||||
} |
||||
|
||||
/** |
||||
* 关闭 交换班组模态框 |
||||
*/ |
||||
closeSwapClassGroupModal() { |
||||
this.swapClassGroupModalForm.reset(); |
||||
this.swapClassGroupModal = false; |
||||
} |
||||
|
||||
/** |
||||
* 提交 交换班组提醒框 |
||||
*/ |
||||
submitSwapClassGroupConfirm() { |
||||
this.modal.confirm({ |
||||
nzTitle: '警告', |
||||
nzContent: '确定交换班次吗?', |
||||
nzOkText: '是', |
||||
nzCancelText: '否', |
||||
nzOkType: 'danger', |
||||
nzOnOk: () => this.submitSwapClassGroup() |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 提交 交换班组数据 |
||||
*/ |
||||
submitSwapClassGroup() { |
||||
for (const i in this.swapClassGroupModalForm.controls) { |
||||
this.swapClassGroupModalForm.controls[i].markAsDirty(); |
||||
this.swapClassGroupModalForm.controls[i].updateValueAndValidity(); |
||||
} |
||||
if (this.swapClassGroupModalForm.status == null || this.swapClassGroupModalForm.status !== 'VALID') { |
||||
this.modal.warning({ |
||||
nzTitle: '提示', |
||||
nzContent: '请填写所有必填项', |
||||
}); |
||||
return; |
||||
} |
||||
this.swapClassGroupModalForm.value.gasId = this.userInfoObject['merchantStore']['id']; |
||||
|
||||
// 提交数据
|
||||
this.gasClassGroupTaskService.swapGroupTask(this.swapClassGroupModalForm.value, data => { |
||||
if (data['return_code'] === '000000') { |
||||
this.modal.success({ |
||||
nzTitle: '提示', |
||||
nzContent: '操作成功', |
||||
}); |
||||
this.getCurrentClassGroupCountData(); |
||||
this.requestData(this.whereObject['pageNum']); |
||||
this.closeSwapClassGroupModal(); |
||||
} else { |
||||
this.modal.warning({ |
||||
nzTitle: '提示', |
||||
nzContent: data['return_msg'], |
||||
}); |
||||
} |
||||
}); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 弹出结束对话框 |
||||
*/ |
||||
showEndClassGroupConfirm(): void { |
||||
this.modal.confirm({ |
||||
nzTitle: '警告', |
||||
nzContent: '确定结束本次班次吗?', |
||||
nzOkText: '是', |
||||
nzCancelText: '否', |
||||
nzOkType: 'danger', |
||||
nzOnOk: () => this.endClassGroupData() |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 提交结束班次数据 |
||||
* |
||||
*/ |
||||
endClassGroupData() { |
||||
this.gasClassGroupTaskService.endGroupTask( { gasId: this.userInfoObject['merchantStore']['id'] }, data => { |
||||
if (data['return_code'] === '000000') { |
||||
this.requestData(this.whereObject['pageNum']); |
||||
this.getCurrentClassGroupCountData(); |
||||
} else { |
||||
this.modal.error({ |
||||
nzTitle: '提示', |
||||
nzContent: data['return_msg'] |
||||
}); |
||||
} |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 展示班次数据统计 |
||||
*/ |
||||
showClassGroupTaskDataModal(data: object) { |
||||
this.classGroupCountData = JSON.parse(data['dataCount']); |
||||
this.printTaskId = data['id']; |
||||
this.classGroupCountDataModal = true; |
||||
} |
||||
|
||||
/** |
||||
* 关闭班次数据统计 |
||||
*/ |
||||
closeClassGroupTaskDataModal() { |
||||
this.classGroupCountDataModal = false; |
||||
} |
||||
|
||||
/** |
||||
* 展示打印模态框 |
||||
* @param data |
||||
*/ |
||||
showPrintModal(data: object) { |
||||
this.printData = data; |
||||
this.printModal = true; |
||||
} |
||||
|
||||
/** |
||||
* 云打印 |
||||
*/ |
||||
cloudPrint() { |
||||
this.gasClassGroupTaskService.print(this.printTaskId, dataBack => { |
||||
if (dataBack['return_code'] === '000000') { |
||||
this.modal.success({ |
||||
nzTitle: '提示', |
||||
nzContent: '操作成功', |
||||
}); |
||||
} |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 热敏打印机 |
||||
*/ |
||||
showPrintDiv() { |
||||
this.printDiv(this.printData); |
||||
} |
||||
|
||||
printDiv(data: object) { |
||||
const headstr = '<html><head><title>打印小票</title></head><body>'; |
||||
const footstr = '</body>'; |
||||
let newstr = '<div id="div_print" style="font-size: 16px;">\n' + |
||||
' <div style="float: left;margin-bottom: 50px;">\n' + |
||||
' <div style="line-height: 30px; color:#000;">\n' + |
||||
' <span style="font-size: 13px;float: left;width: 100%;margin-left: 90px;">'+data['classNum']+'班结流水</span>\n' + |
||||
' </div>\n' + |
||||
' <table style="width: 100%;">\n' + |
||||
' <tbody>\n' + |
||||
' <tr><td style="font-size: xx-small;color: black;">===========================================</td></tr>\n' + |
||||
' <tr>\n' + |
||||
' <td style="font-size: xx-small;color: black;">开始时间:<span>' + new Date(data['startTime']).toLocaleString() + '</span></td>\n' + |
||||
' </tr>\n' + |
||||
' <tr>\n' + |
||||
' <td style="font-size: xx-small;color: black;">结束时间:<span>' + new Date(data['endTime']).toLocaleString() + '</span></td>\n' + |
||||
' </tr>\n' + |
||||
' <tr><td style="font-size: xx-small;color: black;"></td></tr>' + |
||||
' <tr>\n' + |
||||
' <td style="font-size: xx-small;color: black;">加油金额汇总:<span>' + data['refuelPrice'] + '元</span></td>\n' + |
||||
' </tr>\n' + |
||||
' <tr>\n' + |
||||
' <td style="font-size: xx-small;color: black;">加油笔数汇总:<span>' + data['refuelNum'] + '笔</span></td>\n' + |
||||
' </tr>\n' + |
||||
' <tr>\n' + |
||||
' <td style="font-size: xx-small;color: black;">加油升数汇总:<span>' + data['refuelLiters'] + '升</span></td>\n' + |
||||
' </tr><br/>\n' + |
||||
' <tr><td style="font-size: xx-small;color: black;"></td></tr>' + |
||||
|
||||
' <tr>\n' + |
||||
' <td style="font-size: xx-small;color: black;">退款金额汇总:<span>' + data['refundPrice'] + '元</span></td>\n' + |
||||
' </tr>\n' + |
||||
' <tr>\n' + |
||||
' <td style="font-size: xx-small;color: black;">退款笔数汇总:<span>' + data['refundNum'] + '笔</span></td>\n' + |
||||
' </tr>\n' + |
||||
' <tr>\n' + |
||||
' <td style="font-size: xx-small;color: black;">退款升数汇总:<span>' + data['refundLiters'] + '升</span></td>\n' + |
||||
' </tr>\n' + |
||||
' <tr><td style="font-size: xx-small;color: black;"></td></tr>' + |
||||
|
||||
' <tr><td style="font-size: xx-small;color: black;">---------------------收款-------------------</td></tr>\n' + |
||||
' <tr><td style="font-size: xx-small;color: black;">油号        金额        升数        笔数</td></tr>\n'; |
||||
for (let item of data['groupTaskOilCountList']) { |
||||
newstr += '<tr><td style="font-size: xx-small;color: black;">' + item['oilNo'] +'#       '+ item['refuelPrice'] +'元       '+ item['refuelLiters'] +'升       '+ item['refuelNum'] +'笔</td></tr>\n'; |
||||
|
||||
} |
||||
|
||||
newstr += '<tr><td style="font-size: xx-small;color: black;">===========================================</td></tr>\n' + |
||||
' <tr><td style="float: left;font-size: xx-small;color: black;margin-left: 80px;">' + new Date().toLocaleString() +'</td></tr>\n' + |
||||
' </tbody>\n' + |
||||
' </table>\n' + |
||||
' </div>\n' + |
||||
'</div>'; |
||||
const newWindow = window.open('', ''); |
||||
newWindow.document.write(headstr + newstr + footstr); |
||||
newWindow.print(); |
||||
newWindow.close(); |
||||
return false; |
||||
} |
||||
} |
@ -0,0 +1,25 @@ |
||||
import { NgModule } from '@angular/core'; |
||||
import { CommonModule } from '@angular/common'; |
||||
|
||||
import { GasClassGroupRoutingModule } from './gas-class-group-routing.module'; |
||||
import { GasClassGroupListComponent } from './gas-class-group-list/gas-class-group-list.component'; |
||||
import { GasClassGroupTaskComponent } from './gas-class-group-task/gas-class-group-task.component'; |
||||
import {NgZorroAntdModule} from 'ng-zorro-antd'; |
||||
import {FormsModule, ReactiveFormsModule} from '@angular/forms'; |
||||
import {BreadcrumbModule} from '../../common/breadcrumb/breadcrumb.module'; |
||||
import {AppCommonModule} from '../../app-common.module'; |
||||
|
||||
|
||||
@NgModule({ |
||||
declarations: [GasClassGroupListComponent, GasClassGroupTaskComponent], |
||||
imports: [ |
||||
CommonModule, |
||||
GasClassGroupRoutingModule, |
||||
NgZorroAntdModule, |
||||
ReactiveFormsModule, |
||||
FormsModule, |
||||
BreadcrumbModule, |
||||
AppCommonModule, |
||||
] |
||||
}) |
||||
export class GasClassGroupModule { } |
@ -0,0 +1,138 @@ |
||||
<!-- start 面包屑 --> |
||||
<app-breadcrumb></app-breadcrumb> |
||||
<!-- end 面包屑 --> |
||||
<!--条件搜索--> |
||||
|
||||
<nz-spin [nzSpinning]="loadingObject.spinning" nzTip="{{loadingObject.msg}}"> |
||||
<div class="inner-content"> |
||||
<form nz-form [formGroup]="searchForm" (ngSubmit)="search(searchForm.value)"> |
||||
<div nz-row> |
||||
<!-- <div nz-col nzSpan="8" *ngIf="roleType == 5 && adminFlag == 1"> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="8">所属部门</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<nz-select nzAllowClear formControlName="orgId"> |
||||
<nz-option *ngFor="let item of orgArray" nzLabel="{{item.name}}" nzValue="{{item.id}}"></nz-option> |
||||
</nz-select> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
</div>--> |
||||
|
||||
<div nz-col nzSpan="8"> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="8">油站名称</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<input nz-input formControlName="gasName" /> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
</div> |
||||
|
||||
<div nz-col nzSpan="8"> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="8">预存类型</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<nz-select formControlName="prestoreType"> |
||||
<nz-option nzValue="0" nzLabel="非预存"></nz-option> |
||||
<nz-option nzValue="1" nzLabel="预存"></nz-option> |
||||
</nz-select> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
</div> |
||||
|
||||
<div nz-col nzSpan="8"> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="8">预警状态</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<nz-select formControlName="amountsEarlyWarningStatus"> |
||||
<nz-option nzValue="0" nzLabel="正常"></nz-option> |
||||
<nz-option nzValue="1" nzLabel="余额预警"></nz-option> |
||||
</nz-select> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
</div> |
||||
|
||||
</div> |
||||
|
||||
<div nz-row> |
||||
<div nz-col nzSpan="24" class="search-button"> |
||||
<button nz-button nzType="primary"><i nz-icon nzType="search" nzTheme="outline"></i>搜索</button> |
||||
<button nz-button nzType="default" (click)="resetForm()"><i nz-icon nzType="reload" nzTheme="outline"></i>重置</button> |
||||
</div> |
||||
</div> |
||||
</form> |
||||
</div> |
||||
|
||||
<div class="inner-content"> |
||||
<span>共计 {{dataObject.total?dataObject.total:0}} 条数据</span> |
||||
<div class="operating-button"> |
||||
</div> |
||||
|
||||
<!--数组表格 --> |
||||
<nz-table #basicTable |
||||
[nzData]="dataObject.list" |
||||
[nzTotal]="dataObject.total" |
||||
[nzFrontPagination]="false" |
||||
[nzLoading]="tableLoading" |
||||
[nzPageIndex]="whereObject.pageNum" |
||||
(nzPageIndexChange)="requestData($event)" |
||||
[nzScroll]="{ x: '1100px'}"> |
||||
<thead> |
||||
<tr> |
||||
<th nzWidth="60px">序号</th> |
||||
<th nzWidth="150px">所在公司</th> |
||||
<th nzWidth="140px">所在商户</th> |
||||
<th nzWidth="200px">油站名称</th> |
||||
<th nzWidth="90px">预存类型</th> |
||||
<th nzWidth="90px">账户余额</th> |
||||
<th nzWidth="90px">预警余额</th> |
||||
<th nzWidth="90px">预警状态</th> |
||||
<th nzWidth="100px">油站编号</th> |
||||
<th nzWidth="150px">油站地址</th> |
||||
<th nzWidth="110px">创建时间</th> |
||||
<th nzWidth="110px" nzRight="0px">操作</th> |
||||
</tr> |
||||
</thead> |
||||
<tbody> |
||||
<tr *ngFor="let data of basicTable.data;let i = index" style="{{data.amountsEarlyWarningStatus?'color: #aa1111;':''}}"> |
||||
<td>{{i+1}}</td> |
||||
<td>{{data.companyName}}</td> |
||||
<td>{{data.storeMerName}}</td> |
||||
<td>{{data.storeName}}</td> |
||||
<td>{{data.storePrestoreType? '预存' : '非预存'}}</td> |
||||
<td>{{data.amounts?'¥'+data.amounts:'无'}}</td> |
||||
<td>{{data.amountsEarlyWarning?'¥'+data.amountsEarlyWarning:'无'}}</td> |
||||
<td> |
||||
<span *ngIf="data.amountsEarlyWarningStatus == null">无</span> |
||||
<span *ngIf="data.amountsEarlyWarningStatus == 0">正常</span> |
||||
<span *ngIf="data.amountsEarlyWarningStatus == 1">余额预警</span> |
||||
</td> |
||||
<td>{{data.storeKey}}</td> |
||||
<td>{{data.storeAddress}}</td> |
||||
<td>{{data.storeCreateTime | date : 'yyyy-MM-dd HH:mm:ss'}}</td> |
||||
<td nzRight="0px" class="table-td-operation"> |
||||
<a nz-dropdown [nzDropdownMenu]="menu"> 操作列表 <i nz-icon nzType="down"></i> </a> |
||||
<nz-dropdown-menu #menu="nzDropdownMenu"> |
||||
<ul nz-menu nzSelectable> |
||||
<li nz-menu-item (click)="showEarlyWarningModal(data)">余额预警</li> |
||||
</ul> |
||||
</nz-dropdown-menu> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</nz-table> |
||||
</div> |
||||
</nz-spin> |
||||
|
||||
<nz-modal [(nzVisible)]="amountsEarlyWarningModal" nzTitle="设置账户余额预警" (nzOnCancel)="closeEarlyWarningModal()" [nzFooter]="null"> |
||||
<form nz-form [formGroup]="amountsEarlyWarningFrom"> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="6">预警余额</nz-form-label> |
||||
<nz-form-control [nzSpan]="14" nzExtra="预警余额设置为0,代表不需要预警"> |
||||
<nz-input-number nz-input formControlName="earlyWarning" [nzMin]="0" [nzMax]="99999999" [nzStep]="1" [nzPrecision]="2"></nz-input-number> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
</form> |
||||
<div style="text-align: center;"> |
||||
<button nz-button nzType="primary" style="width: 150px;" (click)="submitEarlyWarning()">确定</button> |
||||
</div> |
||||
</nz-modal> |
@ -0,0 +1,3 @@ |
||||
nz-input-number { |
||||
width: 100%; |
||||
} |
@ -0,0 +1,25 @@ |
||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; |
||||
|
||||
import { GasStationListComponent } from './gas-station-list.component'; |
||||
|
||||
describe('GasStationListComponent', () => { |
||||
let component: GasStationListComponent; |
||||
let fixture: ComponentFixture<GasStationListComponent>; |
||||
|
||||
beforeEach(async(() => { |
||||
TestBed.configureTestingModule({ |
||||
declarations: [ GasStationListComponent ] |
||||
}) |
||||
.compileComponents(); |
||||
})); |
||||
|
||||
beforeEach(() => { |
||||
fixture = TestBed.createComponent(GasStationListComponent); |
||||
component = fixture.componentInstance; |
||||
fixture.detectChanges(); |
||||
}); |
||||
|
||||
it('should create', () => { |
||||
expect(component).toBeTruthy(); |
||||
}); |
||||
}); |
@ -0,0 +1,134 @@ |
||||
import { Component, OnInit } from '@angular/core'; |
||||
import {environment} from '../../../../environments/environment'; |
||||
import {FormBuilder, FormGroup} from '@angular/forms'; |
||||
import {NzMessageService, NzModalService} from 'ng-zorro-antd'; |
||||
import {LocalStorageService} from '../../../services/local-storage.service'; |
||||
import {CompanyAccountService} from '../../../services/company-account.service'; |
||||
import {Router} from '@angular/router'; |
||||
import {ADMIN_INFO_OBJECT} from '../../../services/local-storage.namespace'; |
||||
import {IndexService} from '../../../services/index.service'; |
||||
import {Validators} from '@angular/forms'; |
||||
import {MerchantStoreService} from "../../../services/merchant-store.service"; |
||||
|
||||
@Component({ |
||||
selector: 'app-gas-station-list', |
||||
templateUrl: './gas-station-list.component.html', |
||||
styleUrls: ['./gas-station-list.component.scss'] |
||||
}) |
||||
export class GasStationListComponent implements OnInit { |
||||
FILE_URL = environment.imageUrl; |
||||
roleType; |
||||
adminFlag; |
||||
loadingObject = { |
||||
spinning: false, |
||||
msg: '加载中' |
||||
}; |
||||
|
||||
dataObject: any = {}; |
||||
tableLoading = true; |
||||
searchForm: FormGroup; |
||||
pageNum: number; |
||||
whereObject: any = {}; |
||||
|
||||
amountsEarlyWarningFrom: FormGroup; |
||||
amountsEarlyWarningModal = false; |
||||
|
||||
constructor(private modal: NzModalService, |
||||
private message: NzMessageService, |
||||
private store: LocalStorageService, |
||||
private indexService: IndexService, |
||||
private router: Router, |
||||
private form: FormBuilder) { |
||||
this.roleType = Number(this.store.get(ADMIN_INFO_OBJECT)['secRole'].roleType); |
||||
this.adminFlag = Number(this.store.get(ADMIN_INFO_OBJECT)['secUser'].adminFlag); |
||||
} |
||||
|
||||
ngOnInit(): void { |
||||
this.searchForm = this.form.group({ |
||||
companyId: [null], |
||||
merId: [null], |
||||
gasName: [null], |
||||
prestoreType: [null], |
||||
amountsEarlyWarningStatus: [null], |
||||
}); |
||||
|
||||
this.amountsEarlyWarningFrom = this.form.group({ |
||||
storeId: [null, [Validators.required]], |
||||
earlyWarning: [null, [Validators.required]], |
||||
}); |
||||
|
||||
this.requestData(1); |
||||
} |
||||
|
||||
/** |
||||
* 请求数据 |
||||
*/ |
||||
requestData(pageNum) { |
||||
this.tableLoading = true; |
||||
this.whereObject['pageNum'] = pageNum; |
||||
this.whereObject['pageSize'] = 10; |
||||
this.indexService.getGasSelfBuiltStationList(this.whereObject, data => { |
||||
if (data['return_code'] === '000000') { |
||||
this.dataObject = data['return_data']; |
||||
} else { |
||||
this.modal.error(data['return_msg']); |
||||
} |
||||
this.tableLoading = false; |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 搜索 |
||||
* @param whereObject 条件 |
||||
*/ |
||||
search(whereObject: object) { |
||||
this.whereObject = whereObject; |
||||
this.requestData(1); |
||||
} |
||||
|
||||
/** |
||||
* 重置 |
||||
*/ |
||||
resetForm(): void { |
||||
this.searchForm.reset(); |
||||
} |
||||
|
||||
showEarlyWarningModal(gasObject: object) { |
||||
this.amountsEarlyWarningModal = true; |
||||
this.amountsEarlyWarningFrom.patchValue({ storeId: gasObject['storeId'], earlyWarning: gasObject['amountsEarlyWarning']}); |
||||
} |
||||
|
||||
submitEarlyWarning() { |
||||
for (const i in this.amountsEarlyWarningFrom.controls) { |
||||
this.amountsEarlyWarningFrom.controls[i].markAsDirty(); |
||||
this.amountsEarlyWarningFrom.controls[i].updateValueAndValidity(); |
||||
} |
||||
if (this.amountsEarlyWarningFrom.status == null || this.amountsEarlyWarningFrom.status !== 'VALID') { |
||||
this.modal.warning({ |
||||
nzTitle: '提示', |
||||
nzContent: '请填写所有必填项', |
||||
}); |
||||
return; |
||||
} |
||||
|
||||
this.indexService.setAmountsEarlyWarning(this.amountsEarlyWarningFrom.value, data => { |
||||
if (data['return_code'] === '000000') { |
||||
this.modal.success({ |
||||
nzTitle: '提示', |
||||
nzContent: '设置成功', |
||||
}); |
||||
this.requestData(this.whereObject['pageNum']); |
||||
this.closeEarlyWarningModal(); |
||||
} else { |
||||
this.modal.error({ |
||||
nzTitle: '提示', |
||||
nzContent: data['return_msg'], |
||||
}); |
||||
} |
||||
}); |
||||
} |
||||
|
||||
closeEarlyWarningModal() { |
||||
this.amountsEarlyWarningModal = false; |
||||
} |
||||
} |
@ -0,0 +1,17 @@ |
||||
import { Pipe, PipeTransform } from '@angular/core'; |
||||
|
||||
@Pipe({ |
||||
name: 'gasClassGroupTaskStatus' |
||||
}) |
||||
export class GasClassGroupTaskStatusPipe implements PipeTransform { |
||||
|
||||
transform(value: number): string { |
||||
switch (value) { |
||||
case 1: |
||||
return '进行中'; |
||||
case 2: |
||||
return '已结束'; |
||||
} |
||||
} |
||||
|
||||
} |
@ -0,0 +1,100 @@ |
||||
import { Injectable } from '@angular/core'; |
||||
import {HttpClient} from '@angular/common/http'; |
||||
import {CommonsService} from './commons.service'; |
||||
import {environment} from '../../environments/environment'; |
||||
|
||||
@Injectable({ |
||||
providedIn: 'root' |
||||
}) |
||||
export class GasClassGroupTaskService { |
||||
|
||||
constructor( |
||||
private http: HttpClient, |
||||
private common: CommonsService |
||||
) { } |
||||
|
||||
/** |
||||
* 开启班组任务 |
||||
* |
||||
* @param param 参数对象 |
||||
* @param callBack 回调 |
||||
*/ |
||||
public startGroupTask(param: object, callBack) { |
||||
this.http.post(environment.baseUrl + 'gasClassGroupTask/startGroupTask', param).subscribe(data => { |
||||
callBack(data); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 结束班组任务 |
||||
* |
||||
* @param param 参数对象 |
||||
* @param callBack 回调 |
||||
*/ |
||||
public endGroupTask(param: object, callBack) { |
||||
this.http.post(environment.baseUrl + 'gasClassGroupTask/endGroupTask', param).subscribe(data => { |
||||
callBack(data); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 交换班组任务 |
||||
* |
||||
* @param param 参数对象 |
||||
* @param callBack 回调 |
||||
*/ |
||||
public swapGroupTask(param: object, callBack) { |
||||
this.http.post(environment.baseUrl + 'gasClassGroupTask/swapGroupTask', param).subscribe(data => { |
||||
callBack(data); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 交换班组任务 |
||||
* |
||||
* @param param 参数对象 |
||||
* @param callBack 回调 |
||||
*/ |
||||
public getClassGroupTaskById(id: number, callBack) { |
||||
this.http.get(environment.baseUrl + 'gasClassGroupTask/getClassGroupTaskById?gasClassGroupTaskId=' + id).subscribe(data => { |
||||
callBack(data); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 交换班组任务 |
||||
* |
||||
* @param param 参数对象 |
||||
* @param callBack 回调 |
||||
*/ |
||||
public getCurrentClassGroupTask(gasId: number, callBack) { |
||||
this.http.get(environment.baseUrl + 'gasClassGroupTask/getCurrentClassGroupTask?gasId=' + gasId).subscribe(data => { |
||||
callBack(data); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 交换班组任务 |
||||
* |
||||
* @param param 参数对象 |
||||
* @param callBack 回调 |
||||
*/ |
||||
public getClassGroupTaskList(param: object, callBack) { |
||||
this.http.get(environment.baseUrl + 'gasClassGroupTask/getClassGroupTaskList?' + this.common.getWhereCondition(param)).subscribe(data => { |
||||
callBack(data); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 打印小票 |
||||
* |
||||
* @param param 参数对象 |
||||
* @param callBack 回调 |
||||
*/ |
||||
public print(gasClassGroupTaskId: number, callBack) { |
||||
this.http.get(environment.baseUrl + 'gasClassGroupTask/print?gasClassGroupTaskId=' + gasClassGroupTaskId).subscribe(data => { |
||||
callBack(data); |
||||
}); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,63 @@ |
||||
import { Injectable } from '@angular/core'; |
||||
import {HttpClient} from '@angular/common/http'; |
||||
import {CommonsService} from './commons.service'; |
||||
import {environment} from '../../environments/environment'; |
||||
|
||||
@Injectable({ |
||||
providedIn: 'root' |
||||
}) |
||||
export class GasClassGroupService { |
||||
|
||||
constructor( |
||||
private http: HttpClient, |
||||
private common: CommonsService |
||||
) { } |
||||
|
||||
/** |
||||
* 编辑班组 |
||||
* |
||||
* @param param 参数对象 |
||||
* @param callBack 回调 |
||||
*/ |
||||
public editClassGroup(param: object, callBack) { |
||||
this.http.post(environment.baseUrl + 'gasClassGroup/editClassGroup', param).subscribe(data => { |
||||
callBack(data); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 删除班组 |
||||
* |
||||
* @param param 参数对象 |
||||
* @param callBack 回调 |
||||
*/ |
||||
public delClassGroup(groupId: number, callBack) { |
||||
this.http.post(environment.baseUrl + 'gasClassGroup/delClassGroup', { id: groupId}).subscribe(data => { |
||||
callBack(data); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 根据id查询详情 |
||||
* |
||||
* @param groupId 班组id |
||||
* @param callBack 回调 |
||||
*/ |
||||
public getClassGroupById(groupId: number, callBack) { |
||||
this.http.get(environment.baseUrl + 'gasClassGroup/getClassGroupById?groupId=' + groupId).subscribe(data => { |
||||
callBack(data); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 查询班组列表 |
||||
* |
||||
* @param param 参数对象 |
||||
* @param callBack 回调 |
||||
*/ |
||||
public getClassGroupList(param: Object, callBack) { |
||||
this.http.get(environment.baseUrl + 'gasClassGroup/getClassGroupList?' + this.common.getWhereCondition(param)).subscribe(data => { |
||||
callBack(data); |
||||
}); |
||||
} |
||||
} |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue