Fix : auto numbering receipt

This commit is contained in:
sparkyx 2024-02-11 16:59:01 +01:00
parent 49b769b98e
commit 1835c8e833
3 changed files with 11 additions and 11 deletions

View file

@ -1534,10 +1534,10 @@ class Acc_Ledger extends jrn_def_sql
$acc_end->pj=$e_pj;
/* if e_suggest != e_pj then do not increment sequence */
if (strcmp($e_pj, $e_pj_suggest)==0&&noalyss_strlentrim($e_pj)!=0)
{
$this->inc_seq_pj();
}
// if (strcmp($e_pj, $e_pj_suggest)==0&&noalyss_strlentrim($e_pj)!=0)
// {
// $this->inc_seq_pj();
// }
$this->pj=$acc_end->set_pj();

View file

@ -921,10 +921,10 @@ class Acc_Ledger_Purchase extends Acc_Ledger
array($internal,$seq));
/**= e_pj then do not increment sequence */
if ( strcmp($e_pj,$e_pj_suggest) == 0 && noalyss_strlentrim($e_pj) != 0 )
{
$this->inc_seq_pj();
}
// if ( strcmp($e_pj,$this->pj) == 0 && noalyss_strlentrim($e_pj) != 0 )
// {
// $this->inc_seq_pj();
// }
/* Save the attachment */
if ( isset ($_FILES))

View file

@ -621,9 +621,9 @@ class Acc_Ledger_Sale extends Acc_Ledger {
/* * = e_pj then do not increment sequence */
/* and e_pj is not null */
if (strcmp($e_pj, $e_pj_suggest) == 0 && noalyss_strlentrim($e_pj) != 0) {
$this->inc_seq_pj();
}
// if (strcmp($e_pj, $this->pj ) == 0 && noalyss_strlentrim($e_pj) != 0) {
// $this->inc_seq_pj();
// }
$this->db->exec_sql("update jrn set jr_internal=$1 where jr_grpt_id = $2" ,[$internal,$seq]);