Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 539,607
» Latest member: eregowlrgm
» Forum threads: 1,745
» Forum posts: 9,084

Full Statistics

Online Users
There are currently 3 online users.
» 0 Member(s) | 1 Guest(s)
Bing, Google

Latest Threads
Finetuning the way you se...
Forum: coreBOS Development
Last Post: alexandy40d
12-06-2024, 07:38 AM
» Replies: 4
» Views: 8,145
MariaDB Version
Forum: Administrator Support
Last Post: joebordes
11-01-2024, 11:49 AM
» Replies: 1
» Views: 650
Product Catalog / parts c...
Forum: Modules/Extension Support
Last Post: joebordes
09-15-2024, 09:40 AM
» Replies: 1
» Views: 1,117
Challenges and Best Pract...
Forum: coreBOS Development
Last Post: wishforbes
08-30-2024, 04:21 PM
» Replies: 0
» Views: 728
PRODUCTS IN ACCOUNTS BY O...
Forum: User Support
Last Post: jonathanmoore858
08-03-2024, 04:14 PM
» Replies: 4
» Views: 2,782
Zapier | Integration
Forum: Modules/Extension Support
Last Post: bernardgbailey
07-29-2024, 11:45 PM
» Replies: 7
» Views: 9,872
Versión PHP recomendada
Forum: International
Last Post: joebordes
07-04-2024, 05:42 PM
» Replies: 7
» Views: 3,361
Could Someone Give me Adv...
Forum: Open Discussions
Last Post: joebordes
06-27-2024, 08:32 AM
» Replies: 1
» Views: 1,714
RESTRICTED FILE
Forum: Administrator Support
Last Post: inspectorflint
06-22-2024, 08:08 AM
» Replies: 7
» Views: 5,690
GENDOC imágenes
Forum: Open Discussions
Last Post: joebordes
06-02-2024, 05:11 PM
» Replies: 4
» Views: 2,051

 
  Mailchimp
Posted by: Michel001 - 04-16-2018, 03:00 PM - Forum: Modules/Extension Support - Replies (1)

Hi ,

I used this thread to find the mailchimp module
https://discussions.corebos.org/showthre...=mailchimp

it installed with no problem
but when i want to use the api and id nothing is saved.

it almost seems like the button is not working to save the settings.

any idea ?

Print this item

  ADJUNTO EN CORREOS DESDE CONTACTOS
Posted by: flopezcpa - 04-15-2018, 02:30 AM - Forum: International - Replies (4)

Buenas noches:

Observo que al intentar usar la opcion de Enviar Correos y Adjuntar (cotizacion, pedidos, etc), los documentos en pdf no se adjunta.

Que estoy haciendo mal.?

Print this item

  ENVIAR EMAIL DESDE WORKFLOW
Posted by: construmet4 - 04-14-2018, 05:13 PM - Forum: User Support - Replies (16)

Buenos días

A ver si alguien me puede ayudar:

Ya he creado un workflow, de forma que en cuanto creamos un registro, se envíe por email cuando le damos a guardar registro en un módulo que he creado que se llama LlamadasRecibidas. Acto seguido, he creado otra tarea que se encarga de marcar un campo del registro como entregado,

Por lo que veo, la primera tarea no se completa, no me envía el correo, y la segunda tarea, si que se realiza, el registro se da por entregado.

Qué puede estar pasando con el envío del correo desde la tarea programada?


Si redacto un correo electrónico desde administrar correo, el correo se envía perfectamente, el servidor de correo saliente está bien configurado Alguna idea de por donde tengo que mirar?

Print this item

  aprove all filters
Posted by: rslemer - 04-14-2018, 12:23 AM - Forum: Administrator Support - No Replies

Today, when user create a new filter, and mark a checkbox, public, user admin needs aprove this filter for release.

I wish, approve all filter, created for all user, thru my admin user.

This is necessary, because, in some cases, new filter causes performances issues, admin needs make some changes in table in DB is change, for example included a new key..

Print this item

  Dashboard to profile
Posted by: rslemer - 04-14-2018, 12:18 AM - Forum: Administrator Support - No Replies

Today each user can set your owner dashboard

This is a good, but when you need a standard system, for example, I need same dashboard for all profile, I need logged, in all users, one by one, and setting dashboard the same way.

I suggest, admin can define a dashboard and setting for all user at specific profile.

I think is a good feature

Print this item

  [solved] Filter for Assigned User
Posted by: rslemer - 04-13-2018, 08:17 PM - Forum: Administrator Support - Replies (1)

I suggest a possibility for created a filter for "Assigned User"

Today when I need this, I need access each user, one by one, and  create the same filter, testing Assigned to = logged User.

I think is a good improvement.

Or exists another way, for do that?

Print this item

  Idea: InventoryMutations
Posted by: Guido1982 - 04-11-2018, 06:00 PM - Forum: coreBOS Development - No Replies

I came up with this idea thinking about my inventorydetails master-detail implementation and the problems you would have keeping stock. What if we created a module called InventoryMutations of which each record represents a certain mutation to an InventoryDetails record? This module could register an event listener to the 'beforesave' event of the InventoryDetails record it is related to and would only need to created once (and NEVER edited). It would only need a couple of fields:

  • The product it is related to
  • The stock mutation number

Again: these records should only be created, never edited. Maybe this functionality need to be turned off all together for this module. You could use them (through workflows) to keep a good stock.

Print this item

  Can't get my UI10 field to show up
Posted by: Guido1982 - 04-11-2018, 01:01 PM - Forum: coreBOS Development - Replies (7)

I've added a UI10 field to a block like this:

PHP Code:
        include_once('vtlib/Vtiger/Module.php');
        
$module Vtiger_Module::getInstance('LitigationMatter');
        
$block Vtiger_Block::getInstance('LBL_Parties'$module);
        
        
// Setup the field
        
$field                =    new Vtiger_Field();
        
$field->name        =    'lm_secondclient';
        
$field->label        =    'Eventueel tweede cliënt';
        
$field->table        =    'vtiger_litigationmatter';
        
$field->column        =    'secondclientid';
        
$field->columntype    =    'INT(11)';
        
$field->uitype        =    10;
        
$field->typeofdata    =    'V~O';
        
$field->sequence    =    5;

        
$block->addField($field);
        
$field->setRelatedModules(array('Accounts')); 

But the field is not showing up. I checked the DB, all seems to be well. When I change the UI type in the DB to 1, the field shows up. The field IS showing up in the 'vtiger_fieldmodulerel' table.

Print this item

  UNIR VARIOS PROCESOS
Posted by: flopezcpa - 04-09-2018, 05:55 PM - Forum: International - Replies (1)

Buenas tardes:
Es posible realiza lo siguiente Actualmente:
1. Si tengo varias Cotizaciones, unirlas varias o todas las Cotizaciones, en una Sola Orden de Venta O pedido?
2. Que la consulta del punto 1, también se aplique para que dos o mas pedidos sean facturados en una sola Factura, y igual para las Ordenes de Compras, etc.

Saludos.

Print this item

  [solved] special character display wrong in widget dashboard
Posted by: rslemer - 04-08-2018, 04:48 PM - Forum: Administrator Support - Replies (3)

If ticket title has a special character, in dashboard, special characters was displayed wrong.



Attached Files Thumbnail(s)
   
Print this item