Merge pull request #5123 from solgenomics/topic/wishlist
[sgn.git] / mason / order / manage_catalog_usage_info.mas
blob0dda2d6c2968e1fe62ee857b9846ed513c61f433
1 <%args>
3 </%args>
5 <div class="modal fade" id="manage_catalog_usage_info_dialog" name="manage_catalog_usage_info_dialog" tabindex="-1" role="dialog" aria-labelledby="manageCatalogUsageInfoDialog">
6     <div class="modal-dialog modal-lg " role="document">
7         <div class="modal-content">
8             <div class="modal-header" style="text-align: center">
9                 <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
10                 <h4 class="modal-title" id="manageCatalogUsageInfoDialog">How to Add and Manage Catalog</h4>
11             </div>
12             <div class="modal-body">
13                 <div class="container-fluid">
14                     <p> Only users with vendor role can see Manage Catalog section. This section is hidden for other users</p>
15                     <hr class ="solid">
16                     <h4>
17                         How to Add Catalog Items:
18                     </h4>
19                     <p>You can choose one of the three methods for adding catalog item(s) based on the number of items and details.
20                     <li><b>Add Single Item</b>: If you would like to add only one item to the catalog, you can use "Add Single Item" dialog</li>
21                     <li><b>Add Multiple Items using List</b>: For adding many items with the same stock type and the same catalog info, using "Add Multiple Items Using List" dialog is the most convenient method.</li>
22                     <li><b>Upload Multiple Items</b>: For adding many items with different stock types and each item may have different catalog info, you can use "Upload Multiple Items" dialog.</li>
23                     <br>
24                     <hr class ="solid">
25                     <h4>
26                         Important Notes:
27                     </h4>
28                     <li>Item Name: This version of catalog allows only accesssion, seedlot, population, vector_construct stock type. If you would like to add more stock types, please contact us.</li>
29                     <li>Category: This field can be customized. Currently there are four categories for catalog items (released variety, pathogen assay, control, transgenic line), please contact us if you would like to add more categories.</li>
30                     <li>Contact Person Username: Each catalog item is associated with a vendor (please use username). When a user requests this item. The vendor is notified by email. Ordering details can be viewd on the Manage Orders page
31                     <li>When you add new items, 'Item Type', 'Material Type', 'Species' and 'Variety' fields will be filled automatically based on item stock type and associated info stored in the database.</li>
32                     <br>
33                     <hr class ="solid">
34                     <h4>
35                         Availability of Catalog Items:
36                     </h4>
37                     <p>Each item in the catalog has 'available' status by default. Vendors can change the status to 'unavailable' by using editing catalog info dialog on each Catalog Item Details page. Once the item becomes unavailable, the request/shopping cart link is hidden and users are not able to order the item. </p>
38                     <br>
39                 </div>
40                 <div class="modal-footer">
41                     <button id="close_target_numbers_dialog" type="button" class="btn btn-default" data-dismiss="modal">Close</button>
42                 </div>
43             </div>
44         </div>
45     </div>
46 </div>
48 <style>
50 hr.solid { border-top: 3px solid #bbb; }
52 </style>
54 <script>
56 jQuery(document).ready(function(){
58     jQuery('#manage_catalog_usage_info_button').click(function(){
59         jQuery('#manage_catalog_usage_info_dialog').modal("show");
60     });
62 });
64 </script>