/var/www/hkosl.com/oneMotorChunHing_delete20240201/html/outstanding_20120619.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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<?
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(8) <> 1){
    die(
"Unauthorized Access");
    exit();
}
?>
<html>
<head>
<title><?=$systitle?></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="main.css" type="text/css">

<link rel="stylesheet" href="_common/css/main.css" type="text/css" media="all">
<link href="sortableTable.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="_common/js/mootools.js"></script>
<script type="text/javascript" src="sortableTable.js"></script>

<script type="text/javascript" src="calendarDateInput.js"></script>
<!--popup start-->
<script language="javascript">
function popups(lnk)
{
    window.open(lnk,"Popup","height=400,width=550,scrollbars=yes")
}
</script>
<!--popup end-->
</head>
<body bgcolor="#FFFFFF" leftmargin="10" topmargin="10" marginwidth="0" marginheight="0">
<p class="pageheader"><?=outstanding?></p>
<p class="contentmsg"><?=$msg?></p>
<table width="1280"><tr><td>
<div id="example">
    <div class="tableFilter">
        <form id="tableFilter" onsubmit="myTable.filter(this.id); return false;">Filter: 
            <select id="column">
                <option value="2">Invoice no</option>
                <option value="12"><?=custno?></option>
                <option value="13"><?=licno?></option>
                <option value="14"><?=chassisno?></option>
                <option value="15"><?=custname?></option>
            </select>
            <input type="text" id="keyword" />
            <input type="submit" value="Submit" />
            <input type="reset" value="Clear" />
        </form>
    </div>
    <table id="myTable" cellpadding="0" cellpadding="0">
        <thead>
            <th axis="string"></th>
            <th axis="date">Date</th>
            <th axis="number"><?=invoiceno?></th>
<!--            <th axis="number"><?=custno?></th>
            <th axis="String"><?=custname?> (Eng)</th>-->
            <th axis="number"><?=amount?></th>
            <th axis="number">Paid</th>
            <th axis="number">Over 30 day </th>
            <th axis="number">Over 14 days</th>
            <th axis="number">Over due</th>
            <th axis="number">14 days</th>
            <th axis="number">30 days</th>
            <th axis="number">45 days</th>
            <th axis="number">60 days</th>
            <th axis="number"><?=custno?></th><!-- -->
            <th axis="string"><?=licno?></th>
            <th axis="string"><?=chassisno?></th>
            <th axis="string"><?=custname?></th>
        </thead>
    <tbody>
<?
        $sql 
"delete from TMP_RECEIPT";
        
$result mysql_query($sql);
        if (!
$result) {
            die(
'Invalid query: ' mysql_error());
        }

        
$sql "
        insert into TMP_RECEIPT
        (
        invoiceno,orderdate,amount, days
        )
        select a.invoiceno, orderdate, sum((qty*price)-b.discount)-b.discount as amount
        , datediff(date_add(orderdate,INTERVAL days DAY),CURDATE())
        from OM_INVOICE_HDR a
        , OM_INVOICE_DTL b
        , SYS_PAYMENTTERM c
        where a.invoiceno = b.invoiceno
        and a.paymenttermid = c.paymenttermid
        and a.status <> 3
        group by a.invoiceno, orderdate, b.discount        
        "
;
        
$result mysql_query($sql);
        if (!
$result) {
            die(
'Invalid query: ' mysql_error());
        }

        
$sql "
        UPDATE TMP_RECEIPT p, (select invoiceno, sum(amount) as amount 
                                from AR_RECEIPT_DTL group by invoiceno) pp 
        SET p.paid = pp.amount
        WHERE p.invoiceno = pp.invoiceno"
;
        
$result mysql_query($sql);
        if (!
$result) {
            die(
'Invalid query: ' mysql_error());
        }
        
        
        
$sql "
        UPDATE TMP_RECEIPT p, (select invoiceno, sum(b.amount) as amt 
                                from OM_INVOICE_DTL a, OM_RETURN_DTL b where a.id = b.invoicedtlid group by a.invoiceno) pp 
        SET p.paid = ifnull(p.paid,0) + pp.amt
        WHERE p.invoiceno = pp.invoiceno"
;
        
$result mysql_query($sql);
        if (!
$result) {
            die(
'Invalid query: ' mysql_error());
        }
        

        
