Mantis #0001682: CA - ajouter possibilité d'exporter le plan analytique,

add action CSV:Analytic_Axis

(cherry picked from commit 0d0ce3647f)
This commit is contained in:
Dany De Bontridder 2019-01-25 21:33:41 +01:00
parent 18cb87d9bf
commit d78acab7a7
4 changed files with 28 additions and 20 deletions

View file

@ -83,24 +83,13 @@ if ($sa=="pa_write")
else else
{ {
$new=new Anc_Plan($cn); $new=new Anc_Plan($cn);
$new->name=$_POST['pa_name']; $new->name=$http->post("pa_name");
$new->description=$_POST['pa_description']; $new->description=$http->post("pa_description");
$new->add(); $new->add();
} }
$sa="anc_menu"; $sa="anc_menu";
} }
// Update the PA
if ($sa=="pa_update")
{
$pa_id=$http->get("pa_id","number");
$new=new Anc_Plan($cn, $pa_id);
$new->name=$_POST['pa_name'];
$new->description=$_POST['pa_description'];
$new->update();
$sa="anc_menu";
}
/* delete pa */ /* delete pa */
if ($sa=="pa_delete") if ($sa=="pa_delete")
@ -120,19 +109,25 @@ if ($sa=="pa_detail")
$pa_id=$http->get("pa_id","number"); $pa_id=$http->get("pa_id","number");
$new=new Anc_Plan($cn, $pa_id); $new=new Anc_Plan($cn, $pa_id);
$wSa=HtmlInput::hidden("sa", "pa_update");
$new->get(); $new->get();
$ret.= '<div class="content">'; $ret.= '<div class="content">';
$ret.= $new->form(); $ret.= $new->form();
$ret.= $wSa; // Export in CSV
$ret.="<p>"; $ret.='<form method="GET" action="export.php" style="display:inline">';
$ret.=Dossier::hidden();
$ret.=HtmlInput::hidden("act",'CSV:Analytic_Axis');
$ret.=HtmlInput::hidden("pa_id",$pa_id);
$ret.=HtmlInput::submit('export_analytic_axis',_("Export CSV"));
$ret.='</form>';
$ret.=HtmlInput::button_anchor(_('Efface ce plan'), '', 'remove_analytic_plan', $ret.=HtmlInput::button_anchor(_('Efface ce plan'), '', 'remove_analytic_plan',
'onclick="return confirm_box(\'remove_analytic_plan\',\'Effacer ?\',function () {window.location=\'do.php?ac='.$_REQUEST['ac'].'&pa_id='.$_GET['pa_id'].'&sa=pa_delete&'.$str_dossier.'\';})"', 'onclick="return confirm_box(\'remove_analytic_plan\',\'Effacer ?\',function () {window.location=\'do.php?ac='.$_REQUEST['ac'].'&pa_id='.$_GET['pa_id'].'&sa=pa_delete&'.$str_dossier.'\';})"',
'smallbutton'); 'smallbutton');
$ret.="</p>";
$ret.='</div>';
//--------------------------------------------------------------------- //---------------------------------------------------------------------
// Detail now // Detail now
// Use Manage_Table // Use Manage_Table
@ -141,7 +136,7 @@ if ($sa=="pa_detail")
$new=new Anc_Plan($cn, $pa_id); $new=new Anc_Plan($cn, $pa_id);
$new->get(); $new->get();
$ret.='<div class="content">'; $ret.='<div class="content" style="margin-top:1rem">';
$anc=new Poste_analytique_SQL($cn); $anc=new Poste_analytique_SQL($cn);
$anc->pa_id=$pa_id; $anc->pa_id=$pa_id;
$accounting=new Anc_Account_Table($anc); $accounting=new Anc_Account_Table($anc);

View file

@ -108,7 +108,7 @@ if ( !defined ("NOALYSS_PACKAGE_REPOSITORY")) {
if ( ! defined ("SYSINFO_DISPLAY")) { if ( ! defined ("SYSINFO_DISPLAY")) {
define ("SYSINFO_DISPLAY",TRUE); define ("SYSINFO_DISPLAY",TRUE);
} }
define ("DBVERSION",133); define ("DBVERSION",134);
define ("MONO_DATABASE",25); define ("MONO_DATABASE",25);
define ("DBVERSIONREPO",18); define ("DBVERSIONREPO",18);
define ('NOTFOUND','--not found--'); define ('NOTFOUND','--not found--');

View file

@ -10,6 +10,6 @@ operation_currency
join jrnx using (j_id) join jrnx using (j_id)
group by f_id,j_id; group by f_id,j_id;
commit ;
insert into version (val,v_description) values (133,'Currency : default accounting for currency difference '); insert into version (val,v_description) values (133,'Currency : default accounting for currency difference ');
commit ; commit ;

View file

@ -0,0 +1,13 @@
begin;
INSERT INTO public.menu_ref
(me_code, me_menu, me_file, me_url, me_description, me_parameter, me_javascript, me_type, me_description_etendue)
VALUES('CSV:Analytic_Axis', 'Export ANC', 'export_anc_axis_csv.php', NULL, 'Export ANC Liste comptes', NULL, NULL, 'PR', NULL);
insert into profile_menu (me_code,p_id,p_type_display) select distinct 'CSV:Analytic_Axis', p_id, 'P' from profile_menu
where
p_id in (select distinct p_id from profile_menu where me_code='PLANANC');
insert into version (val,v_description) values (134,'Export CSV:Analytic_Axis');
commit ;