From 50d433602441964d905abe6e516ad258ba66627d Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期五, 21 十一月 2025 12:06:16 +0800
Subject: [PATCH] 送货单修改这几个地方,第一个,那个表格最上面那根线条和左边那根线条看粗细不一致,太细了, 感觉像打出来像断笔画。这是一个。第二个, 中间空的太多。我刚才打印打了两张送货单,他都打印的是两页, 相当于说跳了一行一行空白的第二页,第二页是白字的嘛,中间空的太多,中间不空那么多。 好,第三,那个左右的页边距,你们可能只有。
---
CY_ECommercePlatform/CY.Model/OA/CoreCmsPlanOrder.cs | 65 ++++++++++++++++++++++++++++++++
1 files changed, 65 insertions(+), 0 deletions(-)
diff --git a/CY_ECommercePlatform/CY.Model/OA/CoreCmsPlanOrder.cs b/CY_ECommercePlatform/CY.Model/OA/CoreCmsPlanOrder.cs
index 9cabd81..e6f6550 100644
--- a/CY_ECommercePlatform/CY.Model/OA/CoreCmsPlanOrder.cs
+++ b/CY_ECommercePlatform/CY.Model/OA/CoreCmsPlanOrder.cs
@@ -1,6 +1,7 @@
锘縰sing System;
using CY.Infrastructure.Domain;
using CY.Infrastructure.Common;
+using System.Collections.Generic;
namespace CY.Model
{
@@ -244,6 +245,23 @@
/// </summary>
public string biaoge { get; set; }
+ /// <summary>
+ /// 缂栧彿
+ /// </summary>
+
+
+ public int? Bianhao { get; set; }
+
+
+ /// <summary>
+ /// 缂栧彿
+ /// </summary>
+
+
+ public int? DeliverState { get; set; }
+
+
+
#endregion Model
#region Visiter
@@ -394,6 +412,18 @@
this.FirmId = isChange ? MyConvert.ConvertToGuid(value) : FirmId;
theValue = this.FirmId;
}
+ else if ("Bianhao".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 22)
+ {
+ this.Bianhao = isChange ? MyConvert.ConvertToInt32(value) : Bianhao;
+ theValue = this.Bianhao;
+ }
+
+ else if ("DeliverState".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 23)
+ {
+ this.DeliverState = isChange ? MyConvert.ConvertToInt32(value) : DeliverState;
+ theValue = this.DeliverState;
+ }
+
return theValue;
}
@@ -509,6 +539,41 @@
public System.Int32 nums { get; set; }
+ public List<JiHuaOrderDetail> jiHuaOrderDetails { get; set; }
+ }
+
+ /// <summary>
+ /// 璁″垝璁㈠崟
+ /// </summary>
+ public class JiHuaOrderDetail
+ {
+
+ /// <summary>
+ /// 鍟嗗搧鍚嶇О
+ /// </summary>
+
+ public System.String name { get; set; }
+
+
+ /// <summary>
+ /// 鍟嗗搧瑙勬牸
+ /// </summary>
+
+ public System.String specification { get; set; }
+
+
+ /// <summary>
+ /// 璐у搧浠锋牸鍗曚环
+ /// </summary>
+
+ public System.Decimal price { get; set; }
+
+
+ /// <summary>
+ /// 鏁伴噺
+ /// </summary>
+
+ public System.Int32 nums { get; set; }
}
}
--
Gitblit v1.9.1