입고예정 상세페이지 구현 중

This commit is contained in:
김민구
2024-01-18 10:02:25 +09:00
parent cddc901805
commit 3c0409041f
6 changed files with 92 additions and 17 deletions

View File

@@ -60,7 +60,6 @@ public class PlanInController {
mav.addObject("list", list);
mav.setViewName("planin/read");
return mav;
}

View File

@@ -6,6 +6,7 @@ import org.apache.ibatis.type.Alias;
import org.springframework.format.annotation.DateTimeFormat;
import com.no1.wms.account.AccountDto;
import com.no1.wms.category.CategoryDto;
import com.no1.wms.product.ProductDto;
import com.no1.wms.vendor.VendorDto;
import com.no1.wms.warehouse.WarehouseDto;
@@ -38,9 +39,10 @@ public class PlanInDto {
private Boolean activation;
private Integer viewGroupNumber;
private String oldProductId;
private String cName;
private ProductDto productDto;
private VendorDto vendorDto;
private AccountDto accountDto;
private WarehouseDto warehouseDto;
}
}

View File

@@ -17,9 +17,6 @@ public class PlanInService {
map.put("start", start);
map.put("perPage", perPage);
map.put("searchn", searchn);
return mapper.selectAll(map);
}