修复bug
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Text;
|
||||
@@ -110,13 +111,13 @@ namespace WMS.Web.Domain.Entitys
|
||||
/// <summary>
|
||||
/// 出库
|
||||
/// </summary>
|
||||
/// <param name="outStockBillNo">出库单号</param>
|
||||
public void OutStock(string outStockBillNo, OutStockType type,int customerId)
|
||||
/// <param name="salBillNos">出库单号</param>
|
||||
public void OutStock(List<string> salBillNos, OutStockType type,int customerId)
|
||||
{
|
||||
this.BoxId = 0;
|
||||
if (type == OutStockType.Sal)
|
||||
{
|
||||
this.SalBillNo = outStockBillNo;
|
||||
this.SalBillNo = JsonConvert.SerializeObject(salBillNos);
|
||||
this.CustomerId = customerId;
|
||||
this.OutStockTime = DateTime.Now;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user