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.
53 lines
1.5 KiB
53 lines
1.5 KiB
//namespace Win_in.Sfs.Wms.Pda.Controllers.Inventories;
|
|
|
|
//using System;
|
|
//using System.Collections.Generic;
|
|
//using System.Linq;
|
|
//using System.Threading.Tasks;
|
|
|
|
//using Microsoft.AspNetCore.Mvc;
|
|
|
|
//using Volo.Abp.Application.Dtos;
|
|
//using Volo.Abp.AspNetCore.Mvc;
|
|
|
|
//using Win_in.Sfs.Basedata.Application.Contracts;
|
|
//using Win_in.Sfs.Label.Application.Contracts;
|
|
//using Win_in.Sfs.Label.Domain;
|
|
//using Win_in.Sfs.Shared.Domain;
|
|
//using Win_in.Sfs.Shared.Domain.Shared;
|
|
//using Win_in.Sfs.Wms.Inventory.Application.Contracts;
|
|
//using Win_in.Sfs.Wms.Pda.Controllers.BaseDatas.Dtos;
|
|
//using Win_in.Sfs.Wms.Pda.Models;
|
|
|
|
//using JsonSerializer = System.Text.Json.JsonSerializer;
|
|
|
|
///// <summary>
|
|
///// 制造标签控制器
|
|
///// </summary>
|
|
//[ApiController]
|
|
//[Route($"{PdaHostConst.ROOT_ROUTE}label/Putawaylabel")]
|
|
//public class PutawayLabelController : AbpController
|
|
//{
|
|
// private readonly IPutawayLabelService _labelAppService;
|
|
|
|
// /// <summary>
|
|
// ///
|
|
// /// </summary>
|
|
// /// <param name="labelAppService"></param>
|
|
// public PutawayLabelController(
|
|
// IPutawayLabelService labelAppService)
|
|
// {
|
|
// this._labelAppService = labelAppService;
|
|
// }
|
|
|
|
// /// <summary>
|
|
// /// 按标签号获取制造标签
|
|
// /// </summary>
|
|
// /// <param name="code">标签号</param>
|
|
// /// <returns></returns>
|
|
// [HttpGet("by-code")]
|
|
// public virtual async Task<PutawayLabelDto> GetByCode(string code)
|
|
// {
|
|
// return await _labelAppService.GetByCodeAsync(code);
|
|
// }
|
|
//}
|
|
|