5c537df9e297d1ff593aae734a5913911b28546f
[evergreen/pines.git] /
1 <ng-template #dialogContent>
2   <div class="modal-header bg-info">
3     <h3 *ngIf="mode === 'create'" class="modal-title" i18n>New Distribution Formula</h3>
4     <h3 *ngIf="mode === 'update'" class="modal-title" i18n>Modify Distribution Formula</h3>
5     <h3 *ngIf="mode === 'clone'" class="modal-title" i18n>Clone Distribution Formula (from {{clonedLabel}})</h3>
6     <button type="button" class="close"
7       i18n-aria-label aria-label="Close" (click)="close()">
8       <span aria-hidden="true">&times;</span>
9     </button>
10   </div>
11   <div class="modal-body">
12     <form #myForm="ngForm" role="form" class="form-validated">
13       <div class="form-group row mt-2" *ngIf="formula">
14         <label for="formula-name" class="col-sm-1 col-form-label" i18n>Formula Name
15         </label>
16         <div class="col-sm-2">
17           <input class="form-control" type="text" id="formula-name"
18             required="required" pattern="[\s\S]*\S[\s\S]*"
19             [ngModel]="formula.name()" name="name"
20             (ngModelChange)="formula.name($event)">
21         </div>
22         <label for="formula-owner" class="col-sm-1 col-form-owner" i18n>Formula Owner
23         </label>
24         <div class="col-sm-2">
25           <eg-org-select
26             placeholder="Owner..."
27             i18n-placeholder
28             domId="formula-owner"
29             [applyOrgId]="formula.owner()"
30             [limitPerms]="['ADMIN_ACQ_DISTRIB_FORMULA']"
31             (onChange)="formula.owner($event); myForm.form.markAsDirty()">
32           </eg-org-select>
33         </div>
34       </div>
35       <div class="row mt-2">
36         <div class="col-sm-1"></div>
37         <div class="col-sm-1" i18n>Owning Library</div>
38         <div class="col-sm-2" i18n>Shelving Location</div>
39         <div class="col-sm-2" i18n>Fund</div>
40         <div class="col-sm-2" i18n>Circ Modifier</div>
41         <div class="col-sm-1" i18n>Collection Code</div>
42         <div class="col-sm-1" i18n>Item Count</div>
43         <div class="col-sm-1"></div>
44       </div>
45       <div class="form-group row mt-2" *ngFor="let entry of formula?.entries(); index as idx; last as isLast; first as isFirst; count as count">
46         <div class="col-sm-1">
47           <button *ngIf="!isLast" class="btn btn-sm material-icon-button" type="button"
48             (click)="removeRow(idx)"
49             i18n-title title="Remove Entry"><span class="sr-only">Remove Entry</span>
50             <span class="material-icons" aria-hidden="true">delete</span>
51           </button>
52         </div>
53         <div class="col-sm-1">
54           <eg-org-select
55             placeholder="Owning Library..."
56             i18n-placeholder
57             domId="entry-owning-lib-{{idx}}"
58             [applyOrgId]="entry.owning_lib()"
59             [limitPerms]="['ADMIN_ACQ_DISTRIB_FORMULA']"
60             (onChange)="entry.owning_lib($event); myForm.form.markAsDirty()">
61           </eg-org-select>
62         </div>
63         <div class="col-sm-2">
64           <eg-item-location-select
65             permFilter="ADMIN_ACQ_DISTRIB_FORMULA"
66             [ngModel]="entry.location()" name="location-{{idx}}"
67             (ngModelChange)="entry.location($event)"
68             (valueChange)="myForm.form.markAsDirty()">
69           </eg-item-location-select>
70         </div>
71         <div class="col-sm-2">
72           <eg-combobox i18n-placeholder placeholder="Fund..." idlClass="acqf"
73             [idlBaseQuery]="{'active':{'=':'t'}}"
74             id="entry-fund-{{idx}}"
75             [asyncSupportsEmptyTermClick]="true"
76             [selectedId]="entry.fund()"
77             name="fund-{{idx}}"
78             (onChange)="entry.fund($event.id)">
79           </eg-combobox>
80         </div>
81         <div class="col-sm-2">
82           <eg-combobox i18n-placeholder placeholder="Circ Modifier..." idlClass="ccm"
83             id="entry-circ_modifier-{{idx}}"
84             [asyncSupportsEmptyTermClick]="true"
85             [selectedId]="entry.circ_modifier()"
86             name="circ_modifier-{{idx}}"
87             (onChange)="entry.circ_modifier($event.id)">
88           </eg-combobox>
89         </div>
90         <div class="col-sm-1">
91           <input class="form-control" type="text" i18n-placeholder placeholder="Collection Code..."
92             id="entry-collection-code-{{idx}}" pattern="[\s\S]*\S[\s\S]*"
93             [ngModel]="entry.collection_code()" name="collection_code-{{idx}}"
94             (ngModelChange)="entry.collection_code($event)">
95         </div>
96         <div class="col-sm-1">
97           <input class="form-control" type="number" min="0" pattern="^[0-9]+$"
98             [ngModel]="entry.item_count()" name="item_count-{{idx}}"
99             (ngModelChange)="entry.item_count($event)">
100         </div>
101         <div class="col-sm-1">
102           <button *ngIf="!isLast" class="btn btn-sm material-icon-button" type="button"
103             [disabled]="isFirst"
104             (click)="moveUp(idx)"
105             i18n-title title="Move Up"><span class="sr-only">Move Up</span>
106             <span class="material-icons" aria-hidden="true">keyboard_arrow_up</span>
107           </button>
108           <button *ngIf="!isLast" class="btn btn-sm material-icon-button" type="button"
109             (click)="moveDown(idx)"
110             [disabled]="count < 3 || idx === count - 2"
111             i18n-title title="Move Down"><span class="sr-only">Move Down</span>
112             <span class="material-icons" aria-hidden="true">keyboard_arrow_down</span>
113           </button>
114           <button *ngIf="isLast" type="button" class="btn btn-info" (click)="addRow()" i18n>Add</button>
115         </div>
116       </div>
117     </form>
118   </div>
119   <div class="modal-footer">
120     <button type="button" class="btn btn-info" [disabled]="!myForm?.valid || !(myForm?.dirty)"
121       (click)="save()" i18n>Save</button>
122     <button type="button" class="btn btn-warning"
123       (click)="close()" i18n>Cancel</button>
124   </div>
125 </ng-template>
126
127 <ng-template #defaultCloneLabelTmpl i18n>{{clonedLabel}} (clone)</ng-template>
128 <eg-string #defaultCloneLabel [template]="defaultCloneLabelTmpl"></eg-string>