Anda di halaman 1dari 27

M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

Scribd
Upload a Document
Search Books, Presentations, Business, Academics...

Explore

Documents
Books - Fiction
Books - Non-fiction
Health & Medicine
Brochures/Catalogs
Government Docs
How-To Guides/Manuals
Magazines/Newspapers
Recipes/Menus
School Work
+ all categories

Featured
Recent

People
Authors
Students
Researchers
Publishers
Government & Nonprofits
Businesses
Musicians
Artists & Designers
Teachers
+ all categories

Most Followed
Popular

Nolongerchosen Nolo...

Account
Home
My Documents
My Collections
My Shelf
View Public Profile
Messages
Notifications
Settings
Help

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 1 of 27
M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

Log Out

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 2 of 27
M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 3 of 27
M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 4 of 27
M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 5 of 27
M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 6 of 27
M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 7 of 27
M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 8 of 27
M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 9 of 27
M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 10 of 27
M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 11 of 27
M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 12 of 27
M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 13 of 27
M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 14 of 27
M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 15 of 27
M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 16 of 27
M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 17 of 27
M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 18 of 27
M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 19 of 27
M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 20 of 27
M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 21 of 27
M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

$sql_topay = "SELECT account, o.od_id, SUM(pd_price * od_qty) + od_shipping_cost AS topay


FROM inbox, tbl_order o, tbl_order_item oi, tbl_product p
WHERE account = od_payment_phone and oi.pd_id = p.pd_id and o.od_id = oi.od_id
AND od_status = 'new' and processed='0'
GROUP BY o.od_id ORDER BY o.od_id DESC";
$result_topay = dbQuery($sql_topay);
if (dbNumRows($result_topay) > 0) {
$i = 0;
$balance = 0;
while($row = dbFetchAssoc($result_topay)) {
extract($row);
//Query to load received unprocessed amounts
$sql_rcvd = "SELECT SUM(amount) AS rcvd
FROM inbox
WHERE account = ".$account;
$result_rcvd = dbQuery($sql_rcvd);
$row_rcvd = dbFetchAssoc($result_rcvd);
extract($row_rcvd);
//Query to change status of paid amounts
$od_id_change = $od_id;
$sql4 = "UPDATE tbl_order SET od_status = 'Paid'
WHERE od_id=".$od_id_change;
//Query to load status change if balance cleared
$balance = $topay $rcvd;
if ($balance <= 0) { $result4 = dbquery($sql4);}
?>
<tr class="row">
<td width="60" align="center"><?php echo $account; ?></td>
<td width="60" align="right"><?php echo displayAmount($topay); ?></td>
<td width="60" align="right"><?php echo displayAmount($rcvd); ?></td>
<td width="60" align="right"><?php echo displayAmount($balance); ?></td>
<td width="60" align="right"><?php echo $od_id; ?></td>
</tr>
<?php
$i += 1;
}//endwhile

28

}//endif
?>
ORDER AMOUNT FUNCTION /var/www/mpesashop//library/checkoutfunctions

function getOrderAmount($orderId)
{
$orderAmount = 0;

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 22 of 27
M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

$sql = "SELECT SUM(pd_price * od_qty)


FROM tbl_order_item oi, tbl_product p
WHERE oi.pd_id = p.pd_id and oi.od_id = $orderId
UNION
SELECT od_shipping_cost
FROM tbl_order
WHERE od_id = $orderId";
$result = dbQuery($sql);
if (dbNumRows($result) == 2) {
$row = dbFetchRow($result);
$totalPurchase = $row[0];
$row = dbFetchRow($result);
$shippingCost = $row[0];
$orderAmount = $totalPurchase + $shippingCost;
}
return $orderAmount;
}

?>

/ 30
29

social! Post a message on your social networks to let others know what you're reading. Select the sites below

REFERENCES
[1] Paul Dubois, MySQL Developers Library 4th Edition, Copyright © 2009 by Pearson Education, Inc.
ISBN13: 9780672329388
[2] Peter Gulutzan, MySQL 5.0 Triggers : MySQL 5.0 New Features Series – Part 2 . A MySQL®
Technical White Paper , March, 2005 , Copyright © 2005, MySQL AB
ment edit preferences
[3] Michele E. Davis and Jon A. Phillips, Learning PHP and MySQL 2nd Edition, Copyright © 2007,
ument for Free 2006 Michele E. Davis and Jon A. Phillips. All rights reserved. Printed in the United States of America.
Published by O’Reilly Media, Inc., 1005 Gravenstein Highway North, Sebastopol, CA 95472.
[4] Wilfred Mworia, Mobile Application Development Platforms: The Options , Strathmore Mobile
BootCamp 2009 . ~ http://www.slideshare.net/wmworia
[5] Paul Leishman, Research Paper, GSMA: Mobile Money for the Unbanked : What Makes a
Successful Mobile Money Implementation? Learnings from MPESA in Kenya and Tanzania . ~
http://www.gsmworld.com/mmu
[6] Safaricom Resource Centre – Press Releases 20072010 ~ http://www.safaricom.co.ke

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 23 of 27
M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

30

M-Pesa Transaction Logging / Shopping Cart


Download this Document for FreePrintMobileCollectionsReport Document
This is a private document.

Info and Rating


work online
mpesa work
mpesa database
model
administration website
works diagrams
voting
online payment
(more tags)
edObie
Ads by Google

Sign Up for an Ad-Free Scribd


Remove all ads.
Never see ads on Scribd again.

No Thanks

Share & Embed

Related Documents

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 24 of 27
M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

PreviousNext

1. 12
p.

19
p.

26
p.

2. 3 p.

12
p.

2 p.

3.
48 p.

5 p.

41
p.

More from this user


PreviousNext

1.
30 p.

Recent Readcasters

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 25 of 27
M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

Add a Comment

Submit
Upload a Document

About
Press
Blog
Partners
Branded Reader
Web Stuff
Scribd Store

Support
FAQ
Developers / API
Jobs
Terms - General
Copyright
Privacy

Follow Us!

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 26 of 27
M-Pesa Transaction Logging / Shopping Cart 10/11/10 3:03 PM

scribd.com/scribd
twitter.com/scribd
facebook.com/scribd

The Scribd Archive


This document was uploaded by someone just like you and is now part of The Scribd Archive*. Give back
to the community and gain 24 hours of download access by uploading something of your own.

Subscribe to The Scribd Archive and download as many documents as you'd like.
1 Day Pass
1 Month Pass

1 Year Pass

Choose payment option

$10.00
* The Scribd Archive is a collection of millions of documents, including research reports, best-selling
books, news source materials, and more. Read the Scribd Archive FAQ for more information.

http://www.scribd.com/doc/35597956/M-Pesa-Transaction-Logging-Shopping-Cart Page 27 of 27

Anda mungkin juga menyukai