-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implemented typed forms in the edit load page
- Loading branch information
Showing
13 changed files
with
198 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 4 additions & 2 deletions
6
src/Client/Logistics.OfficeApp/src/app/core/models/load/createLoad.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
src/Client/Logistics.OfficeApp/src/app/core/models/load/updateLoad.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 4 additions & 2 deletions
6
...ogistics.OfficeApp/src/app/pages/load/components/search-truck/search-truck.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
<p-autoComplete [(ngModel)]="selectedTruck" | ||
styleClass="w-100" inputStyleClass="form-control" | ||
<p-autoComplete | ||
styleClass="w-100" | ||
inputStyleClass="form-control" | ||
placeholder="Type a driver name or truck number" | ||
field="driversName" | ||
[minLength]="2" | ||
[suggestions]="suggestedTrucks" | ||
[forceSelection]="true" | ||
[(ngModel)]="selectedTruck" | ||
(completeMethod)="searchTruck($event)" | ||
(onSelect)="changeSelectedTruck($event)"> | ||
</p-autoComplete> |
Oops, something went wrong.