You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
2.4 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using ZJ_BYD.DB;
using ZJ_BYD.Model;
namespace ZJ_BYD.Untils
{
public class PrintHelper
{
/// <summary>
/// 生成打印条码
/// </summary>
/// <param name="productSfcCode"></param>
/// <param name="stationCode"></param>
/// <param name="mskCode"></param>
/// <param name="autoPrint"></param>
/// <param name="totalCount"></param>
/// <returns></returns>
public static (bool ok, string barCode,string num, string msg) PrintByHttp_2(string stationCode, T_MaskCode mskCode, bool autoPrint = true, int totalCount = 0)
{
string searialNum;
//自动打印
if (autoPrint)
{
//查询当前机型当天已生产总数
totalCount = ResultHelper.QueryTotalCountByProductSfcCode(mskCode.ProductSfcCode, stationCode);
//流水号
searialNum = ExtendMethod.NumFormat(totalCount + 1);
}
else
{
//流水号
searialNum = ExtendMethod.NumFormat(totalCount);
}
//年份代码
var strYear = DateTime.Now.ToString("yyyy");
var yearCode = YearHelper.QueryYearCode(strYear);
int mouthInt = DateTime.Now.Month; //条码生成规则10月为011月为A12月为B。
string mouthStr;
switch (mouthInt)
{
case 1: mouthStr = "1"; break;
case 2: mouthStr = "2"; break;
case 3: mouthStr = "3"; break;
case 4: mouthStr = "4"; break;
case 5: mouthStr = "5"; break;
case 6: mouthStr = "6"; break;
case 7: mouthStr = "7"; break;
case 8: mouthStr = "8"; break;
case 9: mouthStr = "9"; break;
case 10: mouthStr = "0"; break;
case 11: mouthStr = "A"; break;
case 12: mouthStr = "B"; break;
default: mouthStr = mouthInt.ToString(); break;
}
var barCode = $"{Program.areacode}{Program.deptcode}{mskCode.BarCodeChar}{yearCode}{mouthStr}{DateTime.Now.Day.ToString().PadLeft(2, '0')}{mskCode.PrintBarcode}{searialNum}";
return (true, barCode, searialNum, $"打印条码信息:{barCode}");
}
}
}