Add option ACCOUNTANCY_DISABLE_CLOSURE_LINE_BY_LINE
Conflicts: htdocs/accountancy/bookkeeping/list.php
This commit is contained in:
parent
c7fd9f5a3a
commit
e9c42bf715
@ -197,7 +197,7 @@ $arrayfields = array(
|
|||||||
't.date_creation'=>array('label'=>$langs->trans("DateCreation"), 'checked'=>0),
|
't.date_creation'=>array('label'=>$langs->trans("DateCreation"), 'checked'=>0),
|
||||||
't.tms'=>array('label'=>$langs->trans("DateModification"), 'checked'=>0),
|
't.tms'=>array('label'=>$langs->trans("DateModification"), 'checked'=>0),
|
||||||
't.date_export'=>array('label'=>$langs->trans("DateExport"), 'checked'=>1),
|
't.date_export'=>array('label'=>$langs->trans("DateExport"), 'checked'=>1),
|
||||||
't.date_validated'=>array('label'=>$langs->trans("DateValidationAndLock"), 'checked'=>1),
|
't.date_validated'=>array('label'=>$langs->trans("DateValidationAndLock"), 'checked'=>1, 'enabled'=>!getDolGlobalString("ACCOUNTANCY_DISABLE_CLOSURE_LINE_BY_LINE")),
|
||||||
't.import_key'=>array('label'=>$langs->trans("ImportId"), 'checked'=>0, 'position'=>1100),
|
't.import_key'=>array('label'=>$langs->trans("ImportId"), 'checked'=>0, 'position'=>1100),
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -769,16 +769,18 @@ if ($action == 'export_file') {
|
|||||||
|
|
||||||
$form_question['separator'] = array('name'=>'separator', 'type'=>'separator');
|
$form_question['separator'] = array('name'=>'separator', 'type'=>'separator');
|
||||||
|
|
||||||
// If 0 or not set, we NOT check by default.
|
if (!getDolGlobalString("ACCOUNTANCY_DISABLE_CLOSURE_LINE_BY_LINE")) {
|
||||||
$checked = (isset($conf->global->ACCOUNTING_DEFAULT_NOT_NOTIFIED_VALIDATION_DATE) || !empty($conf->global->ACCOUNTING_DEFAULT_NOT_NOTIFIED_VALIDATION_DATE));
|
// If 0 or not set, we NOT check by default.
|
||||||
$form_question['notifiedvalidationdate'] = array(
|
$checked = (isset($conf->global->ACCOUNTING_DEFAULT_NOT_NOTIFIED_VALIDATION_DATE) || !empty($conf->global->ACCOUNTING_DEFAULT_NOT_NOTIFIED_VALIDATION_DATE));
|
||||||
'name' => 'notifiedvalidationdate',
|
$form_question['notifiedvalidationdate'] = array(
|
||||||
'type' => 'checkbox',
|
'name' => 'notifiedvalidationdate',
|
||||||
'label' => $langs->trans('NotifiedValidationDate'),
|
'type' => 'checkbox',
|
||||||
'value' => $checked,
|
'label' => $langs->trans('NotifiedValidationDate', $langs->transnoentitiesnoconv("MenuAccountancyClosure")),
|
||||||
);
|
'value' => $checked,
|
||||||
|
);
|
||||||
|
|
||||||
$form_question['separator2'] = array('name'=>'separator2', 'type'=>'separator');
|
$form_question['separator2'] = array('name'=>'separator2', 'type'=>'separator');
|
||||||
|
}
|
||||||
|
|
||||||
$formconfirm = $form->formconfirm($_SERVER["PHP_SELF"].'?'.$param, $langs->trans("ExportFilteredList").' ('.$listofformat[$formatexportset].')', $langs->trans('ConfirmExportFile'), 'export_fileconfirm', $form_question, '', 1, 300, 600);
|
$formconfirm = $form->formconfirm($_SERVER["PHP_SELF"].'?'.$param, $langs->trans("ExportFilteredList").' ('.$listofformat[$formatexportset].')', $langs->trans('ConfirmExportFile'), 'export_fileconfirm', $form_question, '', 1, 300, 600);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -166,7 +166,7 @@ $arrayfields = array(
|
|||||||
't.credit'=>array('label'=>$langs->trans("Credit"), 'checked'=>1),
|
't.credit'=>array('label'=>$langs->trans("Credit"), 'checked'=>1),
|
||||||
't.lettering_code'=>array('label'=>$langs->trans("LetteringCode"), 'checked'=>1),
|
't.lettering_code'=>array('label'=>$langs->trans("LetteringCode"), 'checked'=>1),
|
||||||
't.date_export'=>array('label'=>$langs->trans("DateExport"), 'checked'=>1),
|
't.date_export'=>array('label'=>$langs->trans("DateExport"), 'checked'=>1),
|
||||||
't.date_validated'=>array('label'=>$langs->trans("DateValidation"), 'checked'=>1),
|
't.date_validated'=>array('label'=>$langs->trans("DateValidation"), 'checked'=>1, 'enabled'=>!getDolGlobalString("ACCOUNTANCY_DISABLE_CLOSURE_LINE_BY_LINE")),
|
||||||
't.import_key'=>array('label'=>$langs->trans("ImportId"), 'checked'=>0, 'position'=>1100),
|
't.import_key'=>array('label'=>$langs->trans("ImportId"), 'checked'=>0, 'position'=>1100),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@ -112,6 +112,7 @@ if ($action == 'validate_movements_confirm' && !empty($user->rights->accounting-
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* View
|
* View
|
||||||
*/
|
*/
|
||||||
@ -178,20 +179,40 @@ for ($i = 1; $i <= 12; $i++) {
|
|||||||
}
|
}
|
||||||
print '<td width="60" class="right"><b>'.$langs->trans("Total").'</b></td></tr>';
|
print '<td width="60" class="right"><b>'.$langs->trans("Total").'</b></td></tr>';
|
||||||
|
|
||||||
$sql = "SELECT COUNT(b.rowid) as detail,";
|
if (getDolGlobalString("ACCOUNTANCY_DISABLE_CLOSURE_LINE_BY_LINE")) {
|
||||||
for ($i = 1; $i <= 12; $i++) {
|
// TODO Analyse is done by finding record not into a closed period
|
||||||
$j = $i + ($conf->global->SOCIETE_FISCAL_MONTH_START ? $conf->global->SOCIETE_FISCAL_MONTH_START : 1) - 1;
|
$sql = "SELECT COUNT(b.rowid) as detail,";
|
||||||
if ($j > 12) {
|
for ($i = 1; $i <= 12; $i++) {
|
||||||
$j -= 12;
|
$j = $i + ($conf->global->SOCIETE_FISCAL_MONTH_START ? $conf->global->SOCIETE_FISCAL_MONTH_START : 1) - 1;
|
||||||
|
if ($j > 12) {
|
||||||
|
$j -= 12;
|
||||||
|
}
|
||||||
|
$sql .= " SUM(".$db->ifsql("MONTH(b.doc_date)=".$j, "1", "0").") AS month".str_pad($j, 2, "0", STR_PAD_LEFT).",";
|
||||||
}
|
}
|
||||||
$sql .= " SUM(".$db->ifsql("MONTH(b.doc_date)=".$j, "1", "0").") AS month".str_pad($j, 2, "0", STR_PAD_LEFT).",";
|
$sql .= " COUNT(b.rowid) as total";
|
||||||
|
$sql .= " FROM ".MAIN_DB_PREFIX."accounting_bookkeeping as b";
|
||||||
|
$sql .= " WHERE b.doc_date >= '".$db->idate($search_date_start)."'";
|
||||||
|
$sql .= " AND b.doc_date <= '".$db->idate($search_date_end)."'";
|
||||||
|
$sql .= " AND b.entity IN (".getEntity('bookkeeping', 0).")"; // We don't share object for accountancy
|
||||||
|
// Loop on each closed period
|
||||||
|
$sql .= " AND b.doc_date BETWEEN 0 AND 0";
|
||||||
|
} else {
|
||||||
|
// Analyse closed record using the unitary flag/date on each record
|
||||||
|
$sql = "SELECT COUNT(b.rowid) as detail,";
|
||||||
|
for ($i = 1; $i <= 12; $i++) {
|
||||||
|
$j = $i + ($conf->global->SOCIETE_FISCAL_MONTH_START ? $conf->global->SOCIETE_FISCAL_MONTH_START : 1) - 1;
|
||||||
|
if ($j > 12) {
|
||||||
|
$j -= 12;
|
||||||
|
}
|
||||||
|
$sql .= " SUM(".$db->ifsql("MONTH(b.doc_date)=".$j, "1", "0").") AS month".str_pad($j, 2, "0", STR_PAD_LEFT).",";
|
||||||
|
}
|
||||||
|
$sql .= " COUNT(b.rowid) as total";
|
||||||
|
$sql .= " FROM ".MAIN_DB_PREFIX."accounting_bookkeeping as b";
|
||||||
|
$sql .= " WHERE b.doc_date >= '".$db->idate($search_date_start)."'";
|
||||||
|
$sql .= " AND b.doc_date <= '".$db->idate($search_date_end)."'";
|
||||||
|
$sql .= " AND b.entity IN (".getEntity('bookkeeping', 0).")"; // We don't share object for accountancy
|
||||||
|
$sql .= " AND date_validated IS NULL";
|
||||||
}
|
}
|
||||||
$sql .= " COUNT(b.rowid) as total";
|
|
||||||
$sql .= " FROM ".MAIN_DB_PREFIX."accounting_bookkeeping as b";
|
|
||||||
$sql .= " WHERE b.doc_date >= '".$db->idate($search_date_start)."'";
|
|
||||||
$sql .= " AND b.doc_date <= '".$db->idate($search_date_end)."'";
|
|
||||||
$sql .= " AND b.entity IN (".getEntity('bookkeeping', 0).")"; // We don't share object for accountancy
|
|
||||||
$sql .= " AND date_validated IS NULL";
|
|
||||||
|
|
||||||
dol_syslog('htdocs/accountancy/closure/index.php', LOG_DEBUG);
|
dol_syslog('htdocs/accountancy/closure/index.php', LOG_DEBUG);
|
||||||
$resql = $db->query($sql);
|
$resql = $db->query($sql);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user