All payments made via chase paymentech show as unpaid. This may not be true on new orders (cant test currently) but converting my 7.0.7 database shows them like this..
Order Total: $13.48
Balance: $0.00
Payment Status: Unpaid
Last Payment: MasterCard xxxx
Amount: $13.48
Status: Captured
AVS: Unavailable (U)
CVV: Match (M)
Shows zero balance and captured payment but marked as unpaid.. same order in 7.0.7 shows as paid.
The second is a report that needs to be changed. I had said previously that the WA state tax report was fixed but I was wrong. It needs to show the total order amount per loc code and not total tax collected as these are the numbers WA state asks for. It needs to be order totals before shipping and tax but after coupons, etc.. This year I just ended up learning how to write a SQL statement to get past this issue but I would like to see it built in..
Code: Select all
select LineMessage,sum (ProductSubtotal) from ac_OrderItems, ac_Orders where ac_OrderItems.LineMessage is not null and ac_OrderItems.OrderID = ac_Orders.OrderID and OrderDate between '2012-01-01' and '2012-12-31' group by LineMessage