using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Org.BouncyCastle.Crypto;
using SqlSugar;
namespace Tnb.WarehouseMgr.Entities.Dto.ErpInputs
{
public class SaleOutInput
{
///
/// 仓库
///
public string? warehouse { get; set; }
///
/// 客户代码
///
public string? customer_code { get; set; }
///
/// 来源单据ID
///
public string? source_id { get; set; }
///
/// 来源单据代码
///
public string? source_code { get; set; }
///
/// 供货日期
///
public DateTime ship_date { get; set; } = DateTime.Now;
///
/// 运输方式
///
public string? shipping_method { get; set; }
public List details { get; set; }
}
public class SaleOutDetail
{
///
/// 物品代码
///
public string material_code { get; set; } = string.Empty;
///
/// 批次
///
public string? code_batch { get; set; }
///
/// 箱号
///
public string? container_no { get; set; }
///
/// 本次发货数量
///
public decimal purchase_arriveqty { get; set; }
///
///已 发货数量
///
public decimal purchase_prqty { get; set; }
///
/// 发货数量
///
public decimal purchase_qty { get; set; }
}
}