You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.2 KiB
50 lines
1.2 KiB
1 year ago
|
using ChangKeTec.Wms.Controller.Report;
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Data;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace CK.SCP.UniApi.Controller
|
||
|
{
|
||
|
public static class vendidpartcontroller
|
||
|
{
|
||
|
public static DataTable GetInvBatchStock(string ls)
|
||
|
{
|
||
|
|
||
|
string Sql = $"Select * from PURVenStockGoodsMid";
|
||
|
Sql += $" Where di_batchNO>{ls}";
|
||
|
|
||
|
var dt_Part = DBControllerByOracle.GetDataTable(Sql);
|
||
|
|
||
|
return dt_Part;
|
||
|
}
|
||
|
|
||
|
public class PURVendorpartMid
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 工厂
|
||
|
/// </summary>
|
||
|
public string DI_BATCHNO { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 存储地点
|
||
|
/// </summary>
|
||
|
public string VENDORNO { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 物料号
|
||
|
/// </summary>
|
||
|
public string created { get; set; }
|
||
|
public string createdBy { get; set; }
|
||
|
public string MTLNO { get; set; }
|
||
|
public string PLANT { get; set; }
|
||
|
public string memo { get; set; }
|
||
|
/// <summary>
|
||
|
/// 批次
|
||
|
/// </summary>
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|