mirror of
https://github.com/YunoHost-Apps/noalyss_ynh.git
synced 2024-09-03 19:46:20 +02:00
35 lines
866 B
PHP
35 lines
866 B
PHP
<?php
|
|
//@description:ACH Confirmation Achat
|
|
$_GET=array (
|
|
'gDossier' => '42',
|
|
'ac' => 'COMPTA/MENUACH/ACH',
|
|
);
|
|
$_POST=array (
|
|
'gDossier' => '42',
|
|
'e_client' => 'IMMOB',
|
|
'nb_item' => '1',
|
|
'p_jrn' => '3',
|
|
'e_comm' => 'Loyer',
|
|
'e_date' => '01.01.2014',
|
|
'e_ech' => '',
|
|
'jrn_type' => 'ACH',
|
|
'e_pj' => 'ACH1',
|
|
'e_pj_suggest' => 'ACH1',
|
|
'mt' => '1415995238.7737',
|
|
'e_mp' => '0',
|
|
'e_march0' => 'LOYER',
|
|
'e_march0_price' => '2560',
|
|
'e_march0_tva_id' => '4',
|
|
'e_march0_tva_amount' => '0',
|
|
'e_quant0' => '1',
|
|
'bon_comm' => '',
|
|
'other_info' => '',
|
|
'ac' => 'COMPTA/MENUACH/ACH',
|
|
'opd_name' => 'Paiement loyer',
|
|
'od_description' => 'Paiement du loyer',
|
|
'record' => 'Enregistrement',
|
|
);
|
|
$_POST['gDossier']=$gDossierLogInput;
|
|
$_GET['gDossier']=$gDossierLogInput;
|
|
$_REQUEST=array_merge($_GET,$_POST);
|
|
include 'compta_ach.inc.php';
|