-
Notifications
You must be signed in to change notification settings - Fork 3
/
CustomerTransInquiry.php
181 lines (155 loc) · 5.84 KB
/
CustomerTransInquiry.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
<?php
/* $Revision: 1.17 $ */
/* $Id$*/
include('includes/session.inc');
$title = _('Customer Transactions Inquiry');
include('includes/header.inc');
echo '<p class="page_title_text"><img src="'.$rootpath.'/css/'.$theme.'/images/transactions.png" title="' . _('Transaction Inquiry') . '" alt="" />' .
' ' . _('Transaction Inquiry') . '</p>';
echo '<div class="page_help_text">' . _('Choose which type of transaction to report on.') . '</div><br />';
echo '<form action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '" method="post">';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
echo '<table cellpadding="2" class="selection"><tr>';
echo '<td>' . _('Type') . ':</td><td><select tabindex="1" name="TransType">';
$sql = "SELECT typeid, typename FROM systypes WHERE typeid >= 10 AND typeid <= 14";
$resultTypes = DB_query($sql,$db);
echo '<option value="All"> All' . '</option>';
while ($myrow=DB_fetch_array($resultTypes)){
if (isset($_POST['TransType'])){
if ($myrow['typeid'] == $_POST['TransType']){
echo '<option selected="True" value="' . $myrow['typeid'] . '">' . $myrow['typename'] . '</option>';
} else {
echo '<option value="' . $myrow['typeid'] . '">' . $myrow['typename'] . '</option>';
}
} else {
echo '<option value="' . $myrow['typeid'] . '">' . $myrow['typename'] . '</option>';
}
}
echo '</select></td>';
if (!isset($_POST['FromDate'])){
$_POST['FromDate']=Date($_SESSION['DefaultDateFormat'], mktime(0,0,0,Date('m'),1,Date('Y')));
}
if (!isset($_POST['ToDate'])){
$_POST['ToDate'] = Date($_SESSION['DefaultDateFormat']);
}
echo '<td>' . _('From') . ':</td><td><input tabindex="2" class="date" alt="'.$_SESSION['DefaultDateFormat'].'" type="text" name="FromDate" maxlength="10" size="11" value="' . $_POST['FromDate'] . '" /></td>';
echo '<td>' . _('To') . ':</td><td><input tabindex="3" class="date" alt="'.$_SESSION['DefaultDateFormat'].'" type="text" name="ToDate" maxlength="10" size="11" value="' . $_POST['ToDate'] . '" /></td>';
echo '</tr></table><br /><div class="centre"><button tabindex="4" type="submit" name="ShowResults">' . _('Show Transactions') . '</button>';
echo '</div><br /></form>';
if (isset($_POST['ShowResults']) and $_POST['TransType'] != ''){
$SQL_FromDate = FormatDateForSQL($_POST['FromDate']);
$SQL_ToDate = FormatDateForSQL($_POST['ToDate']);
$sql = "SELECT transno,
trandate,
debtortrans.debtorno,
branchcode,
reference,
invtext,
order_,
rate,
ovamount+ovgst+ovfreight+ovdiscount as totalamt,
currcode,
typename
FROM debtortrans
INNER JOIN debtorsmaster ON debtortrans.debtorno=debtorsmaster.debtorno
INNER JOIN systypes ON debtortrans.type = systypes.typeid
WHERE ";
$sql = $sql . "trandate >='" . $SQL_FromDate . "' AND trandate <= '" . $SQL_ToDate . "'";
if ($_POST['TransType']!='All') {
$sql .= " AND type = '" . $_POST['TransType']."'";
}
$sql .= " ORDER BY id";
$ErrMsg = _('The customer transactions for the selected criteria could not be retrieved because') . ' - ' . DB_error_msg($db);
$DbgMsg = _('The SQL that failed was');
$TransResult = DB_query($sql, $db,$ErrMsg,$DbgMsg);
echo '<table cellpadding="2" class="selection">';
$tableheader = '<tr>
<th>' . _('Type') . '</th>
<th>' . _('Number') . '</th>
<th>' . _('Date') . '</th>
<th>' . _('Customer') . '</th>
<th>' . _('Branch') . '</th>
<th>' . _('Reference') . '</th>
<th>' . _('Comments') . '</th>
<th>' . _('Order') . '</th>
<th>' . _('Ex Rate') . '</th>
<th>' . _('Amount') . '</th>
<th>' . _('Currency') . '</th></tr>';
echo $tableheader;
$RowCounter = 1;
$k = 0; //row colour counter
while ($myrow=DB_fetch_array($TransResult)) {
if ($k==1){
echo '<tr class="EvenTableRows">';
$k=0;
} else {
echo '<tr class="OddTableRows">';
$k++;
}
$format_base = '<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td width="200">%s</td>
<td>%s</td>
<td class="number">%s</td>
<td class="number">%s</td>
<td>%s</td>';
if ($_POST['TransType']==10){ /* invoices */
printf($format_base.'
<td><a target="_blank" href="%s/PrintCustTrans.php?FromTransNo=%s&InvOrCredit=Invoice"><img src="%s" title="' . _('Click to preview the invoice') . '" /></a></td>
</tr>',
$myrow['typename'],
$myrow['transno'],
ConvertSQLDate($myrow['trandate']),
$myrow['debtorno'],
$myrow['branchcode'],
$myrow['reference'],
$myrow['invtext'],
$myrow['order_'],
locale_number_format($myrow['rate'],4),
locale_money_format($myrow['totalamt'],$myrow['currcode']),
$myrow['currcode'],
$rootpath,
$myrow['transno'],
$rootpath.'/css/'.$theme.'/images/preview.gif');
} elseif ($_POST['TransType']==11){ /* credit notes */
printf($format_base.'
<td><a target="_blank" href="%s/PrintCustTrans.php?FromTransNo=%s&InvOrCredit=Credit"><img src="%s" title="' . _('Click to preview the credit') . '" /></a></td>
</tr>',
$myrow['typename'],
$myrow['transno'],
ConvertSQLDate($myrow['trandate']),
$myrow['debtorno'],
$myrow['branchcode'],
$myrow['reference'],
$myrow['invtext'],
$myrow['order_'],
locale_number_format($myrow['rate'],4),
locale_money_format($myrow['totalamt'],$myrow['currcode']),
$myrow['currcode'],
$rootpath,
$myrow['transno'],
$rootpath.'/css/'.$theme.'/images/preview.gif');
} else { /* otherwise */
printf($format_base . '</tr>',
$myrow['typename'],
$myrow['transno'],
ConvertSQLDate($myrow['trandate']),
$myrow['debtorno'],
$myrow['branchcode'],
$myrow['reference'],
$myrow['invtext'],
$myrow['order_'],
locale_number_format($myrow['rate'],4),
locale_money_format($myrow['totalamt'],$myrow['currcode']),
$myrow['currcode']);
}
}
//end of while loop
echo '</table>';
}
include('includes/footer.inc');
?>