Subversion Repository Public Repository

ChrisCompleteCodeTrunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
@using ActionTireCo.Crm.Model.View
@model List<InventoryModel>
<div class="container">
    <div class="row">
        <div class="col-10">
            <div class="form-group">
                <input type="text" class="form-control" id="buttonInventorySearch" placeholder="Tire Size" />
            </div>
        </div>
        <div class="col-2">
            <div class="form-group">
                <button type="button" class="btn form-control btn-primary" id="buttonInventorySearchButton">Search</button>
            </div>
        </div>
    </div>
    <div class="row">
        <div class="col-12">
            <table id="inventory" class="table table-striped table-bordered" style="width:100%">
                <thead>
                    <tr>
                        <td>Item</td>
                        <td>Store Number</td>
                        <td>Store Name</td>
                        <td>Size</td>
                        <td>Description</td>
                        <td>Price</td>
                        <td>Cost</td>
                        <td>Quantity</td>
                    </tr>
                </thead>
                <tbody>
                    @{ if (Model != null)
                        {
                            foreach (var inventory in @Model)
                            {
                                <tr>
                                    <td>
                                        @inventory.Item
                                    </td>
                                    <td>
                                        @inventory.StoreNumber
                                    </td>
                                    <td>
                                        @inventory.StoreName
                                    </td>
                                    <td>
                                        @inventory.Size
                                    </td>
                                    <td>
                                        @inventory.Description
                                    </td>
                                    <td>
                                        @inventory.Price
                                    </td>
                                    <td>
                                        @inventory.Cost
                                    </td>
                                    <td>
                                        @inventory.Quantity
                                    </td>
                                </tr>
                            }
                        }
                    }
                </tbody>
            </table>
        </div>
    </div>
</div>

Commits for ChrisCompleteCodeTrunk/ActionTireCo/ActionTireCo.Crm/obj/Release/Package/PackageTmp/Views/Inventory/Search.cshtml

Diff revisions: vs.
Revision Author Commited Message
1 BBDSCHRIS picture BBDSCHRIS Wed 22 Aug, 2018 20:08:03 +0000