Appunti stampa
This commit is contained in:
@@ -344,6 +344,13 @@
|
||||
<Compile Include="SMART\PLScanner.aspx.designer.cs">
|
||||
<DependentUpon>PLScanner.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SMART\printCartOdl.aspx.cs">
|
||||
<DependentUpon>printCartOdl.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="SMART\printCartOdl.aspx.designer.cs">
|
||||
<DependentUpon>printCartOdl.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SMART\SmartStarter.aspx.cs">
|
||||
<DependentUpon>SmartStarter.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
@@ -763,6 +770,7 @@
|
||||
<Content Include="SMART\login.aspx" />
|
||||
<Content Include="SMART\packList.aspx" />
|
||||
<Content Include="SMART\PLScanner.aspx" />
|
||||
<Content Include="SMART\printCartOdl.aspx" />
|
||||
<Content Include="SMART\SmartStarter.aspx" />
|
||||
<Content Include="SMART\tryLogin.aspx" />
|
||||
<Content Include="WebUserControls\cmp_activeParams.ascx" />
|
||||
|
||||
@@ -0,0 +1,37 @@
|
||||
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="printCartOdl.aspx.cs" Inherits="MP_MAG.SMART.printCartOdl" %>
|
||||
|
||||
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
|
||||
<div class="card m-2">
|
||||
<div class="card-header table-info">
|
||||
<h3>Stampa ODL</h3>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div class="row">
|
||||
<div class="col-12 col-md-4">
|
||||
Dati ODL:
|
||||
<ul>
|
||||
<li>cod articolo</li>
|
||||
<li>descrizione</li>
|
||||
<li>numero pezzi fatti</li>
|
||||
<li>numero pezzi STAMPABILI (fatti - UDC stampati)</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-12 col-md-4">
|
||||
buttons operativi (diversi x finiti e SL)
|
||||
<ul>
|
||||
<li>num UDC da stampare</li>
|
||||
<li>numero pezzi totali (qta * num)</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-12 col-md-4">
|
||||
dati stampe
|
||||
<ul>
|
||||
<li>num UDC stampati</li>
|
||||
<li>numero pezzi totali da UDC in magazzino</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<%--<div class="card-footer"></div>--%>
|
||||
</div>
|
||||
</asp:Content>
|
||||
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
|
||||
namespace MP_MAG.SMART
|
||||
{
|
||||
public partial class printCartOdl : System.Web.UI.Page
|
||||
{
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <generato automaticamente>
|
||||
// Codice generato da uno strumento.
|
||||
//
|
||||
// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
|
||||
// il codice viene rigenerato.
|
||||
// </generato automaticamente>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace MP_MAG.SMART
|
||||
{
|
||||
|
||||
|
||||
public partial class printCartOdl
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -38,8 +38,12 @@ namespace MP_MAG.WebUserControls
|
||||
// se l'operatore in sessione è DIVERSO da quello appena inviato --> effettuo NUOVO login
|
||||
if (MatrOpr == memLayer.ML.IntSessionObj("MatrOpr"))
|
||||
{
|
||||
#if false
|
||||
// rimando a pagina di stampa.. secondo tipo finiti / semilavorati
|
||||
tgtPage = newProdPrintData.isProdFinito ? "prtFiniti" : "prtSemilav";
|
||||
#endif
|
||||
// rimando a pagina di stampax ODL
|
||||
tgtPage = "prtCartOdl";
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user