Files
bbq/src/app/routes/supply-management/components/bulk/bulk.component.ts
Taric Xin c3280283d6 edit
2022-04-25 11:32:16 +08:00

539 lines
15 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Component, OnInit, ViewChild } from '@angular/core';
import { Router } from '@angular/router';
import { STColumn, STComponent, STRequestOptions } from '@delon/abc/st';
import { SFComponent, SFDateWidgetSchema, SFSchema, SFSchemaEnum, SFSelectWidgetSchema, SFUISchema } from '@delon/form';
import { _HttpClient } from '@delon/theme';
import { SearchDrawerService, ShipperBaseService } from '@shared';
import { NzModalService } from 'ng-zorro-antd/modal';
import { of } from 'rxjs';
import { map } from 'rxjs/operators';
import { BasicTableComponent } from 'src/app/routes/commom';
import { SupplyManagementService } from '../../services/supply-management.service';
import { SupplyManagementQrcodePageComponent } from '../qrcode-page/qrcode-page.component';
import { SupplyManagementUpdatePriceComponent } from '../update-price/update-price.component';
@Component({
selector: 'app-supply-management-bulk',
templateUrl: './bulk.component.html',
styleUrls: ['../../../commom/less/commom-table.less']
})
export class SupplyManagementBulkComponent extends BasicTableComponent implements OnInit {
resourceStatus: any;
ui: SFUISchema = {};
ui2: SFUISchema = {};
auditMany = false;
isVisible = false;
loading: boolean = true;
auditID: any;
columns: STColumn[] = [];
freightSchema: SFSchema = {};
@ViewChild('st') private readonly st!: STComponent;
@ViewChild('sfFre', { static: false }) sfFre!: SFComponent;
tabs: any = {
totalQuantity: 0,
cancelQuantity: 0,
receivedQuantity: 0,
stayQuantity: 0
};
deviationHeight = 10;
constructor(
public service: SupplyManagementService,
private modal: NzModalService,
private router: Router,
public shipperservice: ShipperBaseService,
public searchDrawerService: SearchDrawerService
) {
super(searchDrawerService);
}
ngOnInit(): void {
this.initSF();
this.initST();
this.initSFFre();
this.getGoodsSourceStatistical();
}
/**
* 查询参数
*/
get reqParams() {
const a: any = {};
if (this.resourceStatus) {
a.resourceStatus = this.resourceStatus;
}
const params: any = Object.assign({}, this.sf?.value || {});
delete params._$expand;
return {
...a,
...params,
releaseTime: {
start: this.sf?.value?.releaseTime?.[0] || '',
end: this.sf?.value?.releaseTime?.[1] || ''
},
deadlineTime: {
start: this.sf?.value?.deadlineTime?.[0] || '',
end: this.sf?.value?.deadlineTime?.[1] || ''
}
};
}
beforeReq = (requestOptions: STRequestOptions) => {
const a: any = {};
if (this.resourceStatus) {
a.resourceStatus = this.resourceStatus;
}
const params: any = Object.assign({}, this.sf?.value || {});
delete params._$expand;
if (this.sf) {
Object.assign(requestOptions.body, {
...a,
...params,
releaseTime: {
start: this.sf?.value?.releaseTime?.[0] || '',
end: this.sf?.value?.releaseTime?.[1] || ''
},
deadlineTime: {
start: this.sf?.value?.deadlineTime?.[0] || '',
end: this.sf?.value?.deadlineTime?.[1] || ''
}
});
}
this.loading = true;
return requestOptions;
};
search() {
this.st?.load();
this.getGoodsSourceStatistical();
}
afterRes = (data: any[], rawData?: any) => {
console.log(data);
this.loading = false;
return data.map(item => ({
...item,
disabled: item.auditStatus !== '1'
}));
};
/**
* 初始化查询表单
*/
initSF() {
this.schema = {
properties: {
_$expand: { type: 'boolean', ui: { hidden: true } },
resourceCode: {
type: 'string',
title: '货源编号'
},
loadingPlace: {
type: 'string',
title: '装货地'
},
dischargePlace: {
type: 'string',
title: '卸货地'
},
serviceType: {
title: '服务类型',
type: 'string',
default: '',
ui: {
widget: 'dict-select',
containsAllLabel: true,
params: { dictKey: 'service:type' },
containAllLable: true
} as SFSelectWidgetSchema
},
settlementBasis: {
title: '结算依据',
type: 'string',
ui: {
widget: 'dict-select',
containsAllLabel: true,
params: { dictKey: 'goodresource:settlement:type' },
containAllLable: true
} as SFSelectWidgetSchema
},
releaseTime: {
title: '发布时间',
type: 'string',
ui: {
widget: 'date',
mode: 'range',
format: 'yyyy-MM-dd',
allowClear: true
} as SFDateWidgetSchema
},
deadlineTime: {
title: '截止时间',
type: 'string',
ui: {
widget: 'date',
mode: 'range',
format: 'yyyy-MM-dd',
allowClear: true
} as SFDateWidgetSchema
},
enterpriseInfoId: {
type: 'string',
title: '网络货运人',
ui: {
widget: 'select',
placeholder: '请选择',
allowClear: true,
asyncData: () => this.shipperservice.getNetworkFreightForwarder()
}
},
shipperAppUserId: {
type: 'string',
title: '货主',
ui: {
widget: 'select',
serverSearch: true,
searchDebounceTime: 300,
searchLoadingText: '搜索中...',
allowClear: true,
onSearch: (q: any) => {
let str = q.replace(/^\s+|\s+$/g, '');
if (str) {
return this.service
.request(this.service.$api_enterpriceList, { enterpriseName: str })
.pipe(map((res: any) => (res as any[]).map(i => ({ label: i.enterpriseName, value: i.id } as SFSchemaEnum))))
.toPromise();
} else {
return of([]);
}
}
} as SFSelectWidgetSchema
}
},
type: 'object'
};
this.ui = { '*': { spanLabelFixed: 110, grid: { span: 8, gutter: 4 } } };
}
initSFFre() {
this.freightSchema = {
properties: {
remarks: {
title: '备注',
type: 'string',
maxLength: 50,
ui: {
placeholder: '请输入备注',
widget: 'textarea'
}
}
}
};
this.ui2 = { '*': { spanLabelFixed: 120, grid: { span: 16 } } };
}
/**
* 初始化数据列表
*/
initST() {
this.columns = [
{ title: '', type: 'checkbox', fixed: 'left', width: '50px', className: 'text-center' },
{
title: '货源编号',
width: '200px',
fixed: 'left',
className: 'text-left',
render: 'resourceCode'
},
{ title: '录单员', render: 'createUserName', width: '200px', className: 'text-left' },
{ title: '货主', index: 'shipperAppUserName', width: '220px', className: 'text-left' },
{ title: '项目名称', index: 'enterpriseProjectName', width: '220px', className: 'text-left' },
{ title: '关联订单', render: 'orderSn', width: '200px', className: 'text-left' },
{ title: '货物信息', render: 'goodsInfos', width: '280px', className: 'text-left' },
{
title: '装货地',
className: 'text-left',
index: 'loadingAddressArr',
width: '200px'
},
{
title: '卸货地',
className: 'text-left',
index: 'unloadingAddressArr',
width: '200px'
},
{
title: '用车需求',
className: 'text-left',
width: '200px',
render: 'useCarDemand'
},
{
title: '运费单价',
className: 'text-right',
width: '150px',
index: 'freightPrice',
render: 'freightPrice'
},
{
title: '结算依据',
className: 'text-left',
width: '200px',
index: 'settlementBasisLabel'
},
{
title: '货源状态',
className: 'text-left',
index: 'resourceStatusLabel',
width: '120px'
},
{
title: '截止时间',
width: '170px',
className: 'text-left',
index: 'deadlineTime'
},
{
title: '发布时间',
width: '170px',
className: 'text-left',
index: 'createTime'
},
{
title: '审核状态',
className: 'text-left',
index: 'auditStatus',
type: 'badge',
width: '170px',
badge: {
'1': { text: '待审核', color: 'warning' },
'2': { text: '审核通过', color: 'success' },
'3': { text: '不通过', color: 'default' },
'4': { text: '已取消', color: 'default' }
}
},
{
title: '操作',
fixed: 'right',
width: '110px',
className: 'text-center block-td',
buttons: [
{
text: '货源审核',
click: _record => this.audit(_record, 1),
iif: item => item.auditStatus === '1',
acl: { ability: ['SUPPLY-INDEX-bulkBatchAudit'] }
},
{
text: '二维码',
click: _record => this.assignedQrcode(_record),
iif: item => item.resourceStatus == 1 && item.serviceType === '1' && !(item.resourceType === '2' && item.serviceType === '2')
},
{
text: '修改单价',
click: _record => this.modification(_record),
iif: item => item.resourceStatus == 1,
acl: { ability: ['SUPPLY-INDEX-modificationUnitPrice'] }
},
{
text: '取消货源',
click: _record => this.delOne(_record),
iif: item => item.resourceStatus == 1,
acl: { ability: ['SUPPLY-INDEX-bulkCancelSupply'] }
},
{
text: '再下一单',
click: _record => this.nextOrder(_record),
acl: { ability: ['SUPPLY-INDEX-bulkPlaceOrder'] }
},
{ type: 'divider' }
]
}
];
}
add(): void {
// this.modal
// .createStatic(FormEditComponent, { i: { id: 0 } })
// .subscribe(() => this.st.reload());
}
get selectedRows() {
return this.st?.list.filter(item => item.checked) || [];
}
selectChange(e: number) {
console.log(e);
if (e == 2) {
this.resourceStatus = 4;
} else {
this.resourceStatus = e;
}
this.initST();
setTimeout(() => {
this.st.load(1);
}, 500);
}
/**
* 二维码
*/
assignedQrcode(item: any) {
const modalRef = this.modal.create({
nzTitle: '二维码',
nzWidth: '468px',
nzContent: SupplyManagementQrcodePageComponent,
nzComponentParams: {
i: item
},
nzFooter: null
});
}
tabChange(item: any) {
console.log(item);
}
/**
* 审核
* status 1 单个 2批量
* value 单个单条数据
*/
audit(value: any, status?: any) {
console.log(value);
console.log(status);
if (status === 2) {
if (this.selectedRows.length <= 0) {
this.service.msgSrv.error('未选择货源单!');
return;
}
let list: any[] = [];
this.selectedRows.forEach(item => {
list.push(item.id);
});
this.auditID = list;
this.auditMany = true;
} else {
this.auditID = value.id;
this.auditMany = false;
}
this.isVisible = true;
}
/**
* 审核关闭弹窗
*/
handleCancel(type: any) {
this.isVisible = false;
}
/**
* 代发货源
*/
releaseGoods() {
this.router.navigate(['/supply-management/bulk-release']);
}
/**
* 审核通过按钮
*/
handleOK(value: any) {
if (this.selectedRows.length <= 0) {
const params: any = {
id: this.auditID,
remarks: this.sfFre.value.remarks
};
if (value == 1) {
params.auditStatus = 2;
} else {
params.auditStatus = 3;
}
console.log(params);
this.service.request(this.service.$api_goodsResourceAudit, params).subscribe(res => {
if (res === true) {
this.service.msgSrv.success('审核成功!');
this.isVisible = false;
this.st?.reload();
this.getGoodsSourceStatistical();
}
});
} else {
const params: any = {
ids: this.auditID,
remarks: this.sfFre.value.remarks
};
if (value == 1) {
params.auditStatus = 2;
} else {
params.auditStatus = 3;
}
console.log(params);
this.service.request(this.service.$api_batchGoodsResourceAudit, params).subscribe(res => {
if (res === true) {
this.service.msgSrv.success('审核成功!');
this.isVisible = false;
this.st?.reload();
this.getGoodsSourceStatistical();
}
});
}
}
// 修改单价
modification(item: any) {
const modalRef = this.modal.create({
nzTitle: '修改单价',
nzWidth: '600px',
nzContent: SupplyManagementUpdatePriceComponent,
nzComponentParams: {
record: item
},
nzFooter: null
});
modalRef.afterClose.subscribe(res => {
if (res) {
this.st?.reload();
this.getGoodsSourceStatistical();
}
});
}
// getGoodsSourceDetail() {
// this.service.request(this.service.$api_get_bulk_detail, { id: this.id }).subscribe(res => {
// this.i = res;
// this.currentStatus = +this.i?.resourceStatus - 1;
// })
// }
// 再下一单
nextOrder(item: any) {
this.router.navigate(['/supply-management/bulk-amend', item.id], {
queryParams: {
sta: 4
}
});
}
// 取消货源
delOne(item: any) {
this.modal.confirm({
nzTitle: '<b>确定取消货源吗?</b>',
nzContent: `<b>取消后不可恢复,谨慎操作</b>`,
nzOnOk: () =>
this.service.request(this.service.$api_cancelSource, { id: item.id }).subscribe(res => {
if (res) {
this.service.msgSrv.success('已取消货源!');
this.st?.reload();
this.getGoodsSourceStatistical();
}
})
});
}
// 获取货源状态统计
getGoodsSourceStatistical() {
this.tabs = {
totalQuantity: 0,
cancelQuantity: 0,
receivedQuantity: 0,
stayQuantity: 0
};
const params: any = Object.assign({}, this.reqParams || {});
delete params.resourceStatus;
this.service.request(this.service.$api_get_goods_resource_statistical, { resourceType: 2, ...params }).subscribe(res => {
if (res) {
console.log(res);
this.tabs = res;
}
});
}
userAction() {}
// 导出
exportFire() {
this.service.exportStart(this.reqParams, this.service.$api_asyncExportBulkList);
}
}