Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/06/2016 in all areas

  1. Thanks! Yeah, it can definitely be improved. I just wanted to get it working and the ball rolling and I like the idea of collaboration, so, you're all welcome to share/collaborate/fork/commit/pull I put the plugin on to a new branch called "plugin": https://github.com/NETLINK/BlestaClientStatements
    2 points
  2. The goal is v4 beta this month, but we still have some work ahead of us. No official ETA, but also not a good idea to use beta 1 in production. Running a report and using another mailer is the best way to go for now. Maybe Cody or Tyson can chime in with the proper query you can use.
    2 points
  3. I'm almost done integrating this with the client dashboard. I have it working right now, I just need to clean up the code and push it to the Git repo. Should have that done tonight. Then, you can give it a test drive.
    2 points
  4. The 4.0 still have 2 public sprints and a few private tasks I dowt they would get that all done in less than 25 days (plus weekends they are closed), the mass mailer only works on 4.0 as it needs changes to the core so that answers your next question. Why not do it the way people do it now? Use the report feature (Billing > Reports > Custom reports) and then use that XML for Mailchimp etc. SELECT contacts.client_id, contacts.first_name, contacts.last_name, contacts.email, contacts.address1, contacts.city, contacts.zip, contacts.country FROM contacts ORDER BY contacts.client_id;
    2 points
  5. Hello, I have to send now a very important email to my clients as i use multi company not so easy export emails from phpmyadmin. (impossible now) Is there any chance to be there this month the 4.0 Beta? I really interested about the mass mail plugin. Or there any chance to get this plugin earlier? I have to send the emails this month. Thanks Peter
    1 point
  6. i have looked your code , some data in the config can be fetched from the settings company , like the currency , logo picture from invoice logo if set . ect . also blesta has the tcpdf already , just call and load it inside your model . you can make a look at the invoice template components to inspire from it . but finally, great work
    1 point
  7. 1 point
  8. also it would be nice to see it in edit mode . sometimes we transfer site from server to another server , and we should update module row id also .
    1 point
  9. I mentioned this is the documentation, thanks!
    1 point
  10. Like this? CORE-2158 See screenshot.
    1 point
  11. have you a copy of my database ?! the same case we have fronted yesterday . we have a services that was moved to another client in v2.5 , and yesterday the service was suspended . after a deep loks i nhave found the services is attached to a invoice in the old client that has benn overdue . but i'm curios to see hopw you moved the services in v3 . is also sipmle as changing just the client_id ? so for me +1 for this request .
    1 point
  12. richwalker

    Paypal To Stripe Switch

    Hi Tyson I have checked and checked again. I have even typed the Live Secret Key manually. Below is the logs from blesta Input from the logs ( i have changed the user info to protect the client) https://api.stripe.com/v1/charges a:3:{s:6:"amount";i:100;s:8:"currency";s:3:"gbp";s:4:"card";a:10:{s:6:"number";s:16:"xxxxxxxxxxxxxxxx";s:9:"exp_month";s:2:"xx";s:8:"exp_year";s:4:"xxxx";s:4:"name";s:13:"BOB ";s:13:"address_line1";s:16:"1 My Address";s:13:"address_line2";s:0:"";s:11:"address_zip";s:6:"AB123CD";s:13:"address_state";s:3:"ABC";s:15:"address_country";s:3:"GBR";s:3:"cvc";s:0:"";}} Output https://api.stripe.com/v1/charges a:0:{}
    1 point
  13. logicbox also requiere consumer contant has a zipcode , empty value is not accepted . something like $vars[$key] = $client->zip != "" ? $client->zip : "00000";
    1 point
  14. logicbox does not support utf8 caractere . and the adress lenth maximum is 64 . so in logicbox module find elseif ($key == "address-line-1") $vars[$key] = $client->address1; replace it by elseif ($key == "address-line-1") { $client->address1 = str_replace("NÂ", "N", $client->address1); $client->address1 = str_replace("°", ":", $client->address1); $client->address1 = strtr($client->address1,utf8_decode("ÀÁÂÃÄÅàáâãäåÒÓÔÕÖØòóôõöøÈÉÊËèéêëÇçÌÍÎÏìíîïÙÚÛÜùúûüÿÑñ°º"),"aaaaaaaaaaaaooooooooooooeeeeeeeecciiiiiiiiuuuuuuuuynn::"); $vars[$key] = substr($client->address1, 0, 63); }
    1 point
  15. you have remember me for this, in the module for v2 i have made some change . i will check it and back again to give you the solution .
    1 point
×
×
  • Create New...