Patch level : 10.0
Files correlati : lv* Ricompilazione Demo : [ ] Commento : Creata libreria di funzioni comuni per gestione lavanderie. Aggiiunte funzioni per compilare dati creazione ed aggiornamento git-svn-id: svn://10.65.10.50/trunk@17050 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
parent
831d6e7c55
commit
be687993c2
19
lv/lvlib.cpp
Executable file
19
lv/lvlib.cpp
Executable file
@ -0,0 +1,19 @@
|
||||
#include "lvlib.h"
|
||||
|
||||
#include <utility.h>
|
||||
|
||||
void lv_set_creation_info(TRectype& rec)
|
||||
{
|
||||
rec.put("UTCREAZ", user());
|
||||
const TDate oggi(TODAY);
|
||||
rec.put("DTCREAZ", oggi);
|
||||
rec.put("ORCREAZ", daytime());
|
||||
}
|
||||
|
||||
void lv_set_update_info(TRectype& rec)
|
||||
{
|
||||
rec.put("UTULAGG", user());
|
||||
const TDate oggi(TODAY);
|
||||
rec.put("DTULAGG", oggi);
|
||||
rec.put("ORULAGG", daytime());
|
||||
}
|
11
lv/lvlib.h
Executable file
11
lv/lvlib.h
Executable file
@ -0,0 +1,11 @@
|
||||
#ifndef __LVLIB_H
|
||||
#define __LVLIB_H
|
||||
|
||||
#ifndef __ISAM_H
|
||||
#include <isam.h>
|
||||
#endif
|
||||
|
||||
void lv_set_creation_info(TRectype& rec);
|
||||
void lv_set_update_info(TRectype& rec);
|
||||
|
||||
#endif
|
Loading…
x
Reference in New Issue
Block a user