-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.php
60 lines (52 loc) · 1.27 KB
/
test.php
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
<?php
require_once "autoload.php";
$p = new WebPage('Prestation Test');
$p->appendJsUrl("js/acteOuProduit.js");
$p->appendJsUrl("js/ajaxrequest.js");
/*******Actes ou produits*********/
$req = MyPDO::getInstance()->prepare(<<<SQL
SELECT *
FROM ActeOuProduit
SQL);
$req->execute();
$req->setFetchMode(PDO::FETCH_CLASS, ActeOuProduit::class);
$actesOuProduits = $req->fetchAll();
if(!$actesOuProduits)
{
throw new InvalidArgumentException("No ActesOuProduit.");
}
$html = <<< HTML
<label>
<select id="acteOuProduit" size="5">
<option>Actes ou Produits...</option>
HTML;
foreach ($actesOuProduits as $acteOuProduit) {
$html .= "<option value='{$acteOuProduit->getId()}'>{$acteOuProduit->getName()}</option>\n";
}
$html .= "</select>";
/*******Quantité*********/
$html .= <<< HTML
<label>
<select id="quantité" size="5">
<option>Quantité...</option>
</select>
</label>
HTML;
/*******PU.TTC*********/
$html .= <<< HTML
<label>
<select id="PU_TTC" size="5">
<option>PU.TTC...</option>
</select>
</label>
HTML;
/*******Total_TTC*********/
$html .= <<< HTML
<label>
<select id="Total_TTC" size="5">
<option>Total TTC...</option>
</select>
</label>
HTML;
$p->appendContent($html);
echo $p->toHTML();