Fix conf code di stampa + aggiunte altre conf x reports
This commit is contained in:
@@ -161,7 +161,7 @@ namespace AppData
|
||||
int.TryParse(keyParam, out intIdx);
|
||||
tab = (DataTable)DataLayer.man.taIL.getByKey(intIdx);
|
||||
break;
|
||||
case reportRichiesto.stackLabel:
|
||||
case reportRichiesto.bunkLabel:
|
||||
int.TryParse(keyParam, out intIdx);
|
||||
tab = (DataTable)DataLayer.man.taRepStack.GetData(intIdx);
|
||||
break;
|
||||
@@ -202,7 +202,7 @@ namespace AppData
|
||||
report.ReportPath = string.Format(@"{0}\PartLabel.rdlc", repoBasePath);
|
||||
report.DataSources.Add(new ReportDataSource(memLayer.ML.cdv("ReportDS_DocPart"), caricaDati(tipoReport, keyParam)));
|
||||
break;
|
||||
case reportRichiesto.stackLabel:
|
||||
case reportRichiesto.bunkLabel:
|
||||
report.ReportPath = string.Format(@"{0}\StackLabel.rdlc", repoBasePath);
|
||||
report.DataSources.Add(new ReportDataSource(memLayer.ML.cdv("ReportDS_DocStack"), caricaDati(tipoReport, keyParam)));
|
||||
break;
|
||||
@@ -351,7 +351,7 @@ namespace AppData
|
||||
string pagWidth = "";
|
||||
string pagHeigth = "";
|
||||
string margin = "";
|
||||
reportRichiesto report = reportRichiesto.stackLabel;
|
||||
reportRichiesto report = reportRichiesto.bunkLabel;
|
||||
string tipo = "";
|
||||
|
||||
switch (documento)
|
||||
@@ -374,7 +374,7 @@ namespace AppData
|
||||
break;
|
||||
case tipoDocumento.docStack:
|
||||
tipo = "DocStack";
|
||||
report = reportRichiesto.stackLabel;
|
||||
report = reportRichiesto.bunkLabel;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
||||
+263
-262
@@ -1,294 +1,295 @@
|
||||
namespace NKC_SDK
|
||||
{
|
||||
/// <summary>
|
||||
/// Stati degli oggetti TAKT e Stack
|
||||
/// </summary>
|
||||
public enum CStatus
|
||||
{
|
||||
/// <summary>
|
||||
/// Programmato
|
||||
/// Stati degli oggetti TAKT e Stack
|
||||
/// </summary>
|
||||
Programmed = 0,
|
||||
/// <summary>
|
||||
/// In corso
|
||||
/// </summary>
|
||||
Running,
|
||||
/// <summary>
|
||||
/// Completato
|
||||
/// </summary>
|
||||
Done
|
||||
}
|
||||
public enum CStatus
|
||||
{
|
||||
/// <summary>
|
||||
/// Programmato
|
||||
/// </summary>
|
||||
Programmed = 0,
|
||||
/// <summary>
|
||||
/// In corso
|
||||
/// </summary>
|
||||
Running,
|
||||
/// <summary>
|
||||
/// Completato
|
||||
/// </summary>
|
||||
Done
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Tipologia di macchina
|
||||
/// </summary>
|
||||
public enum mType
|
||||
{
|
||||
Multiax = 0,
|
||||
Offline
|
||||
}
|
||||
/// <summary>
|
||||
/// TIpologia di ordine
|
||||
/// </summary>
|
||||
public enum oType
|
||||
{
|
||||
BatchRequest = 0,
|
||||
OfflineOrder
|
||||
}
|
||||
/// <summary>
|
||||
/// modalità funzionamento batch list
|
||||
/// </summary>
|
||||
public enum BatchListMode
|
||||
{
|
||||
/// <summary>
|
||||
/// Modalità normale (stima/nesting)
|
||||
/// Tipologia di macchina
|
||||
/// </summary>
|
||||
Standard,
|
||||
public enum mType
|
||||
{
|
||||
Multiax = 0,
|
||||
Offline
|
||||
}
|
||||
/// <summary>
|
||||
/// MOdalità validazione aprticolari
|
||||
/// TIpologia di ordine
|
||||
/// </summary>
|
||||
PartsEval
|
||||
}
|
||||
/// <summary>
|
||||
/// Stati degli oggetti Batch
|
||||
/// </summary>
|
||||
public enum BatchStatus
|
||||
{
|
||||
public enum oType
|
||||
{
|
||||
BatchRequest = 0,
|
||||
OfflineOrder
|
||||
}
|
||||
/// <summary>
|
||||
/// CSV importato
|
||||
/// modalità funzionamento batch list
|
||||
/// </summary>
|
||||
Imported = 0,
|
||||
public enum BatchListMode
|
||||
{
|
||||
/// <summary>
|
||||
/// Modalità normale (stima/nesting)
|
||||
/// </summary>
|
||||
Standard,
|
||||
/// <summary>
|
||||
/// MOdalità validazione aprticolari
|
||||
/// </summary>
|
||||
PartsEval
|
||||
}
|
||||
/// <summary>
|
||||
/// Nesting richiesto (In corso)
|
||||
/// Stati degli oggetti Batch
|
||||
/// </summary>
|
||||
EstimationRequested,
|
||||
public enum BatchStatus
|
||||
{
|
||||
/// <summary>
|
||||
/// CSV importato
|
||||
/// </summary>
|
||||
Imported = 0,
|
||||
/// <summary>
|
||||
/// Nesting richiesto (In corso)
|
||||
/// </summary>
|
||||
EstimationRequested,
|
||||
/// <summary>
|
||||
/// Nesting Completato
|
||||
/// </summary>
|
||||
EstimationDone,
|
||||
/// <summary>
|
||||
/// Nesting richiesto (In corso)
|
||||
/// </summary>
|
||||
NestRequested,
|
||||
/// <summary>
|
||||
/// Nesting Completato
|
||||
/// </summary>
|
||||
NestDone,
|
||||
/// <summary>
|
||||
/// Nesting approvato
|
||||
/// </summary>
|
||||
Approved,
|
||||
/// <summary>
|
||||
/// Nesting scartato
|
||||
/// </summary>
|
||||
Discarded,
|
||||
/// <summary>
|
||||
/// Errori in fase di import o calcolo
|
||||
/// </summary>
|
||||
Errors,
|
||||
/// <summary>
|
||||
/// Impiegato per effettuare un test di validazione di un SINGOLO ITEM/PART
|
||||
/// </summary>
|
||||
PartEval,
|
||||
/// <summary>
|
||||
/// Test di validazione KO per un SINGOLO ITEM/PART
|
||||
/// </summary>
|
||||
PartKo,
|
||||
/// <summary>
|
||||
/// Test di validazione OK per un SINGOLO ITEM/PART
|
||||
/// </summary>
|
||||
PartOk
|
||||
}
|
||||
/// <summary>
|
||||
/// Nesting Completato
|
||||
/// Posizione / Activity degli oggetti Batch
|
||||
/// </summary>
|
||||
EstimationDone,
|
||||
/// <summary>
|
||||
/// Nesting richiesto (In corso)
|
||||
/// </summary>
|
||||
NestRequested,
|
||||
/// <summary>
|
||||
/// Nesting Completato
|
||||
/// </summary>
|
||||
NestDone,
|
||||
/// <summary>
|
||||
/// Nesting approvato
|
||||
/// </summary>
|
||||
Approved,
|
||||
/// <summary>
|
||||
/// Nesting scartato
|
||||
/// </summary>
|
||||
Discarded,
|
||||
/// <summary>
|
||||
/// Errori in fase di import o calcolo
|
||||
/// </summary>
|
||||
Errors,
|
||||
/// <summary>
|
||||
/// Impiegato per effettuare un test di validazione di un SINGOLO ITEM/PART
|
||||
/// </summary>
|
||||
PartEval,
|
||||
/// <summary>
|
||||
/// Test di validazione KO per un SINGOLO ITEM/PART
|
||||
/// </summary>
|
||||
PartKo,
|
||||
/// <summary>
|
||||
/// Test di validazione OK per un SINGOLO ITEM/PART
|
||||
/// </summary>
|
||||
PartOk
|
||||
}
|
||||
/// <summary>
|
||||
/// Posizione / Activity degli oggetti Batch
|
||||
/// </summary>
|
||||
public enum BatchPosition
|
||||
{
|
||||
/// <summary>
|
||||
/// Non iniziato
|
||||
/// </summary>
|
||||
NotStarted = 0,
|
||||
/// <summary>
|
||||
/// Stack In corso
|
||||
/// </summary>
|
||||
StackStarted,
|
||||
/// <summary>
|
||||
/// Stack Completato
|
||||
/// </summary>
|
||||
StackDone,
|
||||
/// <summary>
|
||||
/// Stack currently in LOAD
|
||||
/// </summary>
|
||||
Current,
|
||||
/// <summary>
|
||||
/// Stack completed
|
||||
/// </summary>
|
||||
Completed
|
||||
}
|
||||
public enum BatchPosition
|
||||
{
|
||||
/// <summary>
|
||||
/// Non iniziato
|
||||
/// </summary>
|
||||
NotStarted = 0,
|
||||
/// <summary>
|
||||
/// Stack In corso
|
||||
/// </summary>
|
||||
StackStarted,
|
||||
/// <summary>
|
||||
/// Stack Completato
|
||||
/// </summary>
|
||||
StackDone,
|
||||
/// <summary>
|
||||
/// Stack currently in LOAD
|
||||
/// </summary>
|
||||
Current,
|
||||
/// <summary>
|
||||
/// Stack completed
|
||||
/// </summary>
|
||||
Completed
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Stati degli oggetti PANEL/SHEET
|
||||
/// </summary>
|
||||
public enum PStatus
|
||||
{
|
||||
/// <summary>
|
||||
/// Programmato
|
||||
/// Stati degli oggetti PANEL/SHEET
|
||||
/// </summary>
|
||||
Programmed = 0,
|
||||
public enum PStatus
|
||||
{
|
||||
/// <summary>
|
||||
/// Programmato
|
||||
/// </summary>
|
||||
Programmed = 0,
|
||||
/// <summary>
|
||||
/// Stampa in corso
|
||||
/// </summary>
|
||||
Printing,
|
||||
/// <summary>
|
||||
/// Stampa completata
|
||||
/// </summary>
|
||||
Printed,
|
||||
/// <summary>
|
||||
/// Lavorazione in corso
|
||||
/// </summary>
|
||||
Machining,
|
||||
/// <summary>
|
||||
/// Lavorazione completata
|
||||
/// </summary>
|
||||
Machined,
|
||||
/// <summary>
|
||||
/// In fase di scaricamento
|
||||
/// </summary>
|
||||
Unloading,
|
||||
/// <summary>
|
||||
/// Completato / scaricato da macchina (anche su tavola di scarico)
|
||||
/// </summary>
|
||||
Unloaded,
|
||||
/// <summary>
|
||||
/// Presente / letto su PROD e pronto su scissor lift
|
||||
/// </summary>
|
||||
Present,
|
||||
/// <summary>
|
||||
/// Da rilavorare
|
||||
/// </summary>
|
||||
ToBeRedone
|
||||
}
|
||||
/// <summary>
|
||||
/// Stampa in corso
|
||||
/// Destinazioni per ITEM post CNC WORK
|
||||
/// </summary>
|
||||
Printing,
|
||||
public enum ItemDest
|
||||
{
|
||||
/// <summary>
|
||||
/// Destinato a BIN (painting)
|
||||
/// </summary>
|
||||
Bin,
|
||||
/// <summary>
|
||||
/// Destinato a Cart (KIT)
|
||||
/// </summary>
|
||||
Cart,
|
||||
/// <summary>
|
||||
/// Indefinito
|
||||
/// </summary>
|
||||
Undef
|
||||
}
|
||||
/// <summary>
|
||||
/// Stampa completata
|
||||
/// Stati ammessi per ITEM
|
||||
/// </summary>
|
||||
Printed,
|
||||
/// <summary>
|
||||
/// Lavorazione in corso
|
||||
/// </summary>
|
||||
Machining,
|
||||
/// <summary>
|
||||
/// Lavorazione completata
|
||||
/// </summary>
|
||||
Machined,
|
||||
/// <summary>
|
||||
/// In fase di scaricamento
|
||||
/// </summary>
|
||||
Unloading,
|
||||
/// <summary>
|
||||
/// Completato / scaricato da macchina (anche su tavola di scarico)
|
||||
/// </summary>
|
||||
Unloaded,
|
||||
/// <summary>
|
||||
/// Presente / letto su PROD e pronto su scissor lift
|
||||
/// </summary>
|
||||
Present,
|
||||
/// <summary>
|
||||
/// Da rilavorare
|
||||
/// </summary>
|
||||
ToBeRedone
|
||||
}
|
||||
/// <summary>
|
||||
/// Destinazioni per ITEM post CNC WORK
|
||||
/// </summary>
|
||||
public enum ItemDest
|
||||
{
|
||||
/// <summary>
|
||||
/// Destinato a BIN (painting)
|
||||
/// </summary>
|
||||
Bin,
|
||||
/// <summary>
|
||||
/// Destinato a Cart (KIT)
|
||||
/// </summary>
|
||||
Cart,
|
||||
/// <summary>
|
||||
/// Indefinito
|
||||
/// </summary>
|
||||
Undef
|
||||
}
|
||||
/// <summary>
|
||||
/// Stati ammessi per ITEM
|
||||
/// </summary>
|
||||
public enum ItemStatus
|
||||
{
|
||||
/// <summary>
|
||||
/// Programmato
|
||||
/// </summary>
|
||||
Programmed,
|
||||
/// <summary>
|
||||
/// Completato/Fatto/tagliato
|
||||
/// </summary>
|
||||
Made,
|
||||
/// <summary>
|
||||
/// Preso da operatore
|
||||
/// </summary>
|
||||
PickUp,
|
||||
/// <summary>
|
||||
/// Depositato su Bin/Cesta
|
||||
/// </summary>
|
||||
Removed,
|
||||
/// <summary>
|
||||
/// Indefinito
|
||||
/// </summary>
|
||||
Undef
|
||||
}
|
||||
public enum ItemStatus
|
||||
{
|
||||
/// <summary>
|
||||
/// Programmato
|
||||
/// </summary>
|
||||
Programmed,
|
||||
/// <summary>
|
||||
/// Completato/Fatto/tagliato
|
||||
/// </summary>
|
||||
Made,
|
||||
/// <summary>
|
||||
/// Preso da operatore
|
||||
/// </summary>
|
||||
PickUp,
|
||||
/// <summary>
|
||||
/// Depositato su Bin/Cesta
|
||||
/// </summary>
|
||||
Removed,
|
||||
/// <summary>
|
||||
/// Indefinito
|
||||
/// </summary>
|
||||
Undef
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Tipi di barcode gestiti
|
||||
/// </summary>
|
||||
public enum codeType
|
||||
{
|
||||
UNK = 0,
|
||||
Item,
|
||||
ItemGeneric,
|
||||
OtherItem,
|
||||
Material,
|
||||
Sheet,
|
||||
Stack,
|
||||
Batch,
|
||||
Cart,
|
||||
Bin,
|
||||
BinProcessed,
|
||||
SecScreen
|
||||
}
|
||||
/// <summary>
|
||||
/// tipologia di report (FILE rdlc) gestito in stampa...
|
||||
/// </summary>
|
||||
public enum reportRichiesto
|
||||
{
|
||||
cartLabel,
|
||||
paintLabelPre,
|
||||
paintLabelPost,
|
||||
partLabel,
|
||||
stackLabel
|
||||
}
|
||||
/// <summary>
|
||||
/// tipologia di DOCUMENTO gestito in stampa...
|
||||
/// </summary>
|
||||
public enum tipoDocumento
|
||||
{
|
||||
/// <summary>
|
||||
/// Etichetta per un BIN (pre esecuzione compito, es verniciatura)
|
||||
/// Tipi di barcode gestiti
|
||||
/// </summary>
|
||||
docBinPre,
|
||||
public enum codeType
|
||||
{
|
||||
UNK = 0,
|
||||
Item,
|
||||
ItemGeneric,
|
||||
OtherItem,
|
||||
Material,
|
||||
Sheet,
|
||||
Stack,
|
||||
Batch,
|
||||
Cart,
|
||||
Bin,
|
||||
BinProcessed,
|
||||
SecScreen
|
||||
}
|
||||
/// <summary>
|
||||
/// Etichetta per un BIN (POST esecuzione compito, es verniciatura)
|
||||
/// tipologia di report (FILE rdlc) gestito in stampa...
|
||||
/// </summary>
|
||||
docBinPost,
|
||||
public enum reportRichiesto
|
||||
{
|
||||
bunkLabel,
|
||||
cartLabel,
|
||||
offlineLabel,
|
||||
paintLabelPre,
|
||||
paintLabelPost,
|
||||
partLabel
|
||||
}
|
||||
/// <summary>
|
||||
/// Etichetta per un CART
|
||||
/// tipologia di DOCUMENTO gestito in stampa...
|
||||
/// </summary>
|
||||
docCart,
|
||||
/// <summary>
|
||||
/// Docuemtno per singolo ITEM:
|
||||
/// - QR code
|
||||
/// - num cart/bin
|
||||
/// - T/P/* (se va fatto qualcosa di speciale)
|
||||
/// - codice dmtx leggibile (es IT000023) su NUOVA riga
|
||||
/// </summary>
|
||||
docPart,
|
||||
/// <summary>
|
||||
/// doc per STACK
|
||||
/// </summary>
|
||||
docStack,
|
||||
/// <summary>
|
||||
/// NON DEFINITO
|
||||
/// </summary>
|
||||
docND
|
||||
}
|
||||
public enum tipoDocumento
|
||||
{
|
||||
/// <summary>
|
||||
/// Etichetta per un BIN (pre esecuzione compito, es verniciatura)
|
||||
/// </summary>
|
||||
docBinPre,
|
||||
/// <summary>
|
||||
/// Etichetta per un BIN (POST esecuzione compito, es verniciatura)
|
||||
/// </summary>
|
||||
docBinPost,
|
||||
/// <summary>
|
||||
/// Etichetta per un CART
|
||||
/// </summary>
|
||||
docCart,
|
||||
/// <summary>
|
||||
/// Docuemtno per singolo ITEM:
|
||||
/// - QR code
|
||||
/// - num cart/bin
|
||||
/// - T/P/* (se va fatto qualcosa di speciale)
|
||||
/// - codice dmtx leggibile (es IT000023) su NUOVA riga
|
||||
/// </summary>
|
||||
docPart,
|
||||
/// <summary>
|
||||
/// doc per STACK
|
||||
/// </summary>
|
||||
docStack,
|
||||
/// <summary>
|
||||
/// NON DEFINITO
|
||||
/// </summary>
|
||||
docND
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Enum degli stati ammessi per il Nesting
|
||||
/// </summary>
|
||||
public enum procStatus
|
||||
{
|
||||
waiting = 0,
|
||||
running,
|
||||
error,
|
||||
completed,
|
||||
aborted,
|
||||
accepted,
|
||||
refused
|
||||
}
|
||||
/// <summary>
|
||||
/// Enum degli stati ammessi per il Nesting
|
||||
/// </summary>
|
||||
public enum procStatus
|
||||
{
|
||||
waiting = 0,
|
||||
running,
|
||||
error,
|
||||
completed,
|
||||
aborted,
|
||||
accepted,
|
||||
refused
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace NKC_WF.Controllers
|
||||
{
|
||||
/// <summary>
|
||||
/// Restituisce un array JSon x le conf delle code di stampa
|
||||
/// GET: api/PrintQueue
|
||||
/// GET: api/PrintQueueConf
|
||||
/// </summary>
|
||||
/// <returns>lista oggetto Json in formato SteamwareSDK.queueConf</returns>
|
||||
public List<queueConf> Get()
|
||||
@@ -57,13 +57,5 @@ namespace NKC_WF.Controllers
|
||||
return answ;
|
||||
}
|
||||
|
||||
#if false
|
||||
// GET: api/PrintQueue/5
|
||||
public string Get(int id)
|
||||
{
|
||||
return "value";
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -47,10 +47,19 @@ namespace NKC_WF.Controllers
|
||||
DataTable tab = new DataTable();
|
||||
switch (tipoReport)
|
||||
{
|
||||
case reportRichiesto.bunkLabel:
|
||||
int.TryParse(keyParam, out intIdx);
|
||||
tab = (DataTable)DataLayer.man.taRepStack.GetData(intIdx);
|
||||
answ.Add("stp_prt_StackLabel", tab);
|
||||
break;
|
||||
case reportRichiesto.cartLabel:
|
||||
// int.TryParse(keyParam, out intIdx);
|
||||
// tab = (DataTable)DataLayer.man.taRepStack.GetData(intIdx);
|
||||
break;
|
||||
case reportRichiesto.offlineLabel:
|
||||
// int.TryParse(keyParam, out intIdx);
|
||||
// tab = (DataTable)DataLayer.man.taRepStack.GetData(intIdx);
|
||||
break;
|
||||
case reportRichiesto.paintLabelPre:
|
||||
// int.TryParse(keyParam, out intIdx);
|
||||
// tab = (DataTable)DataLayer.man.taRepStack.GetData(intIdx);
|
||||
@@ -64,11 +73,6 @@ namespace NKC_WF.Controllers
|
||||
tab = (DataTable)DataLayer.man.taIL.getByKey(intIdx);
|
||||
answ.Add("stp_prt_PartLabel", tab);
|
||||
break;
|
||||
case reportRichiesto.stackLabel:
|
||||
int.TryParse(keyParam, out intIdx);
|
||||
tab = (DataTable)DataLayer.man.taRepStack.GetData(intIdx);
|
||||
answ.Add("stp_prt_StackLabel", tab);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
@@ -79,13 +83,16 @@ namespace NKC_WF.Controllers
|
||||
|
||||
protected reportRichiesto reportByTipo(string tipo)
|
||||
{
|
||||
reportRichiesto report = reportRichiesto.stackLabel;
|
||||
reportRichiesto report = reportRichiesto.bunkLabel;
|
||||
switch (tipo)
|
||||
{
|
||||
case "docPaint":
|
||||
case "docStack":
|
||||
report = reportRichiesto.bunkLabel;
|
||||
break;
|
||||
case "docBinPre":
|
||||
report = reportRichiesto.paintLabelPre;
|
||||
break;
|
||||
case "docPaintPost":
|
||||
case "docBinPost":
|
||||
report = reportRichiesto.paintLabelPost;
|
||||
break;
|
||||
case "docCart":
|
||||
@@ -94,8 +101,8 @@ namespace NKC_WF.Controllers
|
||||
case "docPart":
|
||||
report = reportRichiesto.partLabel;
|
||||
break;
|
||||
case "docStack":
|
||||
report = reportRichiesto.stackLabel;
|
||||
case "docOffline":
|
||||
report = reportRichiesto.offlineLabel;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
||||
@@ -1,62 +1,92 @@
|
||||
[
|
||||
{
|
||||
"name": "queueBin",
|
||||
"template": "BinLabel.rdlc",
|
||||
"printerName": "Microsoft Print to PDF",
|
||||
"deviceInfoParam": {
|
||||
"OutputFormat": "EMF",
|
||||
"PageHeight": "11in",
|
||||
"PageWidth": "8.5in",
|
||||
"MarginLeft": "0.5in",
|
||||
"MarginRight": "0.5in",
|
||||
"MarginTop": "0.5in",
|
||||
"MarginBottom": "0.5in",
|
||||
"xmlParam": "<DeviceInfo><OutputFormat>EMF</OutputFormat><PageWidth>8.5in</PageWidth><PageHeight>11in</PageHeight><MarginTop>0.5in</MarginTop><MarginLeft>0.5in</MarginLeft><MarginRight>0.5in</MarginRight><MarginBottom>0.5in</MarginBottom></DeviceInfo>"
|
||||
{
|
||||
"name": "queueUnloadBin",
|
||||
"template": "BinLabel.rdlc",
|
||||
"printerName": "Microsoft Print to PDF",
|
||||
"deviceInfoParam": {
|
||||
"OutputFormat": "EMF",
|
||||
"PageHeight": "11in",
|
||||
"PageWidth": "8.5in",
|
||||
"MarginLeft": "0.5in",
|
||||
"MarginRight": "0.5in",
|
||||
"MarginTop": "0.5in",
|
||||
"MarginBottom": "0.5in",
|
||||
"xmlParam": "<DeviceInfo><OutputFormat>EMF</OutputFormat><PageWidth>8.5in</PageWidth><PageHeight>11in</PageHeight><MarginTop>0.5in</MarginTop><MarginLeft>0.5in</MarginLeft><MarginRight>0.5in</MarginRight><MarginBottom>0.5in</MarginBottom></DeviceInfo>"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "queueUnloadCart",
|
||||
"template": "CartLabel.rdlc",
|
||||
"printerName": "Microsoft Print to PDF",
|
||||
"deviceInfoParam": {
|
||||
"OutputFormat": "EMF",
|
||||
"PageHeight": "11in",
|
||||
"PageWidth": "8.5in",
|
||||
"MarginLeft": "0.5in",
|
||||
"MarginRight": "0.5in",
|
||||
"MarginTop": "0.5in",
|
||||
"MarginBottom": "0.5in",
|
||||
"xmlParam": "<DeviceInfo><OutputFormat>EMF</OutputFormat><PageWidth>8.5in</PageWidth><PageHeight>11in</PageHeight><MarginTop>0.5in</MarginTop><MarginLeft>0.5in</MarginLeft><MarginRight>0.5in</MarginRight><MarginBottom>0.5in</MarginBottom></DeviceInfo>"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "queueBunk",
|
||||
"template": "StackLabel.rdlc",
|
||||
"printerName": "Microsoft Print to PDF",
|
||||
"deviceInfoParam": {
|
||||
"OutputFormat": "EMF",
|
||||
"PageHeight": "11in",
|
||||
"PageWidth": "8.5in",
|
||||
"MarginLeft": "0.5in",
|
||||
"MarginRight": "0.5in",
|
||||
"MarginTop": "0.5in",
|
||||
"MarginBottom": "0.5in",
|
||||
"xmlParam": "<DeviceInfo><OutputFormat>EMF</OutputFormat><PageWidth>8.5in</PageWidth><PageHeight>11in</PageHeight><MarginTop>0.5in</MarginTop><MarginLeft>0.5in</MarginLeft><MarginRight>0.5in</MarginRight><MarginBottom>0.5in</MarginBottom></DeviceInfo>"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "queuePaint",
|
||||
"template": "BinLabel.rdlc",
|
||||
"printerName": "Microsoft Print to PDF",
|
||||
"deviceInfoParam": {
|
||||
"OutputFormat": "EMF",
|
||||
"PageHeight": "11in",
|
||||
"PageWidth": "8.5in",
|
||||
"MarginLeft": "0.5in",
|
||||
"MarginRight": "0.5in",
|
||||
"MarginTop": "0.5in",
|
||||
"MarginBottom": "0.5in",
|
||||
"xmlParam": "<DeviceInfo><OutputFormat>EMF</OutputFormat><PageWidth>8.5in</PageWidth><PageHeight>11in</PageHeight><MarginTop>0.5in</MarginTop><MarginLeft>0.5in</MarginLeft><MarginRight>0.5in</MarginRight><MarginBottom>0.5in</MarginBottom></DeviceInfo>"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "queuePart",
|
||||
"template": "PartLabel.rdlc",
|
||||
"printerName": "Microsoft Print to PDF",
|
||||
"deviceInfoParam": {
|
||||
"OutputFormat": "EMF",
|
||||
"PageHeight": "11in",
|
||||
"PageWidth": "8.5in",
|
||||
"MarginLeft": "0.5in",
|
||||
"MarginRight": "0.5in",
|
||||
"MarginTop": "0.5in",
|
||||
"MarginBottom": "0.5in",
|
||||
"xmlParam": "<DeviceInfo><OutputFormat>EMF</OutputFormat><PageWidth>8.5in</PageWidth><PageHeight>11in</PageHeight><MarginTop>0.5in</MarginTop><MarginLeft>0.5in</MarginLeft><MarginRight>0.5in</MarginRight><MarginBottom>0.5in</MarginBottom></DeviceInfo>"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "queueOffline",
|
||||
"template": "OfflineLabel.rdlc",
|
||||
"printerName": "Microsoft Print to PDF",
|
||||
"deviceInfoParam": {
|
||||
"OutputFormat": "EMF",
|
||||
"PageHeight": "11in",
|
||||
"PageWidth": "8.5in",
|
||||
"MarginLeft": "0.5in",
|
||||
"MarginRight": "0.5in",
|
||||
"MarginTop": "0.5in",
|
||||
"MarginBottom": "0.5in",
|
||||
"xmlParam": "<DeviceInfo><OutputFormat>EMF</OutputFormat><PageWidth>8.5in</PageWidth><PageHeight>11in</PageHeight><MarginTop>0.5in</MarginTop><MarginLeft>0.5in</MarginLeft><MarginRight>0.5in</MarginRight><MarginBottom>0.5in</MarginBottom></DeviceInfo>"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "queueBunk",
|
||||
"template": "StackLabel.rdlc",
|
||||
"printerName": "Microsoft Print to PDF",
|
||||
"deviceInfoParam": {
|
||||
"OutputFormat": "EMF",
|
||||
"PageHeight": "11in",
|
||||
"PageWidth": "8.5in",
|
||||
"MarginLeft": "0.5in",
|
||||
"MarginRight": "0.5in",
|
||||
"MarginTop": "0.5in",
|
||||
"MarginBottom": "0.5in",
|
||||
"xmlParam": "<DeviceInfo><OutputFormat>EMF</OutputFormat><PageWidth>8.5in</PageWidth><PageHeight>11in</PageHeight><MarginTop>0.5in</MarginTop><MarginLeft>0.5in</MarginLeft><MarginRight>0.5in</MarginRight><MarginBottom>0.5in</MarginBottom></DeviceInfo>"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "queueCart",
|
||||
"template": "CartLabel.rdlc",
|
||||
"printerName": "Microsoft Print to PDF",
|
||||
"deviceInfoParam": {
|
||||
"OutputFormat": "EMF",
|
||||
"PageHeight": "11in",
|
||||
"PageWidth": "8.5in",
|
||||
"MarginLeft": "0.5in",
|
||||
"MarginRight": "0.5in",
|
||||
"MarginTop": "0.5in",
|
||||
"MarginBottom": "0.5in",
|
||||
"xmlParam": "<DeviceInfo><OutputFormat>EMF</OutputFormat><PageWidth>8.5in</PageWidth><PageHeight>11in</PageHeight><MarginTop>0.5in</MarginTop><MarginLeft>0.5in</MarginLeft><MarginRight>0.5in</MarginRight><MarginBottom>0.5in</MarginBottom></DeviceInfo>"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "queuePart",
|
||||
"template": "PartLabel.rdlc",
|
||||
"printerName": "Microsoft Print to PDF",
|
||||
"deviceInfoParam": {
|
||||
"OutputFormat": "EMF",
|
||||
"PageHeight": "11in",
|
||||
"PageWidth": "8.5in",
|
||||
"MarginLeft": "0.5in",
|
||||
"MarginRight": "0.5in",
|
||||
"MarginTop": "0.5in",
|
||||
"MarginBottom": "0.5in",
|
||||
"xmlParam": "<DeviceInfo><OutputFormat>EMF</OutputFormat><PageWidth>8.5in</PageWidth><PageHeight>11in</PageHeight><MarginTop>0.5in</MarginTop><MarginLeft>0.5in</MarginLeft><MarginRight>0.5in</MarginRight><MarginBottom>0.5in</MarginBottom></DeviceInfo>"
|
||||
}
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user