16 lines
293 B
PHP
16 lines
293 B
PHP
<?php
|
|
//@description:ACH new purchase
|
|
$_GET=array (
|
|
'gDossier' => '42',
|
|
'ac' => 'COMPTA/MENUACH/ACH',
|
|
);
|
|
$_POST=array (
|
|
);
|
|
$_POST['gDossier']=$gDossierLogInput;
|
|
$_GET['gDossier']=$gDossierLogInput;
|
|
$_REQUEST=array_merge($_GET,$_POST);
|
|
|
|
html_page_start();
|
|
|
|
|
|
include 'compta_ach.inc.php';
|