|
@@ -181,7 +181,6 @@ namespace OASystem.Domain.ViewModels.PersonnelModule
|
|
|
|
|
|
public class GoodsReceiveView
|
|
|
{
|
|
|
-
|
|
|
public int Id { get; set; }
|
|
|
public int GroupId { get; set; }
|
|
|
public int GoodsId { get; set; }
|
|
@@ -192,6 +191,7 @@ namespace OASystem.Domain.ViewModels.PersonnelModule
|
|
|
public string Remark { get; set; }
|
|
|
public GoodsAuditEnum AuditStatus { get; set; }
|
|
|
public string AuditStatusText { get { return AuditStatus.GetEnumDescription(); } }
|
|
|
+ public string StatusDesc { get; set; }
|
|
|
public int AuditUserId { get; set; }
|
|
|
public string AuditUserName { get; set; }
|
|
|
public DateTime AuditTime { get; set; }
|
|
@@ -204,6 +204,7 @@ namespace OASystem.Domain.ViewModels.PersonnelModule
|
|
|
public class GoodsReceiveListView: GoodsReceiveView
|
|
|
{
|
|
|
public string GoodsType { get; set; }
|
|
|
+ public GoodsStorageAuditPerView[] AuditPers { get; set; }
|
|
|
}
|
|
|
|
|
|
public class GoodsReceiveListMobileView : GoodsReceiveListView
|
|
@@ -258,4 +259,54 @@ namespace OASystem.Domain.ViewModels.PersonnelModule
|
|
|
public decimal StockQuantity { get; set; }
|
|
|
public string Unit { get; set; }
|
|
|
}
|
|
|
+
|
|
|
+ public class GoodsStorageListView
|
|
|
+ {
|
|
|
+ public int Id { get; set; }
|
|
|
+ public int GoodsId { get; set; }
|
|
|
+ public string GoodsName { get; set; }
|
|
|
+ public string BatchNo { get; set; }
|
|
|
+ public decimal Quantity { get; set; }
|
|
|
+ public decimal UnitPrice { get; set; }
|
|
|
+ public decimal TotalPrice { get; set; }
|
|
|
+ public string SupplierName { get; set; }
|
|
|
+ public string SupplierTel { get; set; }
|
|
|
+ public string SupplierAddress { get; set; }
|
|
|
+ public string SupplierSource { get; set; }
|
|
|
+ public string StorageUserName { get; set; }
|
|
|
+ public string StorageTime { get; set; }
|
|
|
+ public string CreateUserName { get; set; }
|
|
|
+ public GoodsConfirmEnum ConfirmStatus { get; set; }
|
|
|
+ public string ConfirmStatusText
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return ConfirmStatus.GetEnumDescription();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ public string StatusDesc { get; set; }
|
|
|
+ public DateTime CreateTime { get; set; }
|
|
|
+
|
|
|
+ public string Remark { get; set; }
|
|
|
+
|
|
|
+ public GoodsStorageAuditPerView[] AuditPers { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ public class GoodsStorageAuditPerView
|
|
|
+ {
|
|
|
+ public bool AuditPer { get; set; }
|
|
|
+ public GoodsAuditDepEnum AuditDep { get; set; }
|
|
|
+
|
|
|
+ public string ButtonText { get; set; }
|
|
|
+ }
|
|
|
+
|
|
|
+ #region 审核部门View
|
|
|
+ public class GoodsAuditDepView
|
|
|
+ {
|
|
|
+ public GoodsAuditDepEnum AuditDep { get; set; }
|
|
|
+
|
|
|
+ public int[] AuditorIds { get; set; }
|
|
|
+ }
|
|
|
+ #endregion
|
|
|
}
|