Merge remote-tracking branch 'upstream/develop' into camelCaps
This commit is contained in:
commit
5100b8b7b0
@ -2,7 +2,7 @@
|
|||||||
# from Dolibarr GitHub repository.
|
# from Dolibarr GitHub repository.
|
||||||
# For syntax, see http://about.travis-ci.org/docs/user/languages/php/
|
# For syntax, see http://about.travis-ci.org/docs/user/languages/php/
|
||||||
|
|
||||||
# We use dist: precise to have php 5.3 available
|
# We use dist: trusty to have php 5.4+ available
|
||||||
dist: trusty
|
dist: trusty
|
||||||
sudo: required
|
sudo: required
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# DOLIBARR ERP & CRM
|
# DOLIBARR ERP & CRM
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Dolibarr ERP & CRM is a modern software package to manage your organization's activity (contacts, suppliers, invoices, orders, stocks, agenda…).
|
Dolibarr ERP & CRM is a modern software package to manage your organization's activity (contacts, suppliers, invoices, orders, stocks, agenda…).
|
||||||
|
|
||||||
|
|||||||
@ -1250,8 +1250,13 @@ if ($id > 0)
|
|||||||
if (! empty($object->fk_element) && ! empty($object->elementtype))
|
if (! empty($object->fk_element) && ! empty($object->elementtype))
|
||||||
{
|
{
|
||||||
include_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
|
include_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
|
||||||
print '<tr><td>'.$langs->trans("LinkedObject").'</td>';
|
print '<tr>';
|
||||||
print '<td>'.dolGetElementUrl($object->fk_element,$object->elementtype,1).'</td></tr>';
|
print '<td>'.$langs->trans("LinkedObject").'</td>';
|
||||||
|
print '<td>'.dolGetElementUrl($object->fk_element,$object->elementtype,1);
|
||||||
|
print '<input type="hidden" name="fk_element" value="'.$object->fk_element.'">';
|
||||||
|
print '<input type="hidden" name="elementtype" value="'.$object->elementtype.'">';
|
||||||
|
print '</td>';
|
||||||
|
print '</tr>';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Description
|
// Description
|
||||||
|
|||||||
@ -1514,7 +1514,7 @@ if ($action == 'create')
|
|||||||
// Bank Account
|
// Bank Account
|
||||||
if (! empty($conf->global->BANK_ASK_PAYMENT_BANK_DURING_PROPOSAL) && ! empty($conf->banque->enabled)) {
|
if (! empty($conf->global->BANK_ASK_PAYMENT_BANK_DURING_PROPOSAL) && ! empty($conf->banque->enabled)) {
|
||||||
print '<tr><td>' . $langs->trans('BankAccount') . '</td><td>';
|
print '<tr><td>' . $langs->trans('BankAccount') . '</td><td>';
|
||||||
$form->select_comptes($fk_account, 'fk_account', 0, '', 1);
|
$form->select_comptes($soc->fk_account, 'fk_account', 0, '', 1);
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -872,7 +872,7 @@ class Commande extends CommonOrder
|
|||||||
$line->fk_unit,
|
$line->fk_unit,
|
||||||
$this->element,
|
$this->element,
|
||||||
$line->id
|
$line->id
|
||||||
);
|
);
|
||||||
if ($result < 0)
|
if ($result < 0)
|
||||||
{
|
{
|
||||||
if ($result != self::STOCK_NOT_ENOUGH_FOR_ORDER)
|
if ($result != self::STOCK_NOT_ENOUGH_FOR_ORDER)
|
||||||
@ -1511,56 +1511,57 @@ class Commande extends CommonOrder
|
|||||||
$localtax2_tx=get_localtax($tva_tx,2,$this->thirdparty,$mysoc,$tva_npr);
|
$localtax2_tx=get_localtax($tva_tx,2,$this->thirdparty,$mysoc,$tva_npr);
|
||||||
|
|
||||||
// multiprix
|
// multiprix
|
||||||
if($conf->global->PRODUIT_MULTIPRICES && $this->thirdparty->price_level)
|
if($conf->global->PRODUIT_MULTIPRICES && $this->thirdparty->price_level) {
|
||||||
$price = $prod->multiprices[$this->thirdparty->price_level];
|
$price = $prod->multiprices[$this->thirdparty->price_level];
|
||||||
else
|
} else {
|
||||||
$price = $prod->price;
|
$price = $prod->price;
|
||||||
|
}
|
||||||
|
|
||||||
$line=new OrderLine($this->db);
|
$line=new OrderLine($this->db);
|
||||||
|
|
||||||
$line->context = $this->context;
|
$line->context = $this->context;
|
||||||
|
|
||||||
$line->fk_product=$idproduct;
|
$line->fk_product=$idproduct;
|
||||||
$line->desc=$prod->description;
|
$line->desc=$prod->description;
|
||||||
$line->qty=$qty;
|
$line->qty=$qty;
|
||||||
$line->subprice=$price;
|
$line->subprice=$price;
|
||||||
$line->remise_percent=$remise_percent;
|
$line->remise_percent=$remise_percent;
|
||||||
$line->vat_src_code=$vat_src_code;
|
$line->vat_src_code=$vat_src_code;
|
||||||
$line->tva_tx=$tva_tx;
|
$line->tva_tx=$tva_tx;
|
||||||
$line->localtax1_tx=$localtax1_tx;
|
$line->localtax1_tx=$localtax1_tx;
|
||||||
$line->localtax2_tx=$localtax2_tx;
|
$line->localtax2_tx=$localtax2_tx;
|
||||||
$line->ref=$prod->ref;
|
$line->ref=$prod->ref;
|
||||||
$line->libelle=$prod->label;
|
$line->libelle=$prod->label;
|
||||||
$line->product_desc=$prod->description;
|
$line->product_desc=$prod->description;
|
||||||
$line->fk_unit=$prod->fk_unit;
|
$line->fk_unit=$prod->fk_unit;
|
||||||
|
|
||||||
// Added by Matelli (See http://matelli.fr/showcases/patchs-dolibarr/add-dates-in-order-lines.html)
|
// Added by Matelli (See http://matelli.fr/showcases/patchs-dolibarr/add-dates-in-order-lines.html)
|
||||||
// Save the start and end date of the line in the object
|
// Save the start and end date of the line in the object
|
||||||
if ($date_start) { $line->date_start = $date_start; }
|
if ($date_start) { $line->date_start = $date_start; }
|
||||||
if ($date_end) { $line->date_end = $date_end; }
|
if ($date_end) { $line->date_end = $date_end; }
|
||||||
|
|
||||||
$this->lines[] = $line;
|
$this->lines[] = $line;
|
||||||
|
|
||||||
/** POUR AJOUTER AUTOMATIQUEMENT LES SOUSPRODUITS a LA COMMANDE
|
/** POUR AJOUTER AUTOMATIQUEMENT LES SOUSPRODUITS a LA COMMANDE
|
||||||
if (! empty($conf->global->PRODUIT_SOUSPRODUITS))
|
if (! empty($conf->global->PRODUIT_SOUSPRODUITS))
|
||||||
{
|
{
|
||||||
$prod = new Product($this->db);
|
$prod = new Product($this->db);
|
||||||
$prod->fetch($idproduct);
|
$prod->fetch($idproduct);
|
||||||
$prod -> get_sousproduits_arbo();
|
$prod -> get_sousproduits_arbo();
|
||||||
$prods_arbo = $prod->get_arbo_each_prod();
|
$prods_arbo = $prod->get_arbo_each_prod();
|
||||||
if(count($prods_arbo) > 0)
|
if(count($prods_arbo) > 0)
|
||||||
{
|
{
|
||||||
foreach($prods_arbo as $key => $value)
|
foreach($prods_arbo as $key => $value)
|
||||||
{
|
{
|
||||||
// print "id : ".$value[1].' :qty: '.$value[0].'<br>';
|
// print "id : ".$value[1].' :qty: '.$value[0].'<br>';
|
||||||
if(! in_array($value[1],$this->products))
|
if(! in_array($value[1],$this->products))
|
||||||
$this->add_product($value[1], $value[0]);
|
$this->add_product($value[1], $value[0]);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
**/
|
**/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -163,6 +163,7 @@ function calcul_price_total($qty, $pu, $remise_percent_ligne, $txtva, $uselocalt
|
|||||||
return array();
|
return array();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if ($pu === '') $pu=0;
|
||||||
// pu_devise calculation from pu
|
// pu_devise calculation from pu
|
||||||
if (empty($pu_devise) && !empty($multicurrency_tx)) {
|
if (empty($pu_devise) && !empty($multicurrency_tx)) {
|
||||||
if (is_numeric($pu) && is_numeric($multicurrency_tx)) $pu_devise = $pu * $multicurrency_tx;
|
if (is_numeric($pu) && is_numeric($multicurrency_tx)) $pu_devise = $pu * $multicurrency_tx;
|
||||||
|
|||||||
@ -176,6 +176,10 @@ class InterfaceStripe
|
|||||||
if ($customer) {
|
if ($customer) {
|
||||||
$customer->delete();
|
$customer->delete();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$sql = "DELETE FROM ".MAIN_DB_PREFIX."societe_account";
|
||||||
|
$sql.= " WHERE site='stripe' AND fk_soc = " . $object->id;
|
||||||
|
$this->db->query($sql);
|
||||||
}
|
}
|
||||||
|
|
||||||
// If payment mode is linked to Strip, we update/delete Stripe too
|
// If payment mode is linked to Strip, we update/delete Stripe too
|
||||||
|
|||||||
@ -2428,7 +2428,7 @@ else
|
|||||||
$discount = new DiscountAbsolute($db);
|
$discount = new DiscountAbsolute($db);
|
||||||
$result = $discount->fetch(0, 0, $object->id);
|
$result = $discount->fetch(0, 0, $object->id);
|
||||||
if ($result > 0){
|
if ($result > 0){
|
||||||
print '. '.$langs->trans("CreditNoteConvertedIntoDiscount", $object->getLibType(), $discount->getNomUrl(1, 'discount')).'<br>';
|
print '. '.$langs->trans("CreditNoteConvertedIntoDiscount", $object->getLibType(1), $discount->getNomUrl(1, 'discount')).'<br>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
|
|||||||
@ -172,7 +172,7 @@ if (! empty($force_install_message))
|
|||||||
?>
|
?>
|
||||||
<ul>
|
<ul>
|
||||||
<li>/var/lib/dolibarr/documents</li>
|
<li>/var/lib/dolibarr/documents</li>
|
||||||
<li>C:/My Documents/dolibarr/</li>
|
<li>C:/My Documents/dolibarr/documents</li>
|
||||||
</ul>
|
</ul>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@ -201,6 +201,7 @@ if (! empty($force_install_message))
|
|||||||
<ul>
|
<ul>
|
||||||
<li>http://localhost/</li>
|
<li>http://localhost/</li>
|
||||||
<li>http://www.myserver.com:8180/dolibarr</li>
|
<li>http://www.myserver.com:8180/dolibarr</li>
|
||||||
|
<li>https://www.myvirtualfordolibarr.com/</li>
|
||||||
</ul>
|
</ul>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@ -382,7 +383,7 @@ if (! empty($force_install_message))
|
|||||||
} ?>
|
} ?>
|
||||||
>
|
>
|
||||||
</td>
|
</td>
|
||||||
<td class="comment"><?php echo $langs->trans("DatabasePrefix"); ?></td>
|
<td class="comment"><?php echo $langs->trans("DatabasePrefixDescription"); ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr class="hidesqlite">
|
<tr class="hidesqlite">
|
||||||
|
|||||||
@ -566,7 +566,7 @@ function detect_dolibarr_main_url_root()
|
|||||||
$dolibarr_main_url_root = $_SERVER["SERVER_URL"] . $_SERVER["DOCUMENT_URI"];
|
$dolibarr_main_url_root = $_SERVER["SERVER_URL"] . $_SERVER["DOCUMENT_URI"];
|
||||||
} // If SCRIPT_URI, SERVER_URL, DOCUMENT_URI not defined (Ie: Apache 2.0.44 for Windows)
|
} // If SCRIPT_URI, SERVER_URL, DOCUMENT_URI not defined (Ie: Apache 2.0.44 for Windows)
|
||||||
else {
|
else {
|
||||||
$proto = 'http';
|
$proto = ( (!empty($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == 'on') || $_SERVER['SERVER_PORT'] == 443) ? 'https' : 'http';
|
||||||
if (!empty($_SERVER["HTTP_HOST"])) {
|
if (!empty($_SERVER["HTTP_HOST"])) {
|
||||||
$serverport = $_SERVER["HTTP_HOST"];
|
$serverport = $_SERVER["HTTP_HOST"];
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@ -50,13 +50,14 @@ ServerPortDescription=Database server port. Keep empty if unknown.
|
|||||||
DatabaseServer=Database server
|
DatabaseServer=Database server
|
||||||
DatabaseName=Database name
|
DatabaseName=Database name
|
||||||
DatabasePrefix=Database table prefix
|
DatabasePrefix=Database table prefix
|
||||||
|
DatabasePrefixDescription=Database table prefix. If empty, defaults to llx_.
|
||||||
AdminLogin=User account for the Dolibarr database owner.
|
AdminLogin=User account for the Dolibarr database owner.
|
||||||
PasswordAgain=Retype password confirmation
|
PasswordAgain=Retype password confirmation
|
||||||
AdminPassword=Password for Dolibarr database owner.
|
AdminPassword=Password for Dolibarr database owner.
|
||||||
CreateDatabase=Create database
|
CreateDatabase=Create database
|
||||||
CreateUser=Create user account or grant user account permission on the Dolibarr database
|
CreateUser=Create user account or grant user account permission on the Dolibarr database
|
||||||
DatabaseSuperUserAccess=Database server - Superuser access
|
DatabaseSuperUserAccess=Database server - Superuser access
|
||||||
CheckToCreateDatabase=Check the box if the database does not exist yet and so must be created.<br>In this case, you must fill in the user name and password for the superuser account at the bottom of this page.
|
CheckToCreateDatabase=Check the box if the database does not exist yet and so must be created.<br>In this case, you must also fill in the user name and password for the superuser account at the bottom of this page.
|
||||||
CheckToCreateUser=Check the box if:<br>the database user account does not yet exist and so must be created, or<br>if the user account exists but the database does not exist and permissions must be granted.<br>In this case, you must enter the user account and password and <b>also</b> the superuser account name and password at the bottom of this page. If this box is unchecked, database owner and password must already exist.
|
CheckToCreateUser=Check the box if:<br>the database user account does not yet exist and so must be created, or<br>if the user account exists but the database does not exist and permissions must be granted.<br>In this case, you must enter the user account and password and <b>also</b> the superuser account name and password at the bottom of this page. If this box is unchecked, database owner and password must already exist.
|
||||||
DatabaseRootLoginDescription=Superuser account name (to create new databases or new users), mandatory if the database or its owner does not already exist.
|
DatabaseRootLoginDescription=Superuser account name (to create new databases or new users), mandatory if the database or its owner does not already exist.
|
||||||
KeepEmptyIfNoPassword=Leave empty if superuser has no password (NOT recommended)
|
KeepEmptyIfNoPassword=Leave empty if superuser has no password (NOT recommended)
|
||||||
|
|||||||
@ -188,6 +188,7 @@ NumberOfUnitsSupplierInvoices=Number of units on supplier invoices
|
|||||||
EMailTextInterventionAddedContact=A new intervention %s has been assigned to you.
|
EMailTextInterventionAddedContact=A new intervention %s has been assigned to you.
|
||||||
EMailTextInterventionValidated=The intervention %s has been validated.
|
EMailTextInterventionValidated=The intervention %s has been validated.
|
||||||
EMailTextInvoiceValidated=The invoice %s has been validated.
|
EMailTextInvoiceValidated=The invoice %s has been validated.
|
||||||
|
EMailTextInvoicePayed=The invoice %s has been payed.
|
||||||
EMailTextProposalValidated=The proposal %s has been validated.
|
EMailTextProposalValidated=The proposal %s has been validated.
|
||||||
EMailTextProposalClosedSigned=The proposal %s has been closed signed.
|
EMailTextProposalClosedSigned=The proposal %s has been closed signed.
|
||||||
EMailTextOrderValidated=The order %s has been validated.
|
EMailTextOrderValidated=The order %s has been validated.
|
||||||
|
|||||||
@ -189,11 +189,11 @@ TicketGoIntoContactTab=Please go into "Contacts" tab to select them
|
|||||||
TicketMessageMailIntro=Introduction
|
TicketMessageMailIntro=Introduction
|
||||||
TicketMessageMailIntroHelp=This text is added only at the beginning of the email and will not be saved.
|
TicketMessageMailIntroHelp=This text is added only at the beginning of the email and will not be saved.
|
||||||
TicketMessageMailIntroLabelAdmin=Introduction to the message when sending email
|
TicketMessageMailIntroLabelAdmin=Introduction to the message when sending email
|
||||||
TicketMessageMailIntroText=<p> Hello </ p> A new response was sent on a ticket that you contact. Here is the message: </ p>
|
TicketMessageMailIntroText=Hello,<br>A new response was sent on a ticket that you contact. Here is the message:<br>
|
||||||
TicketMessageMailIntroHelpAdmin=This text will be inserted before the text of the response to a ticket.
|
TicketMessageMailIntroHelpAdmin=This text will be inserted before the text of the response to a ticket.
|
||||||
TicketMessageMailSignature=Signature
|
TicketMessageMailSignature=Signature
|
||||||
TicketMessageMailSignatureHelp=This text is added only at the end of the email and will not be saved.
|
TicketMessageMailSignatureHelp=This text is added only at the end of the email and will not be saved.
|
||||||
TicketMessageMailSignatureText=<p>Cordialement,</p><p>--</p>
|
TicketMessageMailSignatureText=<p>Sincerely,</p><p>--</p>
|
||||||
TicketMessageMailSignatureLabelAdmin=Signature of response email
|
TicketMessageMailSignatureLabelAdmin=Signature of response email
|
||||||
TicketMessageMailSignatureHelpAdmin=This text will be inserted after the response message.
|
TicketMessageMailSignatureHelpAdmin=This text will be inserted after the response message.
|
||||||
TicketMessageHelp=Only this text will be saved in the message list on ticket card.
|
TicketMessageHelp=Only this text will be saved in the message list on ticket card.
|
||||||
|
|||||||
@ -35,7 +35,7 @@ AgendaAutoActionDesc= Définissez ici les événements pour lesquels Dolibarr cr
|
|||||||
AgendaSetupOtherDesc= Cette page permet de configurer quelques options permettant d'exporter une vue de votre agenda Dolibarr vers un calendrier externe (Thunderbird, Google calendar, …)
|
AgendaSetupOtherDesc= Cette page permet de configurer quelques options permettant d'exporter une vue de votre agenda Dolibarr vers un calendrier externe (Thunderbird, Google calendar, …)
|
||||||
AgendaExtSitesDesc=Cette page permet d'ajouter des sources de calendriers externes pour les visualiser au sein de l'agenda Dolibarr.
|
AgendaExtSitesDesc=Cette page permet d'ajouter des sources de calendriers externes pour les visualiser au sein de l'agenda Dolibarr.
|
||||||
ActionsEvents=Événements pour lesquels Dolibarr doit insérer un évènement dans l'agenda en automatique.
|
ActionsEvents=Événements pour lesquels Dolibarr doit insérer un évènement dans l'agenda en automatique.
|
||||||
EventRemindersByEmailNotEnabled=Les rappels d'événements par email n'ont pas été activés dans la configuration du module Agenda.
|
EventRemindersByEmailNotEnabled=Les rappels d'événements par email n'ont pas été activés dans la configuration du module %s.
|
||||||
##### Agenda event labels #####
|
##### Agenda event labels #####
|
||||||
NewCompanyToDolibarr=Tiers %s créé
|
NewCompanyToDolibarr=Tiers %s créé
|
||||||
ContractValidatedInDolibarr=Contrat %s validé
|
ContractValidatedInDolibarr=Contrat %s validé
|
||||||
|
|||||||
@ -188,6 +188,7 @@ NumberOfUnitsSupplierInvoices=Quantités présentes dans les factures fournisseu
|
|||||||
EMailTextInterventionAddedContact=Une nouvelle intervention %s vous a été assignée
|
EMailTextInterventionAddedContact=Une nouvelle intervention %s vous a été assignée
|
||||||
EMailTextInterventionValidated=La fiche intervention %s vous concernant a été validée.
|
EMailTextInterventionValidated=La fiche intervention %s vous concernant a été validée.
|
||||||
EMailTextInvoiceValidated=La facture %s vous concernant a été validée.
|
EMailTextInvoiceValidated=La facture %s vous concernant a été validée.
|
||||||
|
EMailTextInvoicePayed=La facture %s a été payée.
|
||||||
EMailTextProposalValidated=La proposition commerciale %s vous concernant a été validée.
|
EMailTextProposalValidated=La proposition commerciale %s vous concernant a été validée.
|
||||||
EMailTextProposalClosedSigned=La proposition %s a été clôturée signée.
|
EMailTextProposalClosedSigned=La proposition %s a été clôturée signée.
|
||||||
EMailTextOrderValidated=La commande %s vous concernant a été validée.
|
EMailTextOrderValidated=La commande %s vous concernant a été validée.
|
||||||
|
|||||||
@ -71,6 +71,8 @@ function opensurvey_prepare_head(Opensurveysondage $object)
|
|||||||
*/
|
*/
|
||||||
function llxHeaderSurvey($title, $head="", $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='')
|
function llxHeaderSurvey($title, $head="", $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='')
|
||||||
{
|
{
|
||||||
|
global $conf, $mysoc;
|
||||||
|
|
||||||
top_htmlhead($head, $title, $disablejs, $disablehead, $arrayofjs, $arrayofcss); // Show html headers
|
top_htmlhead($head, $title, $disablejs, $disablehead, $arrayofjs, $arrayofcss); // Show html headers
|
||||||
print '<body id="mainbody" class="publicnewmemberform" style="margin-top: 10px;">';
|
print '<body id="mainbody" class="publicnewmemberform" style="margin-top: 10px;">';
|
||||||
|
|
||||||
|
|||||||
@ -249,14 +249,20 @@ if (empty($reshook))
|
|||||||
if (isset($_POST['ref_fourn_price_id']))
|
if (isset($_POST['ref_fourn_price_id']))
|
||||||
$object->fetch_product_fournisseur_price($_POST['ref_fourn_price_id']);
|
$object->fetch_product_fournisseur_price($_POST['ref_fourn_price_id']);
|
||||||
|
|
||||||
if ($conf->multicurrency->enabled) {
|
$newprice = price2num(GETPOST("price","alpha"));
|
||||||
$ret = $object->update_buyprice($quantity, $_POST["price"], $user, $_POST["price_base_type"], $supplier, $_POST["oselDispo"], $ref_fourn, $tva_tx, $_POST["charges"], $remise_percent, 0, $npr, $delivery_time_days, $supplier_reputation, array(), '', $_POST["multicurrency_price"], $_POST["multicurrency_price_base_type"], $_POST["multicurrency_tx"], $_POST["multicurrency_code"], $supplier_description);
|
|
||||||
|
if ($conf->multicurrency->enabled)
|
||||||
|
{
|
||||||
|
$multicurrency_tx = price2num(GETPOST("multicurrency_tx",'alpha'));
|
||||||
|
$multicurrency_price = price2num(GETPOST("multicurrency_price",'alpha'));
|
||||||
|
$multicurrency_code = GETPOST("multicurrency_code",'alpha');
|
||||||
|
|
||||||
|
$ret = $object->update_buyprice($quantity, $newprice, $user, $_POST["price_base_type"], $supplier, $_POST["oselDispo"], $ref_fourn, $tva_tx, $_POST["charges"], $remise_percent, 0, $npr, $delivery_time_days, $supplier_reputation, array(), '', $multicurrency_price, $_POST["multicurrency_price_base_type"], $multicurrency_tx, $multicurrency_code, $supplier_description);
|
||||||
} else {
|
} else {
|
||||||
$ret = $object->update_buyprice($quantity, $_POST["price"], $user, $_POST["price_base_type"], $supplier, $_POST["oselDispo"], $ref_fourn, $tva_tx, $_POST["charges"], $remise_percent, 0, $npr, $delivery_time_days, $supplier_reputation, array(), '', 0, 'HT', 1, '', $supplier_description);
|
$ret = $object->update_buyprice($quantity, $newprice, $user, $_POST["price_base_type"], $supplier, $_POST["oselDispo"], $ref_fourn, $tva_tx, $_POST["charges"], $remise_percent, 0, $npr, $delivery_time_days, $supplier_reputation, array(), '', 0, 'HT', 1, '', $supplier_description);
|
||||||
}
|
}
|
||||||
if ($ret < 0)
|
if ($ret < 0)
|
||||||
{
|
{
|
||||||
|
|
||||||
$error++;
|
$error++;
|
||||||
setEventMessages($object->error, $object->errors, 'errors');
|
setEventMessages($object->error, $object->errors, 'errors');
|
||||||
}
|
}
|
||||||
@ -566,7 +572,7 @@ if ($id > 0 || $ref)
|
|||||||
// Currency price qty min
|
// Currency price qty min
|
||||||
print '<tr><td class="fieldrequired">'.$langs->trans("PriceQtyMinCurrency").'</td>';
|
print '<tr><td class="fieldrequired">'.$langs->trans("PriceQtyMinCurrency").'</td>';
|
||||||
$pricesupplierincurrencytouse=(GETPOST('multicurrency_price')?GETPOST('multicurrency_price'):(isset($object->fourn_multicurrency_price)?$object->fourn_multicurrency_price:''));
|
$pricesupplierincurrencytouse=(GETPOST('multicurrency_price')?GETPOST('multicurrency_price'):(isset($object->fourn_multicurrency_price)?$object->fourn_multicurrency_price:''));
|
||||||
print '<td><input class="flat" name="multicurrency_price" size="8" value="'.$pricesupplierincurrencytouse.'">';
|
print '<td><input class="flat" name="multicurrency_price" size="8" value="'.price($pricesupplierincurrencytouse).'">';
|
||||||
print ' ';
|
print ' ';
|
||||||
print $form->selectPriceBaseType((GETPOST('multicurrency_price_base_type')?GETPOST('multicurrency_price_base_type'):'HT'), "multicurrency_price_base_type"); // We keep 'HT' here, multicurrency_price_base_type is not yet supported for supplier prices
|
print $form->selectPriceBaseType((GETPOST('multicurrency_price_base_type')?GETPOST('multicurrency_price_base_type'):'HT'), "multicurrency_price_base_type"); // We keep 'HT' here, multicurrency_price_base_type is not yet supported for supplier prices
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
@ -678,18 +684,18 @@ SCRIPT;
|
|||||||
{
|
{
|
||||||
//WYSIWYG Editor
|
//WYSIWYG Editor
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
|
||||||
|
|
||||||
print '<tr>';
|
print '<tr>';
|
||||||
print '<td>'.$langs->trans('ProductSupplierDescription').'</td>';
|
print '<td>'.$langs->trans('ProductSupplierDescription').'</td>';
|
||||||
print '<td>';
|
print '<td>';
|
||||||
|
|
||||||
$doleditor = new DolEditor('supplier_description', $object->desc_supplier, '', 160, 'dolibarr_details', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, ROWS_4, '90%');
|
$doleditor = new DolEditor('supplier_description', $object->desc_supplier, '', 160, 'dolibarr_details', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, ROWS_4, '90%');
|
||||||
$doleditor->Create();
|
$doleditor->Create();
|
||||||
|
|
||||||
print '</td>';
|
print '</td>';
|
||||||
print '</tr>';
|
print '</tr>';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (is_object($hookmanager))
|
if (is_object($hookmanager))
|
||||||
{
|
{
|
||||||
$parameters=array('id_fourn'=>$id_fourn,'prod_id'=>$object->id);
|
$parameters=array('id_fourn'=>$id_fourn,'prod_id'=>$object->id);
|
||||||
|
|||||||
@ -38,27 +38,27 @@ class Ticket extends CommonObject
|
|||||||
* @var string ID to identify managed object
|
* @var string ID to identify managed object
|
||||||
*/
|
*/
|
||||||
public $element = 'ticket';
|
public $element = 'ticket';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var string Name of table without prefix where object is stored
|
* @var string Name of table without prefix where object is stored
|
||||||
*/
|
*/
|
||||||
public $table_element = 'ticket';
|
public $table_element = 'ticket';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var string Name of field for link to tickets
|
* @var string Name of field for link to tickets
|
||||||
*/
|
*/
|
||||||
public $fk_element='fk_ticket';
|
public $fk_element='fk_ticket';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var int Does ticketcore support multicompany module ? 0=No test on entity, 1=Test with field entity, 2=Test with link by societe
|
* @var int Does ticketcore support multicompany module ? 0=No test on entity, 1=Test with field entity, 2=Test with link by societe
|
||||||
*/
|
*/
|
||||||
public $ismultientitymanaged = 1;
|
public $ismultientitymanaged = 1;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var int Does ticketcore support extrafields ? 0=No, 1=Yes
|
* @var int Does ticketcore support extrafields ? 0=No, 1=Yes
|
||||||
*/
|
*/
|
||||||
public $isextrafieldmanaged = 1;
|
public $isextrafieldmanaged = 1;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var string String with name of icon for ticketcore. Must be the part after the 'object_' into object_ticketcore.png
|
* @var string String with name of icon for ticketcore. Must be the part after the 'object_' into object_ticketcore.png
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -88,9 +88,9 @@ if ($id > 0 || ! empty($ref))
|
|||||||
{
|
{
|
||||||
$result = $object->fetch($id, $ref, '', 1);
|
$result = $object->fetch($id, $ref, '', 1);
|
||||||
$object->getrights();
|
$object->getrights();
|
||||||
$entitytouseforuserdir = $object->entity;
|
//$upload_dir = $conf->user->multidir_output[$object->entity] . "/" . $object->id ;
|
||||||
if (empty($entitytouseforuserdir)) $entitytouseforuserdir=1;
|
// For users, the upload_dir is always $conf->user->entity for the moment
|
||||||
$upload_dir = $conf->user->multidir_output[$entitytouseforuserdir] . "/" . $object->id ;
|
$upload_dir = $conf->user->dir_output. "/" . $object->id ;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
|
// Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
|
||||||
|
|||||||
@ -228,7 +228,7 @@ if (preg_match('/\.\./',$fullpath_original_file) || preg_match('/[<>|]/',$fullpa
|
|||||||
if ($modulepart == 'barcode')
|
if ($modulepart == 'barcode')
|
||||||
{
|
{
|
||||||
$generator=GETPOST("generator","alpha");
|
$generator=GETPOST("generator","alpha");
|
||||||
$code=GETPOST("code",'alpha');
|
$code=GETPOST("code",'none'); // This can be rich content (qrcode, datamatrix, ...)
|
||||||
$encoding=GETPOST("encoding","alpha");
|
$encoding=GETPOST("encoding","alpha");
|
||||||
$readable=GETPOST("readable",'alpha')?GETPOST("readable","alpha"):"Y";
|
$readable=GETPOST("readable",'alpha')?GETPOST("readable","alpha"):"Y";
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user