|
|
|
@ -50,8 +50,9 @@
|
|
|
|
|
<div class="form-group" ng-if="riskEvent.order_type == 1 || riskEvent.order_type == 5">
|
|
|
|
|
<label class="control-label col-sm-2">Sub Merchant ID</label>
|
|
|
|
|
<div class="col-sm-10">
|
|
|
|
|
<p class="form-control-static"
|
|
|
|
|
ng-bind="clientInfo.sub_merchant_id"></p>
|
|
|
|
|
<p class="form-control-static">
|
|
|
|
|
{{clientInfo.sub_merchant_id || riskEvent.sub_merchant_id}}
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
@ -258,6 +259,31 @@
|
|
|
|
|
<div class="panel-heading">RiskEvent Basic Information</div>
|
|
|
|
|
<div class="panel-body">
|
|
|
|
|
<div class="form-horizontal">
|
|
|
|
|
<div class="form-group"
|
|
|
|
|
ng-class="{'has-error':riskEventForm.order_type.$invalid && riskEventForm.order_type.$dirty}">
|
|
|
|
|
<label class="control-label col-sm-2"
|
|
|
|
|
for="order-type-input">Order Type
|
|
|
|
|
</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<select class="form-control"
|
|
|
|
|
name="order_type"
|
|
|
|
|
disabled
|
|
|
|
|
ng-model="riskEventEdit.order_type"
|
|
|
|
|
id="order-type-input"
|
|
|
|
|
required
|
|
|
|
|
ng-options="key as value for (key, value) in orderTypes">
|
|
|
|
|
<option value="">Please Choose</option>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<div ng-messages="riskEventForm.order_type.$error"
|
|
|
|
|
ng-if="riskEventForm.order_type.$dirty">
|
|
|
|
|
<p class="small text-danger"
|
|
|
|
|
ng-message="required">required field
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="form-group"
|
|
|
|
|
ng-if="riskEventEdit.order_type != 5"
|
|
|
|
|
ng-class="{'has-error':riskEventForm.client_moniker.$invalid && riskEventForm.client_moniker.$dirty}">
|
|
|
|
@ -289,30 +315,6 @@
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="form-group"
|
|
|
|
|
ng-class="{'has-error':riskEventForm.order_type.$invalid && riskEventForm.order_type.$dirty}">
|
|
|
|
|
<label class="control-label col-sm-2"
|
|
|
|
|
for="order-type-input">Order Type
|
|
|
|
|
</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<select class="form-control"
|
|
|
|
|
name="order_type"
|
|
|
|
|
ng-model="riskEventEdit.order_type"
|
|
|
|
|
id="order-type-input"
|
|
|
|
|
required
|
|
|
|
|
ng-options="key as value for (key, value) in orderTypes">
|
|
|
|
|
<option value="">Please Choose</option>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<div ng-messages="riskEventForm.order_type.$error"
|
|
|
|
|
ng-if="riskEventForm.order_type.$dirty">
|
|
|
|
|
<p class="small text-danger"
|
|
|
|
|
ng-message="required">required field
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="form-group"
|
|
|
|
|
ng-if="riskEventEdit.order_type != 4"
|
|
|
|
|
ng-class="{'has-error':riskEventForm.order_ids.$invalid && riskEventForm.order_ids.$dirty}">
|
|
|
|
|