コード例 #1
0
ファイル: FillingData.cs プロジェクト: Proerp/Nuti01
 public string ThirdLineA1(bool isReadableText)
 {
     if ((this.printerName == GlobalVariables.PrinterName.PackInkjet || (this.printerName == GlobalVariables.PrinterName.CartonInkjet && this.ReprintCarton)) && this.BatchTypeID == (int)GlobalEnums.BatchTypeID.Repack)
     {
         BatchRepackDTO batchRepackDTO = this.printedBatchRepackDTO;
         return(batchRepackDTO.BatchCode + batchRepackDTO.LotCode + (isReadableText ? this.printedBatchRepackDTO.FillingLineCode : ""));
     }
     else
     {
         return(this.BatchCode + this.LotCode + (isReadableText ? this.FillingLineCode : ""));
     }
 }
コード例 #2
0
ファイル: FillingData.cs プロジェクト: Proerp/LAVIE12AUG
 public string ThirdLineA1(bool isReadableText)
 {
     if (this.Is2D_Repack)
     {
         BatchRepackDTO batchRepackDTO = this.printedBatchRepackDTO;
         return(batchRepackDTO.BatchCode + batchRepackDTO.LotCode + (isReadableText ? this.printedBatchRepackDTO.FillingLineCode : ""));
     }
     else
     {
         return(this.BatchCode + this.LotCode + (isReadableText ? this.FillingLineCode : ""));
     }
 }