|
@@ -8,7 +8,6 @@ import com.fjhx.item.service.product.ProductInfoService;
|
|
|
import com.ruoyi.common.core.domain.BaseSelectDto;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
-import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
@@ -47,22 +46,6 @@ public class ProductInfoController {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 客户产品库分页
|
|
|
- */
|
|
|
- @PostMapping("/getCustomerProductList")
|
|
|
- public Page<ProductInfoVo> getCustomerProductList(@RequestBody ProductInfoSelectDto dto) {
|
|
|
- return productInfoService.getCustomerProductList(dto);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 公司产品库分页
|
|
|
- */
|
|
|
- @PostMapping("/getConditionProductList")
|
|
|
- public Page<ProductInfoVo> getConditionProductList(@RequestBody ProductInfoSelectDto dto) {
|
|
|
- return productInfoService.getConditionProductList(dto);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
* 产品库明细
|
|
|
*/
|
|
|
@PostMapping("/detail")
|
|
@@ -94,11 +77,6 @@ public class ProductInfoController {
|
|
|
productInfoService.delete(dto.getId());
|
|
|
}
|
|
|
|
|
|
- @PostMapping("/excelImport")
|
|
|
- public void issueExcelImport(@RequestParam("file") MultipartFile file) {
|
|
|
- productInfoService.excelImport(file);
|
|
|
- }
|
|
|
-
|
|
|
/**
|
|
|
* 产品统计(数据看板-产品分析页面)
|
|
|
*
|