-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathform_lot.php
executable file
·83 lines (81 loc) · 2.15 KB
/
form_lot.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php
/*
* Factux le facturier libre
* Copyright (C) 2003-2005 Guy Hendrickx, 2017 Thomas Ingles
*
* Licensed under the terms of the GNU General Public License:
* http://opensource.org/licenses/GPL-3.0
*
* For further information visit:
* http://factux.free.fr
*
* File Name: form_lot.php
* Formulaire de creation des lots
*
* * * Version: 5.0.0
* * * * Modified: 07/10/2016
*
* File Authors:
* Guy Hendrickx
*.
*/
include_once("include/headers.php");
include_once("include/finhead.php");
?>
<table width="760" border="0" class="page" align="center">
<tr>
<td class="page" align="center">
<?php include_once("include/head.php"); ?>
<?php
if ($user_com == 'n') {
echo"<h1>$lang_commande_droit</h1>";
include_once("include/bas.php");
exit;
}
?>
<form action="insert_lot.php" method="post" name="lot" id="lot" >
<table class="page boiteaction">
<caption><?php echo "$lang_cr_lot"; ?></caption>
<tr>
<th colspan="3" align="center"><?php echo $lang_produit; ?></th>
</tr>
<tr>
<td class="texte1"></td>
<td class="texte1"><input name="prod" type="text" id="prod" size="27" maxlength="25"></td>
<td class="texte1"></td>
</tr>
<tr>
<th><?php echo "$lang_ingred"; ?></th>
<th><?php echo"$lang_fournisseur"; ?></th>
<th><?php echo "$lang_lot_four"; ?></th>
</tr>
<?php for ($i=1;$i<13;$i++){ ?>
<tr class='<?php echo couleur_alternee (); ?>'>
<td><input name="ing_<?php echo $i; ?>" type="text" size="27" maxlength="20"></td>
<td><input name="four_<?php echo $i; ?>" type="text" size="27" maxlength="15"></td>
<td><input name="lot_four_<?php echo $i; ?>" type="text" size="27" maxlength="20"></td>
</tr>
<?php } ?>
<tr>
<td class="submit" colspan="3">
<input type="submit" name="Submit" value="<?php echo $lang_envoyer; ?>">
<input name="reset" type="reset" id="reset" value="<?php echo $lang_effacer; ?>">
</td>
</tr>
</table>
</form>
</td>
</tr>
<tr>
<td>
<?php
$aide='lots';
include("help.php");
include_once("include/bas.php");
?>
</td>
</tr>
</table>
</body>
</html>