omz / AppSales-Mobile

App Sales allows iPhone and Mac App Store developers to download and analyze their daily and weekly sales reports from iTunes Connect.
http://omz-software.com
1.9k stars 407 forks source link

How to fix the download of payments - 07 April 2013 #241

Open AlessandroPappalardo opened 11 years ago

AlessandroPappalardo commented 11 years ago

In ReportDownloadOperation.m change a line in "main", from:

  [paymentsScanner scanUpToString:@"alt=\"Payments and Financial Reports" intoString:NULL];

to:

  [paymentsScanner scanUpToString:@"<p>Manage your contracts, tax, and banking information.</p>" intoString:NULL];

That's all, folks! :)

Ciao

ddaddy commented 11 years ago

Excellent, thank you very much.

ddaddy commented 11 years ago

I think these payments should be included in the new master version. I'm still using a clone of the old version because I like to keep these payment details to hand.

nyisztor commented 11 years ago

I couldn't agree better. Payment history is quite important for me as well, so I also keep patching an old version of AppSales.

Please consider re-adding this feature.

I think these payments should be included in the new master version. I'm still using a clone of the old version because I like to keep these payment details to hand.

— Reply to this email directly or view it on GitHub.

ddaddy commented 9 years ago

Just wondering if anyone has a working solution to get payments now. I'm assuming the new iTunes Connect broke this.

mikemee commented 9 years ago

+1 for payments. I've been using the Apple java Autoinjestion tool for this, as described here: http://stackoverflow.com/questions/17712749/itunesconnect-autoingest-for-financial-earnings-reports, but now it's giving me an error. Any suggestions?

ddaddy commented 9 years ago

I finally got the time to take a look and fixed the payments in my branch of this.

pupasani commented 9 years ago

Thanks ddaddy, works fine! One more minor fix for payments. If you make this small change to increase the footer height from 42 to 92, you can also see the yearly total on the Payments page :-)

YearView.m - line 38 CGFloat footerHeight = 92.0;

ddaddy commented 9 years ago

Thanks. I totally forgot that was even there.

Fixed.