fix bug
This commit is contained in:
@ -160,14 +160,11 @@ export class SupplyManagementBulkReleasePublishComponent implements OnInit {
|
||||
allowClear: true,
|
||||
} as SFSelectWidgetSchema
|
||||
},
|
||||
// enterpriseInfoName: {
|
||||
// type: 'string',
|
||||
// title: '网络货运人',
|
||||
// ui: {
|
||||
// widget: 'custom'
|
||||
// },
|
||||
// default: '天津市怡亚通XXXX有限公司'
|
||||
// },
|
||||
enterpriseInfoNamer: {
|
||||
type: 'string',
|
||||
title: '',
|
||||
ui: { hidden: true }
|
||||
},
|
||||
enterpriseInfoId: {
|
||||
type: 'string',
|
||||
title: '网络货运人',
|
||||
@ -175,7 +172,10 @@ export class SupplyManagementBulkReleasePublishComponent implements OnInit {
|
||||
widget: 'select',
|
||||
placeholder: '请选择',
|
||||
allowClear: true,
|
||||
asyncData: () => this.shipperSrv.getNetworkFreightForwarder()
|
||||
asyncData: () => this.shipperSrv.getNetworkFreightForwarder(),
|
||||
change: (q: any, qs: any) => {
|
||||
this.sf1.setValue('/enterpriseInfoNamer', qs.label);
|
||||
}
|
||||
}
|
||||
},
|
||||
deadlineTime: {
|
||||
|
||||
@ -1,3 +1,13 @@
|
||||
<!--
|
||||
* @Description :
|
||||
* @Version : 1.0
|
||||
* @Author : Shiming
|
||||
* @Date : 2022-03-23 14:24:05
|
||||
* @LastEditors : Shiming
|
||||
* @LastEditTime : 2022-04-15 15:18:33
|
||||
* @FilePath : \\tms-obc-web\\src\\app\\routes\\supply-management\\components\\tran-agreement\\tran-agreement.component.html
|
||||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||||
-->
|
||||
<nz-card class="card-height" >
|
||||
<div [innerHTML]="agreement | safehtml"></div>
|
||||
</nz-card>
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
* @Author : Shiming
|
||||
* @Date : 2022-02-24 20:19:51
|
||||
* @LastEditors : Shiming
|
||||
* @LastEditTime : 2022-04-15 15:15:13
|
||||
* @LastEditTime : 2022-04-15 15:18:29
|
||||
* @FilePath : \\tms-obc-web\\src\\app\\routes\\supply-management\\components\\tran-agreement\\tran-agreement.component.ts
|
||||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||||
*/
|
||||
@ -98,7 +98,7 @@ export class TranAgreementComponent {
|
||||
parametersDTO: {
|
||||
contractCode: '',
|
||||
shipperName: this?.shipperName || '', //托运人
|
||||
carrierName: this.object?.enterpriseInfoName || '', //承运人
|
||||
carrierName: this.object?.enterpriseInfoNamer || this.object?.enterpriseInfoName || '', //承运人
|
||||
shipperLegalPersonName: this.enterpriseInfo.legalPersonName || '', //托运法定代表人
|
||||
carrierLegalPersonName: this.enterpriseInfo.netLegalPersonName || '', //承运法定代表人
|
||||
consignorInfo: `${this.object.unLoadingPlaceDTOList[0]?.appUserName || ''} ${
|
||||
|
||||
Reference in New Issue
Block a user