27 lines
680 B
C#
27 lines
680 B
C#
|
|
using Kingdee.BOS;
|
|||
|
|
using Kingdee.BOS.Core.DynamicForm;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace EastChanger.STK_Miscellaneous
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 其他入库单
|
|||
|
|
/// </summary>
|
|||
|
|
public class STKMiscellaneousService : BaseService, ISynchonService
|
|||
|
|
{
|
|||
|
|
public STKMiscellaneousService(Context context) : base(context, "supvMaterialStorage.save", "其他入库单")
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public string ModuleCnName => _moduleCnName;
|
|||
|
|
|
|||
|
|
public void HandleSyncData(List<string> idList, IOperationResult opResult)
|
|||
|
|
{
|
|||
|
|
throw new NotImplementedException();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|