/var/www/hkosl.com/oneMotorChunHing_delete20240201/html/paymenttermadd.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
84
85
86
87
88
89
90
91
92
93
94
95
<?
require("inc/configure.php");
require(
"inc/global.php");
require(
"inc/checklogin.php");
if (
$logged_in == 0) {
    
//echo 'Not logged in. <a href="login.php">Login</a>';
    
header('Window-target: _parent');
    
header('Location: login.php');
    exit();
}
if (
checkObject(6) <> 1){
    die(
"Unauthorized Access");
    exit();
}
?>
<?
$paymenttermid    
$_POST['paymenttermid'];
$paymentterm    =  htmlspecialchars($_POST['paymentterm'], ENT_QUOTES);
$days            $_POST['days'];
$status            $_POST['status'];
$creationdate    date("YmdGis");


if (
$paymenttermid == "")
{
    
$sql "select * from SYS_PAYMENTTERM where paymentterm = '$paymentterm'";
    
$result mysql_query($sql);
    if (
$row mysql_fetch_array($result,MYSQL_ASSOC))
    {
        
$msg "<?=paymentterm?> duplicate!";
    }
    else
    {
        
//**addnew
        
$sql "select max(paymenttermid) as maxpaymenttermid from SYS_PAYMENTTERM";
        
$result mysql_query($sql);
        if (
$row mysql_fetch_array($result,MYSQL_ASSOC))
        {
            if (
strlen($row{'maxpaymenttermid'}) == 0)
            {
                
$paymenttermid 1001;
            }
            else
            {
                
$paymenttermid $row{'maxpaymenttermid'} + 1;
            }
        }
        else
        {
            
$paymenttermid 1001;
        }

        
$sql =    "insert into SYS_PAYMENTTERM 
                (paymenttermid, paymentterm, days, status, creationdate, creationby)
                values(
$paymenttermid, '$paymentterm', $days$status, '$creationdate', '$creationby')";

        
$result mysql_query($sql);

        if (!
$result) {
            die(
'Invalid query: ' mysql_error());
        }

        
$msg "Created!";
    }
}
else
{
    
$sql "select * from SYS_PAYMENTTERM where paymentterm = '$paymentterm' and paymenttermid <> $paymenttermid";
    
$result mysql_query($sql);
    if (
$row mysql_fetch_array($result,MYSQL_ASSOC))
    {
        
$msg "<?=paymentterm?> duplicate!";
    }
    else
    {
        
//**update
        
$sql =    "update SYS_PAYMENTTERM 
                set paymentterm    = '
$paymentterm'
                , days            = 
$days
                , status        = 
$status
                , updateddate    = '
$creationdate'
                , updatedby        = '
$creationby'
                where paymenttermid = 
$paymenttermid
                "
;
                echo 
$sql;
        
$result mysql_query($sql);

        if (!
$result) {
            die(
'Invalid query: ' mysql_error());
        }
        
$msg "Updated!";
    }
}
header("Location: paymentterm.php?msg=$msg");
?>