Merge branch 'develop' of https://gitlab.eascs.com/tms-ui/tms-obc-web into develop
This commit is contained in:
@ -13,20 +13,12 @@
|
|||||||
<div nz-row>
|
<div nz-row>
|
||||||
<div nz-col nzSpan="14" class="text-grey-darker">网络货运人:{{ i?.shipperAppUserName }}</div>
|
<div nz-col nzSpan="14" class="text-grey-darker">网络货运人:{{ i?.shipperAppUserName }}</div>
|
||||||
<div nz-col nzSpan="10">
|
<div nz-col nzSpan="10">
|
||||||
<<<<<<< HEAD <button nz-button (click)="cancleGoodsSource()" *ngIf="i?.resourceStatus === '1'" acl
|
|
||||||
[acl-ability]="['SUPPLY-BULK-DETAIL-cancelSupply']">取消货源</button>
|
|
||||||
<button nz-button (click)="updatePrice(i)" *ngIf="i?.resourceStatus === '1'" acl
|
|
||||||
[acl-ability]="['SUPPLY-BULK-DETAIL-updatePrice']">修改单价</button>
|
|
||||||
<button nz-button nzType="primary" nzGhost (click)="placeOrder(i)" acl
|
|
||||||
[acl-ability]="['SUPPLY-BULK-DETAIL-bulkAnotherOrder']">再下一单</button>
|
|
||||||
=======
|
|
||||||
<button nz-button (click)="cancleGoodsSource()" *ngIf="i?.resourceStatus === '1'" acl
|
<button nz-button (click)="cancleGoodsSource()" *ngIf="i?.resourceStatus === '1'" acl
|
||||||
[acl-ability]="['SUPPLY-BULK-DETAIL-cancelSupply']">取消货源</button>
|
[acl-ability]="['SUPPLY-BULK-DETAIL-cancelSupply']">取消货源</button>
|
||||||
<button nz-button (click)="updatePrice(i)" *ngIf="i?.resourceStatus === '1'" acl
|
<button nz-button (click)="updatePrice(i)" *ngIf="i?.resourceStatus === '1'" acl
|
||||||
[acl-ability]="['SUPPLY-BULK-DETAIL-updatePrice']">修改单价</button>
|
[acl-ability]="['SUPPLY-BULK-DETAIL-updatePrice']">修改单价</button>
|
||||||
<button nz-button nzType="primary" nzGhost (click)="placeOrder(i)" acl
|
<button nz-button nzType="primary" nzGhost (click)="placeOrder(i)" acl
|
||||||
[acl-ability]="['SUPPLY-BULK-DETAIL-bulkAnotherOrder']">再下一单</button>
|
[acl-ability]="['SUPPLY-BULK-DETAIL-bulkAnotherOrder']">再下一单</button>
|
||||||
>>>>>>> 82c3801cc6ea10d8f6b895d85fe5553850672cea
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="mt-sm mb-sm" nz-row>
|
<div class="mt-sm mb-sm" nz-row>
|
||||||
|
|||||||
@ -459,7 +459,7 @@ export class SupplyManagementBulkComponent implements OnInit {
|
|||||||
* 审核通过按钮
|
* 审核通过按钮
|
||||||
*/
|
*/
|
||||||
handleOK(value: any) {
|
handleOK(value: any) {
|
||||||
if(this.selectedRows.length <= 0) {
|
if(this.auditMany === false) {
|
||||||
const params: any = {
|
const params: any = {
|
||||||
id: this.auditID,
|
id: this.auditID,
|
||||||
remarks: this.sfFre.value.remarks,
|
remarks: this.sfFre.value.remarks,
|
||||||
|
|||||||
@ -227,9 +227,7 @@ export class SupplyManagementVehicleComponent implements OnInit {
|
|||||||
* 审核通过按钮
|
* 审核通过按钮
|
||||||
*/
|
*/
|
||||||
handleOK(value: any) {
|
handleOK(value: any) {
|
||||||
console.log(this.sfFre.valid);
|
if (this.auditMany === false) {
|
||||||
console.log(this.sfFre.value);
|
|
||||||
if (this.selectedRows.length <= 0) {
|
|
||||||
const params: any = {
|
const params: any = {
|
||||||
id: this.auditID,
|
id: this.auditID,
|
||||||
remarks: this.sfFre.value.remarks
|
remarks: this.sfFre.value.remarks
|
||||||
@ -239,6 +237,7 @@ export class SupplyManagementVehicleComponent implements OnInit {
|
|||||||
} else {
|
} else {
|
||||||
params.auditStatus = 3;
|
params.auditStatus = 3;
|
||||||
}
|
}
|
||||||
|
console.log('999');
|
||||||
console.log(params);
|
console.log(params);
|
||||||
this.service.request(this.service.$api_goodsResourceAudit, params).subscribe(res => {
|
this.service.request(this.service.$api_goodsResourceAudit, params).subscribe(res => {
|
||||||
if (res === true) {
|
if (res === true) {
|
||||||
|
|||||||
@ -326,7 +326,10 @@ export class NetworkFreightComponent implements OnInit {
|
|||||||
'drawer'
|
'drawer'
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
this.ui3 = { '*': { spanLabelFixed: 120, grid: { span: 24 } } };
|
this.ui3 = {
|
||||||
|
'*': { spanLabelFixed: 120, grid: { span: 24 } },
|
||||||
|
'$taxClassificationVersion': { spanLabelFixed: 150, grid: { span: 24 } },
|
||||||
|
};
|
||||||
}
|
}
|
||||||
initSFTax() {
|
initSFTax() {
|
||||||
this.TaxSchema = {
|
this.TaxSchema = {
|
||||||
@ -574,7 +577,7 @@ export class NetworkFreightComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
// 新增
|
// 新增
|
||||||
creat(value?: any) {
|
creat(value?: any) {
|
||||||
console.log(value)
|
console.log(value);
|
||||||
this.router.navigate(['./new/'+ value?.id], { relativeTo: this.ar });
|
this.router.navigate(['./new/' + value?.id], { relativeTo: this.ar });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user