Actions
Anomalie #13130
ferméLe numéro de Code barre du courrier ne s'affiche pas dans la bannette de courriers à qualifier
Début:
05/02/2020
Echéance:
Description
dans : src/frontend/app/list/basket-list.component.html
block ligne 128 :
<span *ngIf="!mobileMode" class="main-info-data" style="width:200px;text-align:center;cursor:pointer;" (click)="launch(defaultAction,row);">
<ng-container *ngIf="row.alt_identifier == lang.undefined && row.barcode != lang.undefined">
<span style="color: rgba(0,0,0,0.4);font-size: 90%;">
<i title="{{lang.barcode}}" class="fas fa-barcode"></i>
{{row.barcode}}
</span>
</ng-container>
<ng-container *ngIf="row.barcode == lang.undefined">
{{row.alt_identifier}}
</ng-container>
</span>
Les conditions se réfutent.
Il faudrait remplacer :
<ng-container *ngIf="row.barcode == lang.undefined">
par
<ng-container *ngIf="row.alt_identifier != lang.undefined ">
Actions