Sounds like the answer might be to group by all non-aggregate columns, which is actually ANSI SQL requirement, so we really ought to be doing that anyway.
I'll see if I can come up with the solution when we head back to the office. Would be great, since you're able to reproduce the issue, if you could test it out.
Hi Guys,
I think it's one of the most desirable Feature Request which we need in Blesta. I had been told by Paul that there is a plan to add this feature but not sure if it's added to Core yet.
It'd be nice if affiliate will have features like :
1) They can generate their own coupons [which will give extra discount to the buyer] from their own earnings.
2) No promotional links like "aff.php?id=102" as mostly users don't want to join sites using affiliate links and also its not allowed in most money making forums.
3) I don't have in my mind yet so any suggestions which will boostup this are "Welcome".
Thanks,
Abhineet
yes thats what im talking about it giveing option to on or off depends on each one needs like other scripts because not all clients here use blesta for hosting its billing system anyway.
im sorry to post here because on v3.0 was work and you can't signup with same email on database so now not so i don't know its bug or not we can wait paul confirm but i really need it badly.
Hello,
I'm trying the following:
One service costs $ 5.00 incl. tax, that's $4.20 excluding tax. This service is created via package (using Universal Module).
Now I want to offer a coupon for the whole $5.00 amount.
But when the coupon is now applied to the service, it's calculated down to $4.20 - so the client has an invoice about $0.80 instead of free.
(Per order form / api)
I also tried setting the coupon to $5.95 - this would be $5.00 + tax. But this one is also calculated down to the $4.20 of the line item.
Request:
A. Allow coupons to be taxable. Maybe a checkbox when creating the coupon. This should be applied automatically.
B. (Much better): Apply the coupon to the line item before it is taxed. This would make more sense to me, because nobody has to tax $0.00 - right?
Thanks!
This has been fixed in CORE-774 for v3.0.4.
To patch yourself, update /app/models/invoices.php (line 885):
Replace:
// Increment the used quantity for all coupons used
foreach ($coupons as $coupon_id => $coupon)
$this->Coupons->incrementUsage($coupon_id);
return $invoice_id;
With:
// Increment the used quantity for all coupons used
foreach ($coupons as $coupon_id => $coupon)
$this->Coupons->incrementUsage($coupon_id);
// Update invoice totals
$this->updateTotals($invoice_id);
return $invoice_id;