-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(admin-ui): Implement order modification flow
Relates to #314
- Loading branch information
1 parent
894f95b
commit d3e3a88
Showing
52 changed files
with
1,991 additions
and
388 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,51 @@ | ||
{ | ||
"generatedOn": "2020-12-04T16:28:55.124Z", | ||
"lastCommit": "8e5b1dd3b6d362fd9431d242e5e829419e6f3179", | ||
"generatedOn": "2020-12-21T15:26:51.662Z", | ||
"lastCommit": "3fda1021d033a38b878a6c6d8b5543bf0d554155", | ||
"translationStatus": { | ||
"cs": { | ||
"tokenCount": 713, | ||
"translatedCount": 685, | ||
"percentage": 96 | ||
"tokenCount": 743, | ||
"translatedCount": 687, | ||
"percentage": 92 | ||
}, | ||
"de": { | ||
"tokenCount": 713, | ||
"translatedCount": 594, | ||
"percentage": 83 | ||
"tokenCount": 743, | ||
"translatedCount": 596, | ||
"percentage": 80 | ||
}, | ||
"en": { | ||
"tokenCount": 713, | ||
"translatedCount": 713, | ||
"percentage": 100 | ||
"tokenCount": 743, | ||
"translatedCount": 739, | ||
"percentage": 99 | ||
}, | ||
"es": { | ||
"tokenCount": 713, | ||
"tokenCount": 743, | ||
"translatedCount": 455, | ||
"percentage": 64 | ||
"percentage": 61 | ||
}, | ||
"fr": { | ||
"tokenCount": 743, | ||
"translatedCount": 692, | ||
"percentage": 93 | ||
}, | ||
"pl": { | ||
"tokenCount": 713, | ||
"translatedCount": 549, | ||
"percentage": 77 | ||
"tokenCount": 743, | ||
"translatedCount": 551, | ||
"percentage": 74 | ||
}, | ||
"pt_BR": { | ||
"tokenCount": 713, | ||
"translatedCount": 640, | ||
"percentage": 90 | ||
"tokenCount": 743, | ||
"translatedCount": 642, | ||
"percentage": 86 | ||
}, | ||
"zh_Hans": { | ||
"tokenCount": 713, | ||
"tokenCount": 743, | ||
"translatedCount": 533, | ||
"percentage": 75 | ||
"percentage": 72 | ||
}, | ||
"zh_Hant": { | ||
"tokenCount": 713, | ||
"tokenCount": 743, | ||
"translatedCount": 533, | ||
"percentage": 75 | ||
"percentage": 72 | ||
} | ||
} | ||
} |
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
67 changes: 67 additions & 0 deletions
67
...ages/admin-ui/src/lib/core/src/shared/components/address-form/address-form.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 |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<form [formGroup]="formGroup"> | ||
<clr-input-container> | ||
<label>{{ 'customer.full-name' | translate }}</label> | ||
<input formControlName="fullName" type="text" clrInput /> | ||
</clr-input-container> | ||
|
||
<div class="clr-row"> | ||
<div class="clr-col-md-4"> | ||
<clr-input-container> | ||
<label>{{ 'customer.street-line-1' | translate }}</label> | ||
<input formControlName="streetLine1" type="text" clrInput /> | ||
</clr-input-container> | ||
</div> | ||
<div class="clr-col-md-4"> | ||
<clr-input-container> | ||
<label>{{ 'customer.street-line-2' | translate }}</label> | ||
<input formControlName="streetLine2" type="text" clrInput /> | ||
</clr-input-container> | ||
</div> | ||
</div> | ||
<div class="clr-row"> | ||
<div class="clr-col-md-4"> | ||
<clr-input-container> | ||
<label>{{ 'customer.city' | translate }}</label> | ||
<input formControlName="city" type="text" clrInput /> | ||
</clr-input-container> | ||
</div> | ||
<div class="clr-col-md-4"> | ||
<clr-input-container> | ||
<label>{{ 'customer.province' | translate }}</label> | ||
<input formControlName="province" type="text" clrInput /> | ||
</clr-input-container> | ||
</div> | ||
</div> | ||
<div class="clr-row"> | ||
<div class="clr-col-md-4"> | ||
<clr-input-container> | ||
<label>{{ 'customer.postal-code' | translate }}</label> | ||
<input formControlName="postalCode" type="text" clrInput /> | ||
</clr-input-container> | ||
</div> | ||
<div class="clr-col-md-4"> | ||
<clr-input-container> | ||
<label>{{ 'customer.country' | translate }}</label> | ||
<select name="countryCode" formControlName="countryCode" clrInput clrSelect> | ||
<option *ngFor="let country of availableCountries" [value]="country.code"> | ||
{{ country.name }} | ||
</option> | ||
</select> | ||
</clr-input-container> | ||
</div> | ||
</div> | ||
<clr-input-container> | ||
<label>{{ 'customer.phone-number' | translate }}</label> | ||
<input formControlName="phoneNumber" type="text" clrInput /> | ||
</clr-input-container> | ||
<section formGroupName="customFields" *ngIf="formGroup.get('customFields') as customFieldsGroup"> | ||
<label>{{ 'common.custom-fields' | translate }}</label> | ||
<ng-container *ngFor="let customField of customFields"> | ||
<vdr-custom-field-control | ||
entityName="Facet" | ||
[customFieldsFormGroup]="customFieldsGroup" | ||
[customField]="customField" | ||
></vdr-custom-field-control> | ||
</ng-container> | ||
</section> | ||
</form> |
Empty file.
Oops, something went wrong.