Cannot have a pipe in an action expression ?
Perhaps this should work for you:
[ngModel]="tempProduct.unitprice | number : '1.2-2'" (ngModelChange)="tempProduct.unitprice = $event"
This way "two-way"-binding is split in property-binding and event binding which allows more complex expressions.