-
Posts
4,868 -
Joined
-
Last visited
-
Days Won
390
Everything posted by Blesta Addons
-
Blesta Have Option To Create Quote/estimates ?
Blesta Addons replied to alexistkd's question in Pre-Sales Questions
Comments for both client/and staffs that have permission . a threaded replies like the support ticket . normally , after the client accept a quote , it should become an invoice . but as always in europeand my country invoice should be accounted and not changed , and to avoid some case that client won't pay for some reason, i prefer changing quote to pro forma . if enebled . -
i think he talk about the core default . what about a feature to add template PDF class generator (we can add our class generator without changing the core files) ? like the exchange_rate provider , we can select wich one to use .
-
as i know not possible with the two exclude methode .
-
Hello All , regarding this thread Make Gateways Available For All Currencies , we have found a solution to make the gateway work for every currency even if is not supported by the gateway . our solution will let the admin select wich default currency shoudbe used if the client currency is not supported by the gateway . then the gateway make exchange rate from the user currency and the default curency supported by the gateway . the solution also show a message to the client before they pay , that the payment will be done in other currency rather than his currency in file . i know this gateway is only wanted by countries that not have thier currency supported by paypal . any betatester for this gateway ? if it like you , maybe i will make all the gateways work like that . best regards
-
blesta has it own module for proxmox, i have tested before and work , and handle creation/suspension/remove vps , also start/stop/reboot work . now i'm writing myown proxmox , i will release it , but the reseller one, i will not release it or i will release it as a paid module (it take from me alot of time work and test and until now not tottaly ready for production . what i promise is the rewrite proxmox i will share it freely .
-
this is related to your module pricing solution ?
-
"the Email Failed To Send Due To A Configuration Issue." - Any Ideas?
Blesta Addons replied to Sam's question in Support
how you have know that SMTP setting is ok ? have you tested any other email ? -
any API url for it ? it's not available in my country , so i can't register for test demo account .
-
i have added new controllers/actions to my toolbox plugin , specially the orer plugin , now i can hide any field on registration or order form , we can add custom html to the body tag so we can return a back or any other button you want . but reallt what i'm testing is validating field with jquery form and i have what i need . soon i will release it .
-
in wich function you add the code ? tooltip is declared type http://source-docs.blesta.com/class-ModuleFields.html what i do for tooltip in my modules, i add them inside the view pdt file like <li> <?php $this->Form->label($this->_("Mymodule.row_meta.panel_link", true), "panel_link"); $this->Form->fieldText("panel_link", $this->Html->ifSet($vars->panel_link), array('id' => "panel_link")); ?> <span class="tooltip"><?php $this->_("AppController.tooltip.text");?><div><?php $this->_("Mymodule.!tooltip.panel_link");?></div></span> </li> if i want to add it directly to the module file i do : // Create field $field_id = $fields->label(Language::_("Mymodule.field_id", true), "field_id"); $field_id->attach($fields->fieldText("field_id", $this->Html->ifSet($vars->field_id), array('id'=>"field_id"))); // Add tooltip $tooltip = $fields->tooltip(Language::_("Mymodule.field_id.tooltip", true)); $field_id->attach($tooltip); // Set the label as a field $fields->setField($field_id);
-
Get If A Client Has Purchased A Service, Via Api
Blesta Addons replied to a.daniello's question in Support
my code is not 100% API, is just a typo to how the code work in normal plugin , then you need to convert it to API . as before i test anything in API , i test it internally to se if i get what i need, then i convert ot api call . so you code is correct for API call , and my code is correct for internal call . -
this is under discusion and wanted from all european companies , in this thread http://www.blesta.com/forums/index.php?/topic/3375-final-invoices-store-client-details-on-invoice/?hl=final , you can add your suggestion . This already exist but just with date . Not exist now, and this is my vote for it +1 . this is possible in settings/company/billing/customization/ -- Invoice Customization then add {num}-1-1 . as you can implement some of them yourself , feel free to share
-
Blesta Have Option To Create Quote/estimates ?
Blesta Addons replied to alexistkd's question in Pre-Sales Questions
as Paul suggestions is perfect . sometime we need to change the quote after we recieve some new request to the work or new petition from client to reduce the price . -the top for me is to add something like comments both for client and staff under the qoute . with this will simplify the work , rather than talking via emails with the client . if the quote is accepted , it become invoiceor it remain quote ? and what if pro forma is enabled ? -
Good features to add , i have added to my todo list - allow client to ignore announcement message . - option to hide announcement in widget after X days from date creation .
-
i have not added plugins controllers to my toolbox plugin . i'm working now it , then you can hide any field you want in order template or ticket plugin and ny other installed plugin . the above code is working in edit client page info (client side) .
-
check this link http://demo.blesta.com/404 click in logo .
-
is the company info has any letter in asian language ?
-
Get If A Client Has Purchased A Service, Via Api
Blesta Addons replied to a.daniello's question in Support
to be more clear , let say the package you want to search for it has id "5" , you can get package id from the package page . call Services::getList() . $services = $api->Services->getList($client_id); $num_services = count($services) ; for ($i=0; $i<$num_services; $i++) { if ($services->getList->service[$i]->pricing_id == $package_id) echo "The Client ID ". $client_id ." has the service searched , with id ". $services->getList->service[$i]->id ."\n"; } -
can you try this 'OtherEntityType' => array( 'label' => Language::_("OtherEntityType",true), 'type' => 'text' ) 'OtherEntityTypetooltip' => array( 'label' => "This Is a tooltip", 'type' => 'tooltip' )
-
Hello Paul , the Account Registration email could not have a pssword , but what about the service email creation ? normmaly it has the pasword and we can't ignore it , on service creation nthe client recieve email about thier login password . that is my concern not the welcome email . truncate log emails is a good option to enable/disable . i will delete just email that has more than 18 mounths .
-
The OP need I think a popup div . the tooltip is not a title , you can style the tooltip the way you want via CSS . Blesta handle the tooltip attribute , you can chech some module that already has tooltip . i can't give example now as I'm connected with phone .
-
The module create a login/pass different from blesta user login/pass .