-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlink.html
129 lines (106 loc) · 5.12 KB
/
link.html
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Link between ListArray</title>
<link rel="stylesheet" href="https://getbootstrap.com/docs/4.4/dist/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="style/fontawesome-free/css/all.min.css">
<link rel="stylesheet" href="style/style.css">
</head>
<body>
<div class="container container-lg">
<p>
<a class="btn btn-danger" href="index.html" role="button">
<i class="fas fa-chevron-left"></i> Back to List Array basic
</a>
</p>
<div class="row">
<a class="btn btn-success" href="script/bond.js" target="_blank" role="button">
<i class="fas fa-chevron-right"></i> View script
</a>
<div class="col">
<h2>TGFCAB</h2>
<table class="table table-hover" width="100%">
<thead>
<th class="table-primary">NUNOTA</th>
<th class="table-secondary">CODEMP</th>
<th class="table-secondary">CODVEND</th>
<th>VLRNOTA</th>
</thead>
<tbody id="TGFCAB"></tbody>
</table>
</div>
<div class="col">
<h2>TGFITE</h2>
<table class="table table-hover" width="100%">
<thead>
<th class="table-primary">NUNOTA</th>
<th>SEQUENCIA</th>
<th class="table-secondary">CODPROD</th>
</thead>
<tbody id="TGFITE"></tbody>
</table>
</div>
<div class="col">
<h2>TGFPRO</h2>
<table class="table table-hover" width="100%">
<thead>
<th class="table-primary">CODPROD</th>
<th>DESCRPROD</th>
</thead>
<tbody id="TGFPRO"></tbody>
</table>
</div>
<div class="container row">
<div class="col">
<h2>TGFCAB x TGFITE x TGFPRO | 1st way</h2>
<a class="btn btn-success" href="script/listBond.js" target="_blank" role="button">
<i class="fas fa-chevron-right"></i> View script
</a>
<h6 class="text-right" id="runtime1form"></h6>
<table class="table table-hover" width="100%">
<thead>
<th class="table-secondary">NUNOTA</th>
<th class="table-secondary">CODEMP</th>
<th class="table-secondary">CODVEND</th>
<th>VLRNOTA</th>
<th>SEQUENCIA</th>
<th class="table-secondary">CODPROD</th>
<th>DESCPROD</th>
</thead>
<tbody id="TGFCAB_TGFITE_TGFPRO"></tbody>
</table>
</div>
</div>
<div class="container row">
<div class="col">
<h2>TGFCAB x TGFITE x TGFPRO | 2nd way</h2>
<a class="btn btn-success" href="script/listBond2.js" target="_blank" role="button">
<i class="fas fa-chevron-right"></i> View script
</a>
<h6 class="text-right" id="runtime2form"></h6>
<table class="table table-hover" width="100%">
<thead>
<th class="table-secondary">NUNOTA</th>
<th class="table-secondary">CODEMP</th>
<th class="table-secondary">CODVEND</th>
<th>VLRNOTA</th>
<th>SEQUENCIA</th>
<th class="table-secondary">CODPROD</th>
<th>DESCPROD</th>
</thead>
<tbody id="TGFCAB_TGFITE_TGFPRO_2"></tbody>
</table>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://getbootstrap.com/docs/4.4/dist/js/bootstrap.bundle.min.js" integrity="sha384-6khuMg9gaYr5AxOqhkVIODVIvm9ynTT5J4V1cfthmT+emCG6yVmEZsRHdxlotUnm" crossorigin="anonymous"></script>
<script src="script/ListArray.js"></script>
<script src="script/bond.js"></script>
<script src="script/populate.js"></script>
<script src="script/listBond.js"></script>
<script src="script/listBond2.js"></script>
</body>
</html>