Aggiunta componenti pagine webform e ajax
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
using SteamWare.Reports;
|
||||
using SteamWare;
|
||||
using SteamWare.Reports;
|
||||
using System.Collections.Generic;
|
||||
using System.Web.Http;
|
||||
|
||||
namespace MP_API.Controllers
|
||||
namespace MP_MAG.Controllers
|
||||
{
|
||||
public class PrintQueueConfController : ApiController
|
||||
{
|
||||
@@ -11,14 +12,14 @@ namespace MP_API.Controllers
|
||||
/// GET: api/PrintQueue
|
||||
/// </summary>
|
||||
/// <returns>lista oggetto Json in formato SteamwareSDK.queueConf</returns>
|
||||
public List<queueConf> Get()
|
||||
public List<SteamWare.Reports.queueConf> Get()
|
||||
{
|
||||
List<queueConf> answ = MagData.MagDataLayer.man.queueConfJson;
|
||||
List<SteamWare.Reports.queueConf> answ = MagData.MagDataLayer.man.queueConfJson;
|
||||
// se vuoto... creo!
|
||||
if (answ.Count == 0)
|
||||
{
|
||||
queueConf currConf;
|
||||
devInfoParam currDevInfoParam = new devInfoParam()
|
||||
SteamWare.Reports.queueConf currConf;
|
||||
SteamWare.Reports.devInfoParam currDevInfoParam = new SteamWare.Reports.devInfoParam()
|
||||
{
|
||||
OutputFormat = "EMF",
|
||||
PageHeight = "297mm",
|
||||
@@ -28,7 +29,7 @@ namespace MP_API.Controllers
|
||||
MarginRight = "10mm",
|
||||
MarginTop = "10mm"
|
||||
};
|
||||
currConf = new queueConf()
|
||||
currConf = new SteamWare.Reports.queueConf()
|
||||
{
|
||||
name = "default",
|
||||
template = "missing.rdlc",
|
||||
|
||||
Reference in New Issue
Block a user