Adriano Faria Posted November 24, 2017 Author Posted November 24, 2017 40 minutes ago, Adriano Faria said: NVM. I will release a new version then please, test it and send a PM or make a only post with the issues you find. What's New in Version 1.0.3.2: Fix: Adjustments in prizes form
JTHastings Posted November 24, 2017 Posted November 24, 2017 3 hours ago, Adriano Faria said: What's New in Version 1.0.3.2: Fix: Adjustments in prizes form This fixed the issue I reported. Thank you Adriano Faria 1
JTHastings Posted November 25, 2017 Posted November 25, 2017 (edited) Not an issue or bug, just a suggestion. The way I am using this product it would be nice to see a total # of prizes just like there is a total number of Participants. In the pic below I have 10 Participants and 15 Prizes so it would make sense to me that the # of Prizes be shown here as well. Just like the Participants, the Prizes should increment if I add or subtract a Prize or two. Just food for thought. Edited November 25, 2017 by JTHastings Nebthtet 1
Nebthtet Posted November 27, 2017 Posted November 27, 2017 @Adriano Faria is there any chance that option to pay for tickets with an account credits will be included? We want to make it that people who donate to the community get virtual currency as account credit that they can "spend" on multiple chances to win. When I was testing paid raffle there was no option to pay with acc credit despite the fact that test acc had positive balance. Cyboman 1
Adriano Faria Posted November 27, 2017 Author Posted November 27, 2017 This is something I won’t do based in only one request, sorry. This was intentionally removed because it is not real money (account credit can be given manually or via other resources) so I’m not surre I will do this.
Nebthtet Posted November 27, 2017 Posted November 27, 2017 That's a pity, I thought more people would ask for that because it seems as a good way to avoid all tax-related problems with charging for tickets. Anyway, then I'll just have to make a workaround with manual transaction accepts via admin panel.
Adriano Faria Posted November 27, 2017 Author Posted November 27, 2017 4 minutes ago, Nebthtet said: That's a pity, I thought more people would ask for that because it seems as a good way to avoid all tax-related problems with charging for tickets. Anyway, then I'll just have to make a workaround with manual transaction accepts via admin panel. I didn't say I wouldn't. I said that I'd need to hear more clients on this. That's not a move I want to do by myself. Anyway, you can make it in your install by simply editing a file: applications\raffles\extensions\nexus\Item\Tickets.php. Find: /** * @brief Can use account credit? */ public static $canUseAccountCredit = FALSE; Change to: /** * @brief Can use account credit? */ public static $canUseAccountCredit = TRUE; I'll take a look if I can make it as a new setting so admin makes their own choice. Nebthtet 1
Nebthtet Posted November 27, 2017 Posted November 27, 2017 Wonderful! Thank you very much! Adriano Faria 1
Unlucky Posted November 27, 2017 Posted November 27, 2017 43 minutes ago, Nebthtet said: That's a pity, I thought more people would ask for that because it seems as a good way to avoid all tax-related problems with charging for tickets. Anyway, then I'll just have to make a workaround with manual transaction accepts via admin panel. Hi, this does sound a a great idea to get around the issues selling tickets. What plugin are you using to add credits to a member account?
Nebthtet Posted November 27, 2017 Posted November 27, 2017 (edited) I'll be doing that manually for some users and for new transactions we have donations set up as purchases (i.e. user "buys" a token worth specific price). I plan to reconfigure these "products" so the purchases would add account credit on top of the donator badge user receives currently. Even if I have to credit them manually we have small enough volume of transactions that it wouldn't pose a problem. Still - if I can automate I will. Edited November 27, 2017 by Nebthtet
Adriano Faria Posted November 27, 2017 Author Posted November 27, 2017 7 hours ago, Adriano Faria said: I'll take a look if I can make it as a new setting so admin makes their own choice. 7 hours ago, Nebthtet said: Wonderful! Thank you very much! Done as a new setting: Will wait a few more days to see if something appears or if something new is added to the app. Nebthtet 1
Nebthtet Posted November 27, 2017 Posted November 27, 2017 @Adriano Faria I really wish every developer reacted so fast and well to support related inquiries Adriano Faria 1
Nebthtet Posted November 27, 2017 Posted November 27, 2017 Also I have a strange issue: we have defined various currencies on the site (including one virtual). But even if I define various prices for a raffle ticket it tries to charge the customer with proper amount of currency but in improper one (default currency on the site is Polish złoty) but when the customer picks something else i.e. EUR, USD, or SCP (the virtual one) it always tries to charge in Polish złoty. Yet on the checkout screen there's PLN (Polish Złoty). Am I doing something wrong or is this an error?
Adriano Faria Posted November 27, 2017 Author Posted November 27, 2017 I've made a change today.. probably will fix it because it handles currencies (default or member language/currency). Try it yourself. Open applications\raffles\modules\front\raffles\view.php and find: /* Generate the invoice */ $invoice = new \IPS\nexus\Invoice; $invoice->member = \IPS\nexus\Customer::loggedIn(); Change to: /* Generate the invoice */ $invoice = new \IPS\nexus\Invoice; $invoice->currency = ( isset( $_SESSION['currency'] ) and in_array( $_SESSION['currency'], \IPS\nexus\Money::currencies() ) ) ? $_SESSION['currency'] : \IPS\nexus\Customer::loggedIn()->defaultCurrency(); $invoice->member = \IPS\nexus\Customer::loggedIn(); Let me know if it fixes, otherwise I will take a look closer. Nebthtet and Leovaldo 1 1
Nebthtet Posted November 27, 2017 Posted November 27, 2017 Yes, this helped! Now it properly generates invoice for selected currency. Thank you again! Adriano Faria 1
Adriano Faria Posted November 27, 2017 Author Posted November 27, 2017 It also will be in next version. Nebthtet 1
Nebthtet Posted November 27, 2017 Posted November 27, 2017 I've found another (maybe) bug: if when creating a raffle you define a price for only one currency then it applies said price to any currency the site supports. It should be impossible to pay in another currency IMO. Also when editing the price in an existing raffle it forces you to define any price > zero for every currency. You can't fill unwanted currencies with zeroes. Is it intentional?
Adriano Faria Posted November 27, 2017 Author Posted November 27, 2017 8 minutes ago, Nebthtet said: I've found another (maybe) bug: if when creating a raffle you define a price for only one currency then it applies said price to any currency the site supports. It should be impossible to pay in another currency IMO. Also when editing the price in an existing raffle it forces you to define any price > zero for every currency. You can't fill unwanted currencies with zeroes. Is it intentional? No, that doesn't work like that and I can't reproduce. In images: If you haven't filled the price in one specific currency, user won't be able to purchase on it. It's in the video and the screenshots above. Nebthtet and Leovaldo 1 1
Nebthtet Posted November 27, 2017 Posted November 27, 2017 OK, I'll try to make a new one and see if the problem persists.
Nebthtet Posted November 27, 2017 Posted November 27, 2017 OK, now it works just like on your video. Seems the problem has been caused by the fact that the raffle that acted improperly has been created before I made changes to view.php file. Adriano Faria 1
Adriano Faria Posted November 27, 2017 Author Posted November 27, 2017 49 minutes ago, Nebthtet said: OK, now it works just like on your video. Seems the problem has been caused by the fact that the raffle that acted improperly has been created before I made changes to view.php file. Nope, it is like that since version 1.0.0. Was this raffle created by you? Probably the user entered same value for all currencies.
Nebthtet Posted November 27, 2017 Posted November 27, 2017 No, I've been testing on a different account. And yes, one of the raffles had same prices in every currency. Any chance that the requirement of filling every currency when editing ticket price of existing raffle will be removed? Or please tell me if I can remove it myself somehow. It's strange that such requirement exists on edition when it isn't present when you create the raffle.
Adriano Faria Posted November 27, 2017 Author Posted November 27, 2017 (edited) Show 10 fields if you have 10 currencies is automatic and it is handled by commerce itself. I just call a Money field and they will be there. The requirement to fill all of them is a setting. Go to the Raffles Settings and disable it in Submission tab, if I’m not mistaken. Edited November 27, 2017 by Adriano Faria Leovaldo and Nebthtet 1 1
Nebthtet Posted November 27, 2017 Posted November 27, 2017 Silly me, yes it was there! Thank you! Adriano Faria and Leovaldo 2
JTHastings Posted November 28, 2017 Posted November 28, 2017 Was thinking that it would be nice to have Content Count in the Member Info screen when viewing Participants like it is in the Leaderboard especially when Content Count is one of the requirements. Adriano Faria 1
Recommended Posts