This commit is contained in:
liangjunyu
2025-12-12 14:46:03 +08:00
parent 5ad8d87250
commit 14affa9131
8 changed files with 853 additions and 99 deletions

View File

@@ -0,0 +1,45 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Gatedge.K3.Pilot.PlugIn.Common
{
/// <summary>
/// 常用formId
/// </summary>
public static class FormIdConstants
{
/// <summary>
/// 采购订单
/// </summary>
public const string PUR_PurchaseOrder = "PUR_PurchaseOrder";
/// <summary>
/// 收料通知单
/// </summary>
public const string PUR_ReceiveBill = "PUR_ReceiveBill";
/// <summary>
/// 采购入库单
/// </summary>
public const string STK_InStock = "STK_InStock";
/// <summary>
/// 销售出库单
/// </summary>
public const string SAL_OUTSTOCK = "SAL_OUTSTOCK";
/// <summary>
/// 销售订单
/// </summary>
public const string SAL_SaleOrder = "SAL_SaleOrder";
/// <summary>
/// 发货通知单
/// </summary>
public const string SAL_DELIVERYNOTICE = "SAL_DELIVERYNOTICE";
}
}