Skip to content
Merged

20.0 #22

Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
c396a08
fix const WORKFLOW_RECEPTION_CLASSIFY_CLOSED_INVOICE (#31601)
thomas-Ngr Oct 29, 2024
87fdd4e
FIX #28505 Blank page from thirparty to projects (#31637)
PsyCrow-code Oct 30, 2024
bb3589e
Fix #31670 (#31671)
Humml87 Nov 4, 2024
f1581e9
Update commonobject.class.php (#31667)
Jarod1980 Nov 4, 2024
c580e5f
FIX #30432 make thirdparty code_client and code_compta modifiable via…
iLLixM Nov 4, 2024
578d2fe
Fix #31677 (#31678)
Humml87 Nov 4, 2024
2e4cba0
Fix missing token
eldy Nov 4, 2024
a781211
Merge branch '20.0' of git@github.com:Dolibarr/dolibarr.git into 20.0
eldy Nov 4, 2024
b8286ab
fix: List of UserGroup display wrong count of records( actual: nb gr…
FHenry Nov 5, 2024
56925af
Merge branch '18.0' of git@github.com:Dolibarr/dolibarr.git into 19.0
eldy Nov 5, 2024
6a01be1
Merge branch '19.0' of git@github.com:Dolibarr/dolibarr.git into 19.0
eldy Nov 5, 2024
46b80e8
Merge branch '19.0' of git@github.com:Dolibarr/dolibarr.git into 20.0
eldy Nov 5, 2024
141755f
Add more code to help debug
eldy Nov 6, 2024
74ce8c6
Merge branch '20.0' of git@github.com:Dolibarr/dolibarr.git into 20.0
eldy Nov 6, 2024
00b9943
Rename var to make debug easier
eldy Nov 6, 2024
b7821bd
FIX the autofix corrupted vat value must be triggered only if we are
eldy Nov 6, 2024
a9b6e69
FIX column position on PDF of payments
eldy Nov 6, 2024
43fb9db
Merge branch '19.0' of git@github.com:Dolibarr/dolibarr.git into 19.0
eldy Nov 6, 2024
ce7a364
Add option to test fix of #31696
eldy Nov 6, 2024
0819a57
Better fix for #31015
eldy Nov 6, 2024
bbf83c7
fix dol_getdate() when timestamp is an empty string (#31714)
uvaldenaire-opendsi Nov 6, 2024
bc8d443
FIX: Corrected typo preventing data from being saved (#31716)
atm-quentin Nov 6, 2024
e1b0cb6
Merge branch '18.0' of git@github.com:Dolibarr/dolibarr.git into 19.0
eldy Nov 6, 2024
bb6c4b2
Merge branch '19.0' of git@github.com:Dolibarr/dolibarr.git into 20.0
eldy Nov 6, 2024
0ab967a
Merge branch '20.0' of git@github.com:Dolibarr/dolibarr.git into 20.0
eldy Nov 6, 2024
434697e
FIX Search on batch code
eldy Nov 6, 2024
9374a31
Fix const INVOICE_USE_RETAINED_WARRANTY (#30533)
thomas-Ngr Nov 7, 2024
a7a18ba
Fix confusing behavior by add hidden conf MAIN_LIST_ORDER_LINK_DONT_U…
thersane-john Nov 7, 2024
1a3e9de
Fix save of error
eldy Nov 9, 2024
5bb34ab
Fix save of error
eldy Nov 9, 2024
c28cd8e
Merge branch '19.0' of git@github.com:Dolibarr/dolibarr.git into 19.0
eldy Nov 9, 2024
1b36a10
Merge branch '19.0' of git@github.com:Dolibarr/dolibarr.git into 20.0
eldy Nov 9, 2024
83a9070
Merge branch '20.0' of git@github.com:Dolibarr/dolibarr.git into 20.0
eldy Nov 9, 2024
e17eafa
FIX select variant by attribute. (#31759)
fappels Nov 10, 2024
940324f
fix dol_time_plus_duree with unit egal mn instead i (#31746)
frederic34 Nov 10, 2024
4d29fd4
More complete fix for #31746
eldy Nov 10, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions htdocs/admin/invoice_situation.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,17 +77,11 @@

$item = $formSetup->newItem('INVOICE_USE_RETAINED_WARRANTY');
$item->nameText = $langs->trans('AllowedInvoiceForRetainedWarranty');

$arrayAvailableType = array(
Facture::TYPE_SITUATION => $langs->trans("InvoiceSituation"),
Facture::TYPE_STANDARD.'+'.Facture::TYPE_SITUATION => $langs->trans("InvoiceSituation").' + '.$langs->trans("InvoiceStandard"),
);

if ($action == 'edit') {
$item->fieldInputOverride = $form->selectarray('INVOICE_USE_RETAINED_WARRANTY', $arrayAvailableType, $conf->global->INVOICE_USE_RETAINED_WARRANTY, 1);
} else {
$item->fieldOutputOverride= isset($arrayAvailableType[getDolGlobalString('INVOICE_USE_RETAINED_WARRANTY')]) ? $arrayAvailableType[getDolGlobalString('INVOICE_USE_RETAINED_WARRANTY')] : '';
}
$item->setAsSelect($arrayAvailableType);

//$item = $formSetup->newItem('INVOICE_RETAINED_WARRANTY_LIMITED_TO_SITUATION')->setAsYesNo();
//$item->nameText = $langs->trans('RetainedWarrantyOnlyForSituation');
Expand Down
10 changes: 9 additions & 1 deletion htdocs/commande/list.php
Original file line number Diff line number Diff line change
Expand Up @@ -2212,7 +2212,15 @@
// Ref
if (!empty($arrayfields['c.ref']['checked'])) {
print '<td class="nowraponall">';
print $generic_commande->getNomUrl(1, ($search_status != 2 ? 0 : $obj->fk_statut), 0, 0, 0, 1, 1);
$getNomUrlOption = $search_status != 2 ? 0 : $obj->fk_statut;
if (getDolGlobalInt('MAIN_LIST_ORDER_LINK_DONT_USE_STATUS')) {
// TODO : This hidden conf must be added to the user's individual conf.
// The user must be able to manage this behavior to adapt it to his use of the software, because depending on the employee's workstation, his use differs.
// This hidden configuration ensures that users are not confused by keeping the same behavior of click, whatever the current filter.
// If the aim is to use a different url when the filter is applied via the link in the left-hand menu, then this detection should be adapted instead.
$getNomUrlOption = '';
}
print $generic_commande->getNomUrl(1, $getNomUrlOption, 0, 0, 0, 1, 1);

$filename = dol_sanitizeFileName($obj->ref);
$filedir = $conf->commande->multidir_output[$conf->entity].'/'.dol_sanitizeFileName($obj->ref);
Expand Down
3 changes: 3 additions & 0 deletions htdocs/install/mysql/migration/repair.sql
Original file line number Diff line number Diff line change
Expand Up @@ -680,3 +680,6 @@ alter table llx_product_attribute_combination_price_level drop index fk_product_
alter table llx_product_attribute_combination_price_level drop index fk_product_attribute_combinati_62;
alter table llx_product_attribute_combination_price_level drop index fk_product_attribute_combinati_63;
ALTER TABLE llx_product_attribute_combination_price_level ADD UNIQUE INDEX uk_prod_att_comb_price_level(fk_product_attribute_combination, fk_price_level);

-- delete a constant that should not be set
DELETE FROM llx_const WHERE name = 'INVOICE_USE_RETAINED_WARRANTY' AND value = -1;