customer table with translated customerKind
This commit is contained in:
		@@ -29,8 +29,8 @@
 | 
				
			|||||||
                <th>
 | 
					                <th>
 | 
				
			||||||
                    <select class="form-control" [(ngModel)]="filter.criteria.kind" (change)="filter.trigger()">
 | 
					                    <select class="form-control" [(ngModel)]="filter.criteria.kind" (change)="filter.trigger()">
 | 
				
			||||||
                        <option value=""></option>
 | 
					                        <option value=""></option>
 | 
				
			||||||
                        <option>NATURAL</option>
 | 
					                        <option value="NATURAL" jhiTranslate="{{'hsadminNgApp.CustomerKind.NATURAL'}}">NATURAL</option>
 | 
				
			||||||
                        <option>LEGAL</option>
 | 
					                        <option value="LEGAL" jhiTranslate="{{'hsadminNgApp.CustomerKind.LEGAL'}}">LEGAL</option>
 | 
				
			||||||
                    </select>
 | 
					                    </select>
 | 
				
			||||||
                </th>
 | 
					                </th>
 | 
				
			||||||
                <th><button class="btn btn-primary float-left" (click)="filter.reset()">Reset Filter</button></th>
 | 
					                <th><button class="btn btn-primary float-left" (click)="filter.reset()">Reset Filter</button></th>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,8 +2,8 @@
 | 
				
			|||||||
    "hsadminNgApp": {
 | 
					    "hsadminNgApp": {
 | 
				
			||||||
        "CustomerKind": {
 | 
					        "CustomerKind": {
 | 
				
			||||||
            "null": "",
 | 
					            "null": "",
 | 
				
			||||||
            "NATURAL": "NATURAL",
 | 
					            "NATURAL": "natürliche Person",
 | 
				
			||||||
            "LEGAL": "LEGAL"
 | 
					            "LEGAL": "juristische Person"
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user