|
@@ -95,6 +95,7 @@
|
|
|
<th nzWidth="5%">物料编码</th>
|
|
|
<th nzWidth="5%">物料名称</th>
|
|
|
<th nzWidth="5%">计划数量</th>
|
|
|
+ <th nzWidth="5%">剩余数量</th>
|
|
|
<th nzWidth="5%">派工数量</th>
|
|
|
<th nzWidth="5%">标准工时</th>
|
|
|
<th nzWidth="6%">计划开工时间</th>
|
|
@@ -107,7 +108,7 @@
|
|
|
<tr *ngFor="let data of editRowTable.data">
|
|
|
<td>{{data.sort}}</td>
|
|
|
<td>
|
|
|
- <nz-select [(ngModel)]="data.personnelIdU8" style="width: 100%;" nzShowSearch
|
|
|
+ <nz-select [(ngModel)]="data.personnelIdU8" style="width: 100px" nzShowSearch
|
|
|
nzAllowClear nzPlaceHolder="请选择" (ngModelChange)="personnelChange($event,data)">
|
|
|
<ng-container *ngFor="let proper of properList">
|
|
|
<nz-option [nzLabel]="proper.personnelName" [nzValue]="proper.personnelCode"> </nz-option>
|
|
@@ -119,10 +120,10 @@
|
|
|
</nz-date-picker>
|
|
|
</td>
|
|
|
<td>
|
|
|
- <nz-select [(ngModel)]="data.productionOrderNumberId" style="width: 100%;" nzShowSearch
|
|
|
+ <nz-select [(ngModel)]="data.productionOrderNumberId" style="width: 200px" nzShowSearch
|
|
|
nzAllowClear nzPlaceHolder="请选择" (ngModelChange)="productionOrderNumberChange($event,data)" [nzDropdownMatchSelectWidth]="false">
|
|
|
<ng-container *ngFor="let productionOrderNumber of productionOrderNumberList">
|
|
|
- <nz-option [nzLabel]="productionOrderNumber.mocode" [nzValue]="productionOrderNumber.moid"> </nz-option>
|
|
|
+ <nz-option nzLabel="{{productionOrderNumber.mocode}}--{{productionOrderNumber.cinvcode}}--{{productionOrderNumber.cinvname}}--{{productionOrderNumber.qty}}" [nzValue]="productionOrderNumber.moid"> </nz-option>
|
|
|
</ng-container>
|
|
|
</nz-select>
|
|
|
</td>
|
|
@@ -140,6 +141,9 @@
|
|
|
<td>
|
|
|
{{data.plannedQuantity}}
|
|
|
</td>
|
|
|
+ <td>
|
|
|
+ {{data.remainingQuantity}}
|
|
|
+ </td>
|
|
|
<td>
|
|
|
<nz-input-number [(ngModel)]="data.numberOfTasks" [nzMin]="0" [nzStep]="1" (ngModelChange)="numberOfTasksChange($event,data)">
|
|
|
</nz-input-number>
|