$sql "select a.invoiceno, custno, custnameeng, telno, b.orderdate, amount, paid, b.licno, b.chassisno
        , case when days <= -30 then sum(amount-ifnull(paid,0)) else 0 end as dayn30
        , case when days > -30 and days <= -14 then sum(amount-ifnull(paid,0)) else 0 end as dayn14
        , case when days > -14 and days <= 0 then sum(amount-ifnull(paid,0)) else 0 end as day0
        , case when days > 0 and days <= 14 then sum(amount-ifnull(paid,0)) else 0 end as day14
        , case when days > 14 and days <= 30 then sum(amount-ifnull(paid,0)) else 0 end as day30
        , case when days > 30 and days <= 45 then sum(amount-ifnull(paid,0)) else 0 end as day45
        , case when days > 45 then sum(amount-ifnull(paid,0)) else 0 end as day60
        from TMP_RECEIPT a
        , OM_INVOICE_HDR b
        where a.invoiceno = b.invoiceno
        and b.status <> 3
        group by a.invoiceno, a.orderdate, custno, custnameeng, telno
        order by invoiceno
        "
;
        
$day0 0.0;
        
$result mysql_query($sql);
        
$n 1;
        while (
$row mysql_fetch_array($result,MYSQL_ASSOC))
        {
?>
        <tr id="<?=$row{'custno'}?> <?=$row{'custnameeng'}?>">
            <td><img src='images/button-arrow1.gif'></td>
            <td><?=$row{'orderdate'}?></td>
            <td><?=$row{'invoiceno'}?></td>
<!--            <td><?=$row{'custno'}?></td>
            <td><?=$row{'custnameeng'}?></td>-->
            <td class="rightAlign"><?=number_format($row{'amount'}, 2)?></td>
            <td class="rightAlign"><?=number_format($row{'paid'}, 2)?></td>
            <td class="rightAlign"><?=number_format($row{'dayn30'}, 2)?></td>
            <td class="rightAlign"><?=number_format($row{'dayn14'}, 2)?></td>
            <td class="rightAlign"><?=number_format($row{'day0'}, 2)?></td>
            <td class="rightAlign"><?=number_format($row{'day14'}, 2)?></td>
            <td class="rightAlign"><?=number_format($row{'day30'}, 2)?></td>
            <td class="rightAlign"><?=number_format($row{'day45'}, 2)?></td>
            <td class="rightAlign"><?=number_format($row{'day60'}, 2)?></td>
            <td align="center"><?php echo $row['custno']; ?></td>
            <td align="center"><?php echo $row['licno']; ?></td>
            <td align="center"><?php echo $row['chassisno']; ?></td>
            <td align="center"><?php echo $row['custnameeng']; ?></td>
        </tr>
<?
        $dayn30 
$dayn30 $row{'dayn30'};
        
$dayn14 $dayn14 $row{'dayn14'};
        
$day0 $day0 $row{'day0'};
        
$day14 $day14 $row{'day14'};
        
$day30 $day30 $row{'day30'};
        
$day45 $day45 $row{'day45'};
        
$day60 $day60 $row{'day60'};
        
$n++;
        }
?>
        </tbody>
            <tfoot>
            <tr>
                <td colspan="5">Total: <?=number_format($dayn30+$dayn14+$day0+$day14+$day30+$day45+$day60,2)?></td>
                <td class="rightAlign"><?=number_format($dayn302);?></td>
                <td class="rightAlign"><?=number_format($dayn142);?></td>
                <td class="rightAlign"><?=number_format($day02);?></td>
                <td class="rightAlign"><?=number_format($day142);?></td>
                <td class="rightAlign"><?=number_format($day302);?></td>
                <td class="rightAlign"><?=number_format($day452);?></td>
                <td class="rightAlign"><?=number_format($day602);?></td>
            </tr>
        </tfoot>
      </table>

    
    <script type="text/javascript">
        var myTable = {};
        window.addEvent('domready', function(){
            myTable = new sortableTable('myTable', {overCls: 'over', onClick: function(){
                alert(this.id)
                    }});
        });
    </script>
    </div>
    
</div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-3333085-1");
pageTracker._initData();
pageTracker._trackPageview();
</script>
</td></tr></table>
&nbsp;<br />
</body>
</html>