iTunes connect difference between "updates" and "sales" - app-store-connect

Yesterday, my app got 74 downloads in sales but 134 in updates. Are these numbers combined? I'm very confused. How I just look at the downloads overall?

Sales are unique downloads of your app. Updates are users who are either updating from a previous version of your app or re-downloading it after they had purchased but deleted it.

As #SevenBits says, they are completely different numbers and the overall downloads depends on how you define it.
IF:
1. Overall downloads = New sales (whether free or paid) + updates, then you have to add 74 + 134 = 208.
2. Overall downloads = Only New sales free or paid (because updates doesn't count), then its 74.
There isn't a place to look at the sum of updates and new sales/downloads.
Lastly, this is not a programming related question... please see the SO guidelines for types of questions to post.

Related

Unable to migrate Work Item with greater than 25000 revisions

I am using the Azure DevOps Migration Tools and it hits an exception when I try to migrate a work items with 35977 revisions.
Here is my configuration:
Here is the SOAP error I am getting:
Wow, that's a lot of revisions. I'm not sure I have ever seen a work item with that many revisions. I assume that you have some sort of tool that auto updates the work items, which is what is causing this.
Since it take about 200ms per revision to save Work Items I would
expect it to 5000 seconds (thats 82h) to migrate just 1 work item with
that many!
Since the Azure DevOps Migration tools use the old SOAP API (Object Model) this one is out of our hands. There may be some way to page the revisions but I am unaware. If you do find a way to only load partial works items i'd be intersted... although thinking about it I think there is a wi.LoadPartial() method... never used that.
To move forward you could add AND [System.Rev] < 25000 to your query to not load those work items that have that many revisions.
This would allow you to continue with the CLosed items that are supported.
We have added a way to only migrate some of the revisions when there are more, but we never envisaged in our wildest defensive coding strategies that it would be above 1000 revisions. I can imagine memory and other issues cropping up.
Added to: https://github.com/nkdAgility/azure-devops-migration-tools/issues/1096

ODOO10CE export attachments to ODOO14CE

I have the ODOO10CE with many PDF attachments. Most are linked to accounting entries and invoices.
Can someone recommend me how to transfer them to ODOO14CE and re-link them to the accounting entries and invoices?
Thanks.
If you have already successfully upgraded your database from 10 to 14 and the only thing still outstanding is your attachments, then you should simply move your filestore as you would move any set of folders.
It seems... unlikely... that you would have successfully upgraded from 10 to 14 without knowing this however so maybe there's more to the question than I'm seeing?
For general knowledge, check out the Odoo 14 Documentation on importing documents:
https://www.odoo.com/documentation/user/14.0/general/base_import/import_faq.html

Make Barcode functionality for Odoo 10 Community Version

I want to make a barcode in Inventory picking screen since it's not supported in Odoo 10 Community version.
What do I have to search for, and learn?. I saw the barcode module, what the purpose of it and how it can be useful in my case?
In addition I want to make another step in receiving products which is Put Away, this step is to put the product on the shelf. To achieve this the warehouse user shall scan the product barcode and the scan location barcode, after that the system should automatically put that product on scanned location.
Finally please give me any reference or hint that I can start with. And if there is a similar module built before.
Thanks.
The module has been made and published for free.
Download

Automated Heroku PostgreSQL Updates without Client Request

I am new to web development. I am building a simple text based web game. I am using heroku and postgresql. I have sql table for users and their coin amount(their earnings).
I can receive/transmit data from this database by using requests made from players. However what I want to achieve is to automate the coin addition to each users account.
So let's say at the beginning of each hour, I want to add 15 coins to each user. How can I possible achieve this kind of automation with heroku and postgresql ?
I tried searching for almost an hour, but I wasn't even able to find the name of this process :(
While you could schedule this (as sonnyhe notes), it's probably better not to.
Instead, just update the value when you're updating their balance for some other reason, by adding the difference between the time you last added coins and the current time, extracting the hours, and multiplying by 15.
If the user asks to just view the balance, all you need to do is display its last stored value plus the hours since then * 15.
That way you're not doing lots of unnecessary updates and causing unnecessary load.
Here is a gem you can look into.
Just include the gem rufus-scheduler in your gemfile.
The you can set something up in you config/initializer/scheduler.rb
scheduler.every '15m' do
# Update all coins with 15 more.
end

prestashop back office combination price

I am new to prestashop and I am very much disappointed by the back office entries in database. I have different products with more than 40,000 combinations generated by autogenerated combination. But every product has a different price and impact varies from product to product. I have issue with updating the prices, editing the prices I have to do all that nasty stuff manually or by one by one.
This work wasted lot of time to add the product entries and that giving them prices. Is there any way to edit, update only the price of the specific price after all possible combinations generated by prestashop itself.
Is there Any software or plugins available to make this work easier?
Unfortunately Prestashop doesn't handle specific price in combination. You ll have to calculate price increase.
We got the same issue each time we have to migrate data.
I wouldn't recommend you to put a price at 0 on the main product price as it will appear at 0 on RSS and some modules.