Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/30/2015 in all areas

  1. This bug will be fixed for the next version of Blesta as apart of CORE-1571. If you'd like to apply the fix yourself, then update /app/models/staff_groups.php Find: 'permission' => array() And replace it with: 'permission' => array(), 'session_lock' => $staff_group->session_lock
    2 points
  2. i want just to give you more info that can help you todo this task . the TCPDF wrapper support saving file to a local folder , so basically you didn't need to code any thing to save the output , what you need is just a code like this Loader::loadComponents($this, array("SettingsCollection", "Upload")); $temp = $this->SettingsCollection->fetchSetting(null, Configure::get("Blesta.company_id"), "uploads_dir"); $upload_path = $temp['value'] . Configure::get("Blesta.company_id") . DS . "pdf_files" . DS; // Create the upload path if it doesn't already exist $this->Upload->createUploadPath($upload_path, 0777); $this->pdf->Output($upload_path . $name . "." . $this->getFileExtension($this->mime_type), 'F');this code will save the files to the upload folder inside the c ompany folder , in pdf_files folder .you can customise more to add a subfolder fot the dates of the generated invoice .
    2 points
  3. If you update Blesta, then yes, the change you made would be overridden. You would have to maintain the custom changes yourself. Alternatively, you could use vQmod to make the change instead, so it will persist. Also, I think you can use: $this->invoice->line_items[$i]->subtotal ..instead of calculating the subtotal yourself.
    2 points
  4. Cody

    Release 3.4.1

    Version 3.4.1 is now available. You can download it in the Client Area. This is a patch release that corrects issues with 3.4.0. Patching Blesta See Patching Blesta in the User Manual for instructions. Release Notes See Blesta Core - Version 3.4.1. See all Change Logs.
    1 point
  5. Tyson

    Monthly Turns Into 3 Months

    Well, you updated that quickly. It's not PHP's fault, though.
    1 point
  6. Tyson

    Monthly Turns Into 3 Months

    This problem has to do with how php calculates "+1 month" as 30 days, and since February only has 28 days in it, it calculates one month from Jan 30 and Jan 31 into March. So only January 30-31 would be affected by this issue. The fix for this will be included in the next version of Blesta as apart of CORE-1572. Being that today is January 30, you will likely want to fix this yourself in the meantime. To do so, update the file /app/models/packages.php Find this line: $today = $Date->cast($start_date, "j"); Below that line, add: $start_date = $Date->format("Y-m-01 H:i:sP", $start_date);
    1 point
  7. Tyson

    Monthly Turns Into 3 Months

    Certainly doesn't look right. I'll see if I can find out what is going on with that.
    1 point
  8. Thxs, I missed that also.
    1 point
  9. Looks Nice, I just noticed a little issue on the Order form. I switched to USD and all It didn't give out the conversion.
    1 point
  10. Your support tickets links are wrong: http://dev-blesta.netpublica.com/plugin/support_manager/client_tickets/departments/plugin/support_manager/client_tickets/add/1/plugin/support_manager/client_tickets/add/1/plugin/support_manager/client_tickets/add/1/ instead of : http://dev-blesta.netpublica.com/plugin/support_manager/client_tickets/add/1
    1 point
  11. That's pretty good. You did all that with the CMS plugin? I see the Support Departments don't work yet, but I guess that's apart of the remaining 10%.
    1 point
  12. 1 point
  13. i dont really understand your question. All i want is for the invoice that is generated to show the correct line item total without tax. Having the cost column include the tax makes no sense. People assuming the column totals up which it doesnt because if you total the cost column its the total price not the subtotal price. My fix in the PDF works fine Im just concerned that if i update blesta the changes will get overridden with a new pdf template file.
    1 point
  14. It would be great if Blesta could store proforma number on a real invoice (optionally). That is needed for accounting here. When clients do manual bank wires, they just write "Proforma 2" in description, for example, and when you manually accept the payment, proforma invoice is instantly changed to a normal invoice, thus accountant is not able to detect which invoice was the payment for. An option to store the proforma number on a real invoice would solve that (somewhat like "Generated from proforma-2" at the bottom or top of the invoice).
    1 point
  15. Hello Blesta community. I am with NameSilo. We would be more than happy to look into creating a Blesta module. We would need a version of the software for testing as well as documentation and/or existing registrar module that we could start from. If anybody can help us acquire these things, please let us know at support@namesilo.com. Thanks
    1 point
×
×
  • Create New...