Patch level :
Files correlati : Ricompilazione Demo : [ ] Commento : git-svn-id: svn://10.65.10.50/branches/R_10_00@22346 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
parent
5cf780b89c
commit
5c556f4fea
@ -18,13 +18,16 @@ DEFFLD(NUMREG) // Can be null
|
||||
|
||||
// Flags
|
||||
DEFFLD(IGNORA)
|
||||
DEFFLD(CONTRATTO)
|
||||
|
||||
// Content fields
|
||||
DEFFLD(DATAREG)
|
||||
DEFFLD(CORRISP)
|
||||
DEFFLD(MODPAG)
|
||||
DEFFLD(IMPORTO)
|
||||
DEFFLD(IMPOSTA)
|
||||
DEFFLD(TIPIMP)
|
||||
DEFFLD(NATOPE)
|
||||
DEFFLD(TIPOPE)
|
||||
DEFFLD(TOTALE)
|
||||
|
||||
#undef DEFFLD
|
||||
|
||||
|
@ -7,12 +7,12 @@
|
||||
|
||||
// @doc EXTERNAL
|
||||
|
||||
// @class Tab_application | Classe per la definizione della <c TRelation_application> per le tabelle
|
||||
// @class TTable_module_application | Classe per la definizione della <c TTable_module_application> per le tabelle di modulo
|
||||
//
|
||||
// @base public | TRelation_application
|
||||
class TTable_module_application : public TRelation_application
|
||||
|
||||
// @author:(INTERNAL) Nicola
|
||||
// @author:(INTERNAL) Guido
|
||||
// @access:(INTERNAL) Private Member
|
||||
{
|
||||
// @cmember:(INTERNAL) Maschera corrente dell'applicazione
|
||||
|
@ -686,6 +686,12 @@ bool TAS400_recordset::set(const char* column, const TVariant& var)
|
||||
return ok;
|
||||
}
|
||||
|
||||
bool TAS400_recordset::set(unsigned int column, const TVariant& var)
|
||||
{
|
||||
const TAS400_column_info& ci = (const TAS400_column_info&)column_info(column);
|
||||
return set_field(ci, var);
|
||||
}
|
||||
|
||||
bool TAS400_recordset::save_as_text(const char* path)
|
||||
{
|
||||
bool valid = path && *path;
|
||||
|
@ -120,6 +120,7 @@ protected:
|
||||
public:
|
||||
virtual TRecnotype new_rec(const char* buf = NULL);
|
||||
virtual bool set(const char* column, const TVariant& var);
|
||||
virtual bool set(unsigned int column, const TVariant& var);
|
||||
|
||||
virtual unsigned int columns() const;
|
||||
virtual const TRecordset_column_info& column_info(unsigned int column) const;
|
||||
|
Loading…
x
Reference in New Issue
Block a user