HRM Non working day change

How can I change non working day in Dolibarr 11.0 HRM from Saturday Sunday to Friday Saturday.

Thanks.

open the file htdocs/core/lib/date.lib.php there you can change.

set:-

$includesaturdayandsunday=0;

insert:-
$dateValue = date(“l”, $timestampStart);
$dateValue = strtolower($dateValue);

inside your country code put
if($dateValue==‘friday’ || $dateValue == 'saturday) $ferie=true;