Software with cost. Help? [closed]

1

Hello, everyone!

Well, my situation is this: I have a program and I want to charge for the use, but I realized that if I left free there would be more customers. So I thought of limiting the system and charging a monthly fee for what the user wants the most. But there are several tool options that I offer at a cost. For example:

  • Starting value: $ 0.00

  • Function1: + R $ x, 00 monthly

  • Function2: + R $ x, 00 monthly
  • ...

Here is where the problem is, how can I make such software? I would like to generate a ticket only at the end of the month and not several for each function that the client wants ... I need help to create a logic

I would like to give the user the opportunity to add and remove functions ... So he could choose the amount he wants to pay according to his needs ...

Does anyone have any idea how to do something like this? Have you ever worked like this? Does it have a chance to work out or are there better options?

    
asked by anonymous 28.05.2015 / 23:33

1 answer

3

If you charge in the way you are thinking of doing, it will not look good to the user you are buying. Can you imagine if an invoice of a value arrives each month ?! It was not going to be legal.

On billing, make packages with certain functionality and fixed amounts for monthly and yearly plans. So you give your customer less "forcing" option to purchase.

On forms of payment, you can start using Pasgseguro, which already has a library ready for developers and the public already knows. This option charges a fee, however, you gain time and find out if the tool will really work or not.

I work like this because I have a web service, too. I followed these steps and, so far, is working.

Hope I've been helping.

    
29.05.2015 / 05:18