Merge remote-tracking branch 'origin/develop' into 3.8
This commit is contained in:
commit
a73541194c
@ -164,6 +164,8 @@ UPDATE llx_const SET entity = __ENCRYPT('1')__ WHERE __DECRYPT('entity')__ = 0 A
|
|||||||
UPDATE llx_const SET entity = __ENCRYPT('1')__ WHERE __DECRYPT('entity')__ = 0 AND __DECRYPT('name')__ = "MAIN_MAIL_SMTPS_PW";
|
UPDATE llx_const SET entity = __ENCRYPT('1')__ WHERE __DECRYPT('entity')__ = 0 AND __DECRYPT('name')__ = "MAIN_MAIL_SMTPS_PW";
|
||||||
UPDATE llx_const SET entity = __ENCRYPT('1')__ WHERE __DECRYPT('entity')__ = 0 AND __DECRYPT('name')__ = "MAIN_MAIL_EMAIL_TLS";
|
UPDATE llx_const SET entity = __ENCRYPT('1')__ WHERE __DECRYPT('entity')__ = 0 AND __DECRYPT('name')__ = "MAIN_MAIL_EMAIL_TLS";
|
||||||
|
|
||||||
|
-- This option with this value is not compatible with 3.8. Value must be set to 'mutiselect', 'select2'...
|
||||||
|
DELETE from llx_const where name = 'MAIN_USE_JQUERY_MULTISELECT' and value = '1';
|
||||||
|
|
||||||
create table llx_bank_account_extrafields
|
create table llx_bank_account_extrafields
|
||||||
(
|
(
|
||||||
|
|||||||
@ -130,7 +130,6 @@ nbJours=Number days
|
|||||||
TitleAdminCP=Configuration of Leaves
|
TitleAdminCP=Configuration of Leaves
|
||||||
NoticePeriod=Notice period
|
NoticePeriod=Notice period
|
||||||
#Messages
|
#Messages
|
||||||
Hello=Hello
|
|
||||||
HolidaysToValidate=Validate leave requests
|
HolidaysToValidate=Validate leave requests
|
||||||
HolidaysToValidateBody=Below is a leave request to validate
|
HolidaysToValidateBody=Below is a leave request to validate
|
||||||
HolidaysToValidateDelay=This leave request will take place within a period of less than %s days.
|
HolidaysToValidateDelay=This leave request will take place within a period of less than %s days.
|
||||||
|
|||||||
@ -712,6 +712,8 @@ Genderman=Man
|
|||||||
Genderwoman=Woman
|
Genderwoman=Woman
|
||||||
ViewList=List view
|
ViewList=List view
|
||||||
Mandatory=Mandatory
|
Mandatory=Mandatory
|
||||||
|
Hello=Hello
|
||||||
|
Sincerely=Sincerely
|
||||||
# Week day
|
# Week day
|
||||||
Monday=Monday
|
Monday=Monday
|
||||||
Tuesday=Tuesday
|
Tuesday=Tuesday
|
||||||
|
|||||||
@ -259,14 +259,15 @@ if ($id > 0 || ! empty($ref))
|
|||||||
dol_print_error();
|
dol_print_error();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
print '
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(document).ready(function() {
|
||||||
|
$("#totalMargin").html("'. price($totalMargin, null, null, null, null, $rounding).'");
|
||||||
|
$("#marginRate").html("'.(($marginRate === '')?'n/a':price($marginRate, null, null, null, null, $rounding)."%").'");
|
||||||
|
$("#markRate").html("'.(($markRate === '')?'n/a':price($markRate, null, null, null, null, $rounding)."%").'");
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
';
|
||||||
|
|
||||||
llxFooter();
|
llxFooter();
|
||||||
$db->close();
|
$db->close();
|
||||||
?>
|
|
||||||
<script type="text/javascript">
|
|
||||||
$(document).ready(function() {
|
|
||||||
$("#totalMargin").html("<?php echo price($totalMargin, null, null, null, null, $rounding); ?>");
|
|
||||||
$("#marginRate").html("<?php echo (($marginRate === '')?'n/a':price($marginRate, null, null, null, null, $rounding)."%"); ?>");
|
|
||||||
$("#markRate").html("<?php echo (($markRate === '')?'n/a':price($markRate, null, null, null, null, $rounding)."%"); ?>");
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|||||||
@ -250,13 +250,15 @@ else
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
print '
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(document).ready(function() {
|
||||||
|
$("#totalMargin").html("'. price($totalMargin, null, null, null, null, $rounding).'");
|
||||||
|
$("#marginRate").html("'.(($marginRate === '')?'n/a':price($marginRate, null, null, null, null, $rounding)."%").'");
|
||||||
|
$("#markRate").html("'.(($markRate === '')?'n/a':price($markRate, null, null, null, null, $rounding)."%").'");
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
';
|
||||||
|
|
||||||
llxFooter();
|
llxFooter();
|
||||||
$db->close();
|
$db->close();
|
||||||
?>
|
|
||||||
<script type="text/javascript">
|
|
||||||
$(document).ready(function() {
|
|
||||||
$("#totalMargin").html("<?php echo price($totalMargin, null, null, null, null, $rounding); ?>");
|
|
||||||
$("#marginRate").html("<?php echo (($marginRate === '')?'n/a':price($marginRate, null, null, null, null, $rounding)."%"); ?>");
|
|
||||||
$("#markRate").html("<?php echo (($markRate === '')?'n/a':price($markRate, null, null, null, null, $rounding)."%"); ?>");
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user