import { Component, OnInit, ViewChild } from '@angular/core'; import { FormBuilder, FormControl, FormGroup, Validators } from '@angular/forms'; import differenceInCalendarDays from 'date-fns/differenceInCalendarDays'; import format from 'date-fns/format'; import { Subject } from 'rxjs'; import { ActivatedRoute, Router } from '@angular/router'; import { SFCheckboxWidgetSchema, SFComponent, SFNumberWidgetSchema, SFSchema, SFSchemaEnum, SFSelectWidgetSchema, SFTextareaWidgetSchema, SFUISchema } from '@delon/form'; import { _HttpClient } from '@delon/theme'; import { AmapPoiPickerComponent, AmapService, EACacheService, ShipperBaseService } from '@shared'; import { NzModalService } from 'ng-zorro-antd/modal'; import { of } from 'rxjs'; import { map } from 'rxjs/operators'; import { SupplyManagementService } from '../../services/supply-management.service'; import { SupplyManagementVehicleAssignedCarComponent } from '../assigned-car/assigned-car.component'; import { TranAgreementComponent } from '../tran-agreement/tran-agreement.component'; import { PublishAddressListComponent } from './address-list/address-list.component'; import { PublishSuccessComponent } from './publish-success/publish-success.component'; import { cacheConf } from '@conf/cache.conf'; @Component({ selector: 'app-publish-goods-onecar-publish', templateUrl: './onecar-publish.component.html', styleUrls: ['./onecar-publish.component.less'] }) export class SupplyManagementOnecarPublishComponent implements OnInit { // 环境信息 appId、tenantId envInfo = this.eaCacheSrv.get(cacheConf.env); validateForm1: FormGroup; limitValues = { maxWeight: 99999, maxVolume: 99999, maxPiece: 99999 }; sf1data: any; // 货源单设置回显 sf3data: any; // 货源单设置回显 sf4data: any; // 货源单设置回显 sf5data: any; // 货源单设置回显 sf55data: any; // 货源单设置回显 sf6data: any; // 货源单设置回显 sf7data: any; // 货源单设置回显 creatTime: any; // 货源单设置回显 loadingTime: any; // 货源单设置回显 unloadingTime: any; // 货源单设置回显 totalFees: any; // 总数信息 totalDistance = 0.0; //总里程 totalTime = 0.0; //路程总时间 currentRate = 0; //实时计算的费率 id = this.route.snapshot.params.id; // // 单位 startInfo: any = []; // 发货地数据 endInfo: any = []; // 卸货地数据 PageStatus = ''; changeSub = new Subject(); envCache: any; enterpriseProjectIds: any; constructor( private http: _HttpClient, fb: FormBuilder, private router: Router, private route: ActivatedRoute, private modalService: NzModalService, public service: SupplyManagementService, private amapService: AmapService, public shipperSrv: ShipperBaseService, private eaCacheSrv: EACacheService ) { this.validateForm1 = fb.group({ loadingTime: [null, [Validators.required]], unloadingTime: [null, [Validators.required]] }); this.envCache = this.eaCacheSrv.get(cacheConf.env); } @ViewChild('sf1', { static: false }) sf1!: SFComponent; schema1: SFSchema = {}; ui1!: SFUISchema; @ViewChild('sf2', { static: false }) sf2!: SFComponent; schema2: SFSchema = {}; ui2!: SFUISchema; @ViewChild('sf3', { static: false }) sf3!: SFComponent; schema3: SFSchema = {}; ui3!: SFUISchema; @ViewChild('sf4', { static: false }) sf4!: SFComponent; schema4: SFSchema = {}; ui4!: SFUISchema; @ViewChild('sf5', { static: false }) sf5!: SFComponent; schema5: SFSchema = {}; ui5!: SFUISchema; @ViewChild('sf55', { static: false }) sf55!: SFComponent; schema55: SFSchema = {}; ui55!: SFUISchema; @ViewChild('sf6', { static: false }) sf6!: SFComponent; schema6: SFSchema = {}; ui6!: SFUISchema; @ViewChild('sf7', { static: false }) sf7!: SFComponent; schema7: SFSchema = {}; ui7!: SFUISchema; formatterRmb = (value: number): string => { if (value) { let value2 = Number(value).toLocaleString(undefined, { minimumFractionDigits: 2, maximumFractionDigits: 2 }); return `¥ ${value2}`; } return `¥ 0.00`; }; parserRmb = (value: string): string => value.replace('¥ ', '').replace(',', ''); // 页面初始化 ngOnInit(): void { if (this.route.snapshot?.queryParams?.sta === '1') { this.PageStatus = '整车修改'; } else if (this.route.snapshot?.queryParams?.sta === '2') { this.PageStatus = '整车下一单'; } this.initSF1(); this.initSF3(); this.initSF4(); this.initSF5(); this.initSF6(); this.initSF7(); this.getLimitvalue(); this.initdata(); } initSF1() { this.schema1 = { properties: { shipperAppUserId: { title: '货主', type: 'string', maxLength: 30, ui: { widget: 'select', // serverSearch: true, searchDebounceTime: 300, searchLoadingText: '搜索中...', onSearch: (q: any) => { console.log(q) if (q) { return this.service .request(this.service.$api_enterpriceList, { enterpriseName: q }) .pipe(map(res => (res as any[]).map(i => ({ label: i.enterpriseName, value: i.id } as SFSchemaEnum)))) .toPromise(); } else { return of([]); } }, change: (q: any) => { if (q) { this.getRegionCode(q); } } } as SFSelectWidgetSchema }, enterpriseProjectId: { type: 'string', title: '项目', ui: { widget: 'select', placeholder: '请选择' } as SFSelectWidgetSchema }, enterpriseInfoName: { type: 'string', title: '网络货运人', ui: { widget: 'text' } }, externalResourceCode: { type: 'string', title: '外部货源号', maxLength: 30, ui: { placeholder: '请输入' } }, dispatchPhone: { type: 'string', title: '手机号', maxLength: 30, ui: { hidden: true, placeholder: '请输入' } }, dispatchName: { type: 'string', title: '名字', maxLength: 30, ui: { hidden: true, placeholder: '请输入' } }, dispatchId: { type: 'string', title: '调度员', ui: { widget: 'select', placeholder: '请选择', allowClear: true, optionalHelp: '选择调度员,司机直接联系调度员 ; 不选择,司机直接联系您', change: (_value: any, data: any) => { if (data.label) { const dat = data.label.split('/'); this.sf1.setValue('/dispatchName', dat[0]); this.sf1.setValue('/dispatchPhone', dat[1]); } }, asyncData: () => this.shipperSrv.getStaffList2() } as SFSelectWidgetSchema } }, required: ['shipperAppUserId', 'enterpriseProjectId'] }; this.ui1 = { '*': { spanLabelFixed: 120, grid: { span: 8 } } }; } initSF3() { this.schema3 = { properties: { goodsTypeId: { type: 'string', title: '货物名称', ui: { widget: 'select', placeholder: '请选择', errors: { required: '请选择货物类型' }, asyncData: () => this.shipperSrv.loadConfigByKey('goods.name.config.type').pipe( map((data: any) => { return data[0].children?.map((m: any) => { return { label: m.name, value: m.id }; }); }) ), change: (value, data: any) => { this.changeGoodsType(value, data); this.sf3.setValue('/goodsTypeName', data.label); } } as SFSelectWidgetSchema }, goodsTypeName: { type: 'string', title: '', ui: { hidden: true } }, goodsNameId: { type: 'string', title: '', ui: { widget: 'select', placeholder: '请选择', errors: { required: '请填写货物名称' }, change: (_value: any, data: any) => { this.sf3.setValue('/goodsName', data.label); }, visibleIf: { goodsTypeName: (value: any) => value && value !== '其它' } } }, goodsName: { type: 'string', title: '', ui: { hidden: true, visibleIf: { goodsTypeName: (value: any) => value && value !== '其它' } } }, goodsName1: { type: 'string', title: '', ui: { errors: { required: '请填写货物名称' }, visibleIf: { goodsTypeName: (value: any) => value && value === '其它' } } } }, required: ['goodsTypeId', 'goodsName', 'goodsNameId'] }; this.ui3 = { '*': { spanLabelFixed: 90, grid: { span: 12 } } }; } initSF4() { this.schema4 = { properties: { weight: { type: 'string', title: '货物数量', ui: { widget: 'custom', placeholder: '请输入', errors: { required: '必填项' } } }, volume: { type: 'string', title: '', ui: { widget: 'custom', placeholder: '请输入' } }, number: { type: 'string', title: '', ui: { widget: 'custom', placeholder: '请输入' } }, carModel: { type: 'string', title: '车型/车长', ui: { widget: 'select', mode: 'multiple', maxMultipleCount: 3, placeholder: '请选择车型', errors: { required: '请选择车型' }, asyncData: () => this.service.getDictOptions({ dictKey: 'car:model' }), change: (tag: any, org: any) => { if (tag.includes('999')) { this.sf4.setValue('/carModel', ['999']); } } } }, carLength: { type: 'string', title: '', ui: { widget: 'select', mode: 'multiple', maxMultipleCount: 3, placeholder: '请选择车长', errors: { required: '请选择车长' }, asyncData: () => this.service.getDictOptions({ dictKey: 'car:length' }), change: (tag: any, org: any) => { if (tag.includes('999')) { this.sf4.setValue('/carModel', ['999']); } } } } }, required: ['weight', 'carModel', 'carLength'] }; this.ui4 = { '*': { spanLabelFixed: 90, grid: { span: 24 } }, $weight: { grid: { lg: 8, md: 12, sm: 12, xs: 24 } }, $volume: { grid: { lg: 8, md: 12, sm: 12, xs: 24 } }, $number: { grid: { lg: 8, md: 12, sm: 12, xs: 24 } }, $carModel: { spanLabelFixed: 100, grid: { span: 8 } }, $carLength: { grid: { span: 8 } } }; } initSF5() { this.schema5 = { properties: { insuranceType: { type: 'string', title: '增值服务套餐', ui: { widget: 'select', asyncData: () => { return this.service.request(this.service.$api_getDictValue, { dictKey: 'bill:insurance:type' }).pipe( map((res: any) => { return [...res]; }) ); }, change: (tag: any, org: any) => { this.getInsurersPrice(tag); } }, default: '3' }, type1: { type: 'string', title: '', enum: ['车辆实时定位', '轨迹查询', '数据保护', '赠送基本险'], readOnly: true, ui: { widget: 'checkbox', visibleIf: { insuranceType: (value: string) => value === '1' } } as SFCheckboxWidgetSchema, default: ['车辆实时定位', '轨迹查询', '数据保护', '赠送基本险'] }, type2: { type: 'string', title: '', enum: ['车辆实时定位', '轨迹查询', '数据保护', '专属技术服务', '赠送综合险'], readOnly: true, ui: { widget: 'checkbox', visibleIf: { insuranceType: (value: string) => value === '2' } } as SFCheckboxWidgetSchema, default: ['车辆实时定位', '轨迹查询', '数据保护', '专属技术服务', '赠送综合险'] }, freeInsurance: { type: 'string', title: '赠送保险', ui: { widget: 'custom', visibleIf: { insuranceType: (value: string) => value !== '3' } } }, insurancePackagedGoods: { type: 'string', title: '货物包装', ui: { widget: 'dict-select', params: { dictKey: 'insure:packaged:goods' }, containsAllLabel: false, visibleIf: { insuranceType: (value: string) => value !== '3' } } as SFSelectWidgetSchema }, hidenField: { type: 'string', title: '', default: ' ', ui: { widget: 'text' } }, goodsValue: { type: 'string', title: '货物价值', ui: { widget: 'custom', descriptionI18n: '输入50000-3000000之间数值', visibleIf: { insuranceType: (value: string) => value !== '3' } } }, insurancePremium: { type: 'string', title: '', ui: { widget: 'custom', validator: val => this.customValidator(val), visibleIf: { insuranceType: (value: string) => value !== '3' } } }, insuranceRate: { type: 'string', title: '保险费率', ui: { hidden: true } } }, required: ['insurancePackagedGoods', 'insurancePremium'] }; this.ui5 = { '*': { spanLabelFixed: 115, grid: { span: 12 } }, $type1: { grid: { span: 24 } }, $type2: { grid: { span: 24 } }, $freeInsurance: { grid: { span: 24 } } }; } /** * 自定义校验数据 * @param val */ customValidator(val: number) { if (this.isEmpty(val)) { return [{ keyword: 'required', message: '不能为空' }]; } else { if (val <= 0) { return [{ keyword: 'required', message: '数值需大于0' }]; } return []; } } isEmpty(val: any) { return val === undefined || val === null || val.toString().trim() === ''; } initSF6() { this.schema6 = { properties: { stateReceipt: { type: 'string', title: '是否回单', enum: [ { label: '需要', value: true }, { label: '不需要', value: false } ], ui: { widget: 'select', errors: { required: '请选择' }, placeholder: '请选择' } }, receiptType: { type: 'string', title: '回单类型', ui: { widget: 'dict-select', params: { dictKey: 'receipt:type' }, containsAllLabel: false, placeholder: '请选择', errors: { required: '请选择' }, visibleIf: { stateReceipt: value => value === true } } }, receiptAddress: { type: 'string', title: '回单收件人信息', ui: { widget: 'custom', placeholder: '请点击选择回单收件人信息', // validator: val => (this.sf6?.value?.receiptType === '2' ? [{ keyword: 'required', message: '请点击选择收回单地址' }] : []), visibleIf: { receiptType: value => value === '2' } }, default: '' }, receiptAddressId: { type: 'string', title: '', ui: { hidden: true } }, receiptUserName: { type: 'string', title: '联系人', ui: { visibleIf: { receiptType: value => value === '2' } }, readOnly: true }, phon: { type: 'string', title: '联系电话', ui: { visibleIf: { receiptType: value => value === '2' } }, readOnly: true }, area: { type: 'string', title: '所在地区', ui: { visibleIf: { receiptType: value => value === '2' } }, readOnly: true }, address: { type: 'string', title: '详细地址', ui: { visibleIf: { receiptType: value => value === '2' } }, readOnly: true }, remarks: { type: 'string', title: '备注', maxLength: 200, ui: { widget: 'textarea', placeholder: '请输入', autosize: { minRows: 3, maxRows: 3 } } as SFTextareaWidgetSchema } }, required: ['stateReceipt', 'receiptType', 'receiptAddress'] }; this.ui6 = { '*': { spanLabelFixed: 115, grid: { span: 24 } } }; } initSF7() { this.schema7 = { properties: { prePay: { type: 'number', title: '预付', default: 0, ui: { widget: 'custom' } }, toPay: { type: 'number', title: '到付', default: 0, ui: { widget: 'custom' } }, receiptPay: { type: 'number', title: '回单付', default: 0, ui: { widget: 'custom' } }, subtotal: { type: 'number', title: '小计', default: 0, ui: { widget: 'custom' } as SFNumberWidgetSchema }, appendFee: { type: 'number', title: '附加费', default: 0, ui: { widget: 'custom' } as SFNumberWidgetSchema }, total: { type: 'number', title: '总费用', default: 0, ui: { widget: 'custom' } as SFNumberWidgetSchema }, paymentDays: { type: 'string', title: '到货后', ui: { widget: 'custom', errors: { required: '请输入付款承诺天数' } } } }, required: ['paymentDays'] }; this.ui7 = { '*': { spanLabelFixed: 115, grid: { span: 24 } } }; } // 获取城市列表 getRegionCode(regionCode: any) { console.log(regionCode); return this.service .request(this.service.$api_get_enterprise_project, { id: regionCode }) .pipe( map(res => res.map((item: any) => ({ label: item.projectName, value: item.id })) ) ) .subscribe(res => { this.sf1.getProperty('/enterpriseProjectId')!.schema.enum = res; this.sf1.getProperty('/enterpriseProjectId')!.widget.reset(res); if (this.enterpriseProjectIds) { this.sf1.setValue('/enterpriseProjectId', this.enterpriseProjectIds); } }); } payChange() { const prePay = this.sf7.value.prePay || 0; const toPay = this.sf7.value.toPay || 0; const receiptPay = this.sf7.value.receiptPay || 0; const oilCardPay = 0; const subtotal = prePay + toPay + receiptPay; const params = { shipperId: this.envCache?.enterpriseId, enterpriseInfoId: this.envCache?.networkTransporterId, totalFreight: subtotal, fuelCardAmount: oilCardPay, resourcetype: '1' }; this.service.request(this.service.$api_getCalculatedSurcharge, params).subscribe(res => { console.log('999'); console.log(this.envCache); if (res) { this.sf7.setValue('/appendFee', res.surcharge); this.sf7.setValue('/subtotal', subtotal); this.sf7.setValue('/total', subtotal + res.surcharge); this.service .request( this.service.$api_getAdditionalRate + `?shipperId=${this.envCache?.enterpriseId}&enterpriseInfoId=${this?.enterpriseProjectIds}&resourcetype='1'` ) .subscribe(res => { if (res) { this.currentRate = res.rate * 100; } }); } else { this.service.msgSrv.error(res.msg); } }); } addStartInfo() { if (this.startInfo.length < 5) { const controlId = this.startInfo.length; this.startInfo.push({ detailedAddress: '', appUserName: '', contractTelephone: '', latitude: '', longitude: '', province: '', city: '', area: '', type: '1' }); this.validateForm1.addControl(`loadAddress${controlId}`, new FormControl(null, Validators.required)); this.validateForm1.addControl(`loadName${controlId}`, new FormControl(null, Validators.required)); this.validateForm1.addControl(`loadPhone${controlId}`, new FormControl(null, [Validators.required, Validators.pattern('^[0-9]*$')])); } } getLimitvalue() { // 货物核载信息最大值 // 货物运输费(小计)最大值 const getlimitvaluesParms = [this.service.limitKeys.weight, this.service.limitKeys.volume, this.service.limitKeys.piece]; this.service.request(this.service.$api_findItemValueByItemKeys, getlimitvaluesParms).subscribe(res => { const maxWeight = res.filter((item: any) => item.itemKey === this.service.limitKeys.weight)[0].itemValue; const maxVolume = res.filter((item: any) => item.itemKey === this.service.limitKeys.volume)[0].itemValue; const maxPiece = res.filter((item: any) => item.itemKey === this.service.limitKeys.piece)[0].itemValue; this.limitValues = { maxWeight: Number(maxWeight), maxVolume: Number(maxVolume), maxPiece: Number(maxPiece) }; }); } subStartInfo(event: any, index: number) { this.startInfo.splice(index, 1); this.validateForm1.removeControl(`loadAddress${index}`); this.validateForm1.removeControl(`loadName${index}`); this.validateForm1.removeControl(`loadPhone${index}`); } addEndInfo() { if (this.endInfo.length < 5) { const controlId = this.endInfo.length; this.endInfo.push({ detailedAddress: '', appUserName: '', contractTelephone: '', latitude: '', longitude: '', province: '', city: '', area: '', type: '2' }); this.validateForm1.addControl(`unloadAddress${controlId}`, new FormControl(null, Validators.required)); this.validateForm1.addControl(`unloadName${controlId}`, new FormControl(null, Validators.required)); this.validateForm1.addControl( `unloadPhone${controlId}`, new FormControl(null, [Validators.required, Validators.pattern('^[0-9]*$')]) ); } } subEndInfo(event: any, index: number) { this.endInfo.splice(index, 1); this.validateForm1.removeControl(`unloadAddress${index}`); this.validateForm1.removeControl(`unloadName${index}`); this.validateForm1.removeControl(`unloadPhone${index}`); } changeGoodsType(value: string, data: any) { if (data.label === '其它') return; const params = { pageIndex: 1, pageSize: 100, configId: value }; this.service .request(this.service.$api_get_config_item_page, params) .pipe( map(data => { return data.records?.map((m: any) => { return { label: m.name, value: m.id }; }); }) ) .subscribe(res => { if (res) { this.sf3.getProperty('/goodsNameId')!.schema.enum = res; this.sf3.getProperty('/goodsNameId')!.widget.reset(res); if (this.sf3data.goodsNameId) { this.sf3.setValue('/goodsNameId', this.sf3data.goodsNameId); } } else { this.service.msgSrv.error(res.msg); } }); } //指派熟车 chooseFamifiar(item: any) { console.log('999'); const modalRef = this.modalService.create({ nzTitle: '指派熟车', nzContent: SupplyManagementVehicleAssignedCarComponent, nzWidth: 1200, nzComponentParams: { status: 'new', url: this.service.$api_save_assign_whole, params: item, type: 'next' }, nzFooter: null }); modalRef.afterClose.subscribe(result => { if (result) { this.openFinishPage(result); } }); } // 打开下单完成页面 openFinishPage(resourceObj: any = null, change?: any) { this.modalService.create({ nzTitle: '', nzContent: PublishSuccessComponent, nzWidth: 900, nzFooter: null, nzComponentParams: { type: 'onecar', resourceObj, change: change } }); } // 提交前确认,委托运输协议弹窗 submitConfirm(submitType?: string) { Object.keys(this.validateForm1.controls).forEach(key => { this.validateForm1.controls[key].markAsDirty(); this.validateForm1.controls[key].updateValueAndValidity(); }); this.sf3.validator({ emitError: true }); this.sf4.validator({ emitError: true }); this.sf5.validator({ emitError: true }); this.sf6.validator({ emitError: true }); this.sf7.validator({ emitError: true }); console.log(this.validateForm1.invalid) console.log(this.sf4.valid) console.log(this.sf5.valid) console.log(this.sf6.valid) console.log(this.sf7.valid) if (this.validateForm1.invalid || !this.sf3.valid || !this.sf4.valid || !this.sf5.valid || !this.sf6.valid || !this.sf7.valid) { this.service.msgSrv.warning('请完善必填项!'); return; } if (this.validateForm1.value.loadingTime < new Date()) { this.service.msgSrv.warning('装货时间必须大于当前时间!'); return; } if (this.validateForm1.value.loadingTime > this.validateForm1.value.unloadingTime) { this.service.msgSrv.warning('装货时间不能大于卸货时间!'); return; } if (this.sf7.value.total <= 0) { this.service.msgSrv.warning('总费用不能为0!'); return; } if ( this.sf4.value.weight > this.limitValues.maxWeight || this.sf4.value.volume > this.limitValues.maxVolume || this.sf4.value.number > this.limitValues.maxPiece ) { this.service.msgSrv.error( `当前货物核载信息已超出限定值【${this.limitValues.maxWeight}吨、${this.limitValues.maxVolume}方、${this.limitValues.maxPiece}件】` ); return; } const getFreightParms = { carLengthKeys: this.sf4.value.carLength, km: this.totalDistance }; this.service.request(this.service.$api_getFreight, getFreightParms).subscribe(res => { if (this.sf7.value.subtotal > res.maxPrice) { this.service.msgSrv.error(`运费过高,请调整录入`); return; } else if (this.sf7.value.subtotal > res.ewPrice) { this.modalService.confirm({ nzTitle: '', nzContent: `您的录入的运费过高,可能会影响支付,请仔细确认`, nzOkText: '继续', nzCancelText: '取消', nzOnOk: () => { this.agreementConfirm(submitType); } }); } else { this.agreementConfirm(submitType); } }); } // 提交前协议弹窗 agreementConfirm(submitType?: string) { //装卸货信息 const LoadingList = this.startInfo.concat(this.endInfo); // 货物信息 const sf3Values = { ...this.sf3.value }; if (sf3Values.goodsTypeName === '其它') { sf3Values.goodsName = sf3Values.goodsName1; delete sf3Values.goodsName1; } if (this.sf4.value.carModel.includes('999')) { this.sf4.value.carModel = ['999']; } if (this.sf4.value.carLength.includes('999')) { this.sf4.value.carLength = ['999']; } const goodsInfoVOList = [ { ...sf3Values, ...this.sf4.value, carModel: this.sf4.value.carModel.join(','), carLength: this.sf4.value.carLength.join(',') } ]; // 运费信息 const expenseList = [ { expenseCode: 'PRE', expenseName: '预付', price: this.sf7.value.prePay || 0, id: this.sf7data?.prePayId || '' }, { expenseCode: 'RECE', expenseName: '到付', price: this.sf7.value.toPay || 0, id: this.sf7data?.toPayId || '' }, { expenseCode: 'BACK', expenseName: '回单付', price: this.sf7.value.receiptPay || 0, id: this.sf7data?.receiptPayId || '' } ]; // 从“再下一单”过来,将所有的子参数内的id都删除 if ((this.PageStatus = '整车下一单')) { LoadingList.forEach((ele: any) => { delete ele.id; }); goodsInfoVOList.forEach((ele: any) => { delete ele.id; }); expenseList.forEach((ele: any) => { delete ele.id; }); } const params = { id: '', ...this.sf1.value, unLoadingPlaceDTOList: LoadingList, unloadingTime: format(this.validateForm1.value.unloadingTime, 'yyyy-MM-dd HH:mm:ss'), loadingTime: format(this.validateForm1.value.loadingTime, 'yyyy-MM-dd HH:mm:ss'), goodsInfoDTOList: goodsInfoVOList, ...this.sf5.value, ...this.sf6.value, expenseDTOList: expenseList, paymentDays: this.sf7.value.paymentDays }; const modalRef = this.modalService.create({ nzTitle: '运输协议', nzContent: TranAgreementComponent, nzWidth: 900, nzFooter: null, nzComponentParams: {Object: params,} }); modalRef.afterClose.subscribe(result => { if (result) { this.submit(submitType, params); } }); } // 提交 submit(submitType?: string,params?: any): void { // const params: any = { // ...this.sf1.value, // ...this.sf5.value, // ...this.sf6.value, // paymentDays: this.sf7.value.paymentDays, // loadingTime: this.loadingTime, // unloadingTime: this.unloadingTime, // unLoadingPlaceDTOList: [...this.startInfo, ...this.endInfo], // goodsInfoDTOList: [ // { // ...this.sf4.value, // ...this.sf3.value, // carModel: this.sf4.value.carModel.join(','), // carLength: this.sf4.value.carLength.join(',') // } // ] // }; console.log(params); if (submitType) { if (submitType == 'assign') { this.chooseFamifiar(params); return; } } if (this.PageStatus === '整车修改') { this.requests(this.service.$api_set_WholeModify, params, 1); } else if (this.PageStatus === '整车下一单') { this.requests(this.service.$api_set_saveAnotherWholeOrder, params, 2); } } // 补0函数 addPreZero(num: any) { if (num < 10) { return '0' + num; } else { return num; } } // 下单成功提示弹窗 requests(url: any, params: any, change?: any) { this.service.request(url, params).subscribe((res: any) => { if (res) { this.modalService.create({ nzTitle: '', nzContent: PublishSuccessComponent, nzWidth: 900, nzFooter: null, nzComponentParams: { type: 'onecar', change: change } }); } }); } // 打开地图 openMap(type: string, index: number) { const modalRef = this.modalService.create({ nzTitle: '', nzContent: AmapPoiPickerComponent, nzWidth: 900, nzOnOk: item => { const poi = item.poi; const locList = poi.pois; switch (type) { case 'start': this.startInfo[index].detailedAddress = poi.formattedAddress; this.startInfo[index].longitude = locList[0]; this.startInfo[index].latitude = locList[1]; this.startInfo[index].province = poi.addressComponent.province; this.startInfo[index].city = poi.addressComponent.city; this.startInfo[index].area = poi.addressComponent.district; this.startInfo[index].address = poi.formattedAddress; break; case 'end': this.endInfo[index].detailedAddress = poi.formattedAddress; this.endInfo[index].longitude = locList[0]; this.endInfo[index].latitude = locList[1]; this.endInfo[index].province = poi.addressComponent.province; this.endInfo[index].city = poi.addressComponent.city; this.endInfo[index].area = poi.addressComponent.district; this.endInfo[index].address = poi.formattedAddress; break; default: break; } if (this.startInfo[0]?.area && this.endInfo[0]?.area) { this.amapService.drivingCompute([...this.startInfo], [...this.endInfo]).subscribe((res: any) => { this.totalDistance = res.distance; this.totalTime = res.time; this.getInsurersPrice(); // 计算保费金额 }); } } }); } // 返回上一页 goBack() { window.history.go(-1); } // 初始化赋值信息 initdata() { this.service.request(`${this.service.$api_get_getCompleteVehicleDetail}`, { id: this.id }).subscribe(res => { this.dataR(res); }); } // 初始化赋值信息函数 dataR(res: any) { if (res?.shipperAppUserName) { const List: any = []; this.service.request(this.service.$api_enterpriceList, { enterpriseName: res?.shipperAppUserName }).subscribe(rs => { rs?.forEach((element: any) => { List.push({ label: element.enterpriseName, value: element.id }); }); this.sf1.getProperty('/shipperAppUserId')!.schema.enum = List; this.sf1.getProperty('/shipperAppUserId')!.widget.reset(List); if (res?.shipperAppUserId) { this.sf1.setValue('/shipperAppUserId', res?.shipperAppUserId); this.getRegionCode(res?.shipperAppUserId); } }); } if (res?.enterpriseProjectId) { this.enterpriseProjectIds = res.enterpriseProjectId; } this.sf1data = { enterpriseInfoName: res?.enterpriseInfoName, dispatchPhone: res?.dispatchPhone, dispatchName: res?.dispatchName, externalResourceCode: res?.externalResourceCode, dispatchId: res?.dispatchId }; if (this.PageStatus === '整车修改') { this.sf1data.id = res?.id; } res?.unLoadingPlaceVOList.forEach((element: any) => { if (element.type === 1 || element.type === '1') { const controlId = this.startInfo.length; if (this.PageStatus === '整车修改') { this.startInfo.push({ detailedAddress: element.detailedAddress, appUserName: element.appUserName, contractTelephone: element.contractTelephone, latitude: element.latitude, longitude: element.longitude, province: element.province, city: element.city, area: element.area, type: element.type, id: element.id }); } else { this.startInfo.push({ detailedAddress: element.detailedAddress, appUserName: element.appUserName, contractTelephone: element.contractTelephone, latitude: element.latitude, longitude: element.longitude, province: element.province, city: element.city, area: element.area, type: element.type }); } this.validateForm1.addControl(`loadAddress${controlId}`, new FormControl(null, Validators.required)); this.validateForm1.addControl(`loadName${controlId}`, new FormControl(null, Validators.required)); this.validateForm1.addControl(`loadPhone${controlId}`, new FormControl(null, Validators.required)); } else if (element.type === 2 || element.type === '2') { const controlId = this.endInfo.length; if (this.PageStatus === '整车修改') { this.endInfo.push({ detailedAddress: element?.detailedAddress, appUserName: element?.appUserName, contractTelephone: element?.contractTelephone, latitude: element.latitude, longitude: element.longitude, province: element.province, city: element.city, area: element.area, type: element.type, id: element.id }); } else { this.endInfo.push({ detailedAddress: element?.detailedAddress, appUserName: element?.appUserName, contractTelephone: element?.contractTelephone, latitude: element.latitude, longitude: element.longitude, province: element.province, city: element.city, area: element.area, type: element.type }); } this.validateForm1.addControl(`unloadAddress${controlId}`, new FormControl(null, Validators.required)); this.validateForm1.addControl(`unloadName${controlId}`, new FormControl(null, Validators.required)); this.validateForm1.addControl(`unloadPhone${controlId}`, new FormControl(null, Validators.required)); } // 计算里程,时间 if (this.startInfo?.[0]?.area && this.endInfo?.[0]?.area) { this.amapService.drivingCompute([...this.startInfo], [...this.endInfo]).subscribe(res => { this.totalDistance = res.distance; this.totalTime = res.time; }); } }); this.sf3data = { goodsTypeId: res?.goodsInfoVOList[0]?.goodsTypeId || '', goodsTypeName: res?.goodsInfoVOList[0]?.goodsTypeName || '', goodsNameId: res?.goodsInfoVOList[0]?.goodsNameId || '', goodsName: res?.goodsInfoVOList[0]?.goodsName || '' }; if (this.sf3data.goodsTypeName === '其它') { this.sf3data.goodsName1 = res?.goodsInfoVOList[0]?.goodsName || ''; } this.changeGoodsType(this.sf3data.goodsTypeId, { label: this.sf3data.goodsTypeName, value: this.sf3data.goodsTypeId }); if (res?.loadingTime) { this.loadingTime = res?.loadingTime; } if (res?.unloadingTime) { this.unloadingTime = res?.unloadingTime; } this.validateForm1.patchValue( { loadingTime: new Date(Date.parse(res.loadingTime.replace(/-/g, '/'))), unloadingTime: new Date(Date.parse(res.unloadingTime.replace(/-/g, '/'))) }, { onlySelf: true } ); this.sf4data = { weight: res?.goodsInfoVOList[0]?.weight || '', volume: res?.goodsInfoVOList[0]?.volume || '', number: res?.goodsInfoVOList[0]?.number || '', carModel: res?.goodsInfoVOList[0]?.carModel?.split(',') || [], carLength: res?.goodsInfoVOList[0]?.carLength?.split(',') || [] }; if (this.PageStatus === '整车修改') { this.sf4data.id = res?.goodsInfoVOList[0]?.id; } this.totalFees = res?.shippingInformationVO?.totalFee || '0'; this.sf5data = { insuranceType: res?.insuranceType || '', goodsValue: res?.goodsValue || '', insurancePremium: res?.insurancePremium || '', insuranceRate: res?.insuranceRate || '', insurancePackagedGoods: res?.insurancePackagedGoods || '', }; this.sf6data = { stateReceipt: res?.stateReceipt, receiptType: res?.receiptType || '', receiptUserName: res?.receiptUserName || '', receiptAddressArea: res?.receiptAddressArea || '', receiptUserPhone: res?.receiptUserPhone || '', receiptAddress: res?.receiptAddress || '', remarks: res?.supplementaryInformationVO?.remarks || '' }; this.sf7data = { prePay: res?.shippingInformationVO?.prePay, toPay: res?.shippingInformationVO?.toPay, // oilCardPay: 0, receiptPay: res?.shippingInformationVO?.receiptPay, total: res?.shippingInformationVO?.totalFee, appendFee: res?.shippingInformationVO?.appendFee, paymentDays: res?.paymentDays }; this.sf7.setValue('/prePay', this.sf7data.prePay); this.sf7.setValue('/toPay', this.sf7data.toPay); this.sf7.setValue('/receiptPay', this.sf7data.receiptPay); this.payChange(); } // 选择地址 chooseAddress(index: number, type: string) { const modalRef = this.modalService.create({ nzTitle: '选择地址', nzContent: PublishAddressListComponent, nzWidth: 900, nzComponentParams: { spuStatus: '1' }, nzOnOk: item => { const data = item.seleteData; if (JSON.stringify(data) === '{}') return; switch (type) { case 'start': this.startInfo[index] = { detailedAddress: data.detailedAddress, appUserName: data.contactName, contractTelephone: data.contactTelephone, latitude: data.contactTelephone, longitude: data.latitude, province: data.province, city: data.city, area: data.area, type: '1' }; break; case 'end': this.endInfo[index] = { detailedAddress: data.detailedAddress, appUserName: data.contactName, contractTelephone: data.contactTelephone, latitude: data.contactTelephone, longitude: data.latitude, province: data.province, city: data.city, area: data.area, type: '2' }; break; default: break; } // 计算里程,时间 if (this.startInfo[0]?.area && this.endInfo[0]?.area) { this.amapService.drivingCompute([...this.startInfo], [...this.endInfo]).subscribe(res => { this.totalDistance = res.distance; this.totalTime = res.time; this.getInsurersPrice(); //计算保费金额 }); } } }); } // 不可选择的时间 disabledDateStart = (current: Date): boolean => { return differenceInCalendarDays(new Date(), current) > 0; }; // 装卸货地址互换 swapAddress() { this.startInfo.forEach((element: any, index: any) => { this.validateForm1.removeControl(`loadAddress${index}`); this.validateForm1.removeControl(`loadName${index}`); this.validateForm1.removeControl(`loadPhone${index}`); }); this.endInfo.forEach((element: any, index: any) => { this.validateForm1.removeControl(`unloadAddress${index}`); this.validateForm1.removeControl(`unloadName${index}`); this.validateForm1.removeControl(`unloadPhone${index}`); }); let item = this.startInfo; this.startInfo = this.endInfo; this.endInfo = item; this.startInfo.forEach((element: any, index: any) => { element.type = '1'; this.validateForm1.addControl(`loadAddress${index}`, new FormControl(null, Validators.required)); this.validateForm1.addControl(`loadName${index}`, new FormControl(null, Validators.required)); this.validateForm1.addControl(`loadPhone${index}`, new FormControl(null, [Validators.required, Validators.pattern('^[0-9]*$')])); }); this.endInfo.forEach((element: any, index: any) => { element.type = '2'; this.validateForm1.addControl(`unloadAddress${index}`, new FormControl(null, Validators.required)); this.validateForm1.addControl(`unloadName${index}`, new FormControl(null, Validators.required)); this.validateForm1.addControl(`unloadPhone${index}`, new FormControl(null, [Validators.required, Validators.pattern('^[0-9]*$')])); }); // 计算里程,时间 if (this.startInfo[0]?.area && this.endInfo[0]?.area) { this.amapService.drivingCompute([...this.startInfo], [...this.endInfo]).subscribe(res => { this.totalDistance = res.distance; this.totalTime = res.time; this.getInsurersPrice(); //计算保费金额 }); } } // 计算保价费金额 getInsurersPrice(insuranceType = this.sf5.value.insuranceType) { if (this.sf5.value.goodsValue >= 50000 && this.totalDistance > 0) { const params = { insuranceType, goodsValue: this.sf5.value.goodsValue, km: this.totalDistance }; this.service.request(this.service.$api_getWholeInsuranceInfo, params).subscribe(res => { if (res) { this.sf5.setValue('/insurancePremium', res.insurancePremium); this.sf5.setValue('/insuranceRate', res.insuranceRate); } else { this.sf5.setValue('/insurancePremium', null); this.sf5.setValue('/insuranceRate', null); } }); } } }