Patch level : 10.0 patch 552

Files correlati     : lv0300a.msk lv3
Ricompilazione Demo : [ ]
Commento            :
Aggiunto in configurazione l'unità di misura del peso e un parametro per sapere la data dei buoni di consegna quando generati da una evasione

Implementata la gestione del secondo parametro nei programmi di evasione


git-svn-id: svn://10.65.10.50/trunk@19807 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
luca83 2009-12-17 12:21:45 +00:00
parent 5d62b161ae
commit 02dd834c59
4 changed files with 41 additions and 10 deletions

View File

@ -73,13 +73,15 @@
#define F_CODARTCAFIX 255
#define F_DESARTCAFIX 256
#define F_TIPOPR 257
#define F_UMPESO 258
#define F_DATABCON 259
#define F_PATH_CON 258
#define F_SHEET_NAME 259
#define F_PATH_MAN 260
#define F_PATH_LAVA 261
#define F_PATH_PUL 262
#define F_FILE_PUL 263
#define F_PATH_CON 260
#define F_SHEET_NAME 261
#define F_PATH_MAN 262
#define F_PATH_LAVA 263
#define F_PATH_PUL 264
#define F_FILE_PUL 265
#define S_CODNUM_RIT 101
#define S_TIPODOC_RIT 102

View File

@ -733,14 +733,33 @@ BEGIN
FIELD Tipopr
END
STRING F_UMPESO 3
BEGIN
PROMPT 40 17 "U.M. "
USE %UMS
INPUT CODTAB F_UMPESO
DISPLAY "Codice@6" CODTAB
DISPLAY "Descrizione@50" S0
OUTPUT F_UMPESO CODTAB
FIELD UmKg
FLAG "U"
CHECKTYPE REQUIRED
END
BOOLEAN F_DATABCON
BEGIN
PROMPT 1 18 "Data buono di consegna uguale alla data evasione buono di ritiro"
FIELD DataBcon
END
TEXT -1
BEGIN
PROMPT 0 19 "@bOpzioni articoli"
PROMPT 0 20 "@bOpzioni articoli"
END
BOOLEAN F_GESTSACA
BEGIN
PROMPT 1 20 "Gestione sacchi/carrello"
PROMPT 1 21 "Gestione sacchi/carrello"
FIELD Gestsaca
END

View File

@ -455,7 +455,12 @@ void TEvasione_msk::genera_documento()
TDocumento doc('D', kdoc.anno(), codnum, ++_ndoc);
doc.put(DOC_TIPODOC, tipodoc);
doc.put(DOC_STATO, stato);
doc.put(DOC_DATADOC, databolla);
if(ini_get_bool(CONFIG_DITTA, "lv", "DataBcon"))
doc.put(DOC_DATADOC, datagen);
else
doc.put(DOC_DATADOC, databolla);
doc.put(DOC_TIPOCF, 'C');
doc.put(DOC_CODCF, codcf);
doc.put(DOC_CODCONT, codcont);

View File

@ -420,7 +420,12 @@ void TEvasione_ter_msk::genera_buono()
TDocumento doc('D', kdoc.anno(), codnum, ++_ndoc);
doc.put(DOC_TIPODOC, tipodoc);
doc.put(DOC_STATO, stato);
doc.put(DOC_DATADOC, databolla);
if(ini_get_bool(CONFIG_DITTA, "lv", "DataBcon"))
doc.put(DOC_DATADOC, datagen);
else
doc.put(DOC_DATADOC, databolla);
doc.put(DOC_TIPOCF, 'C');
doc.put(DOC_CODCF, codcf);
doc.put(DOC_CODCONT, codcont);