|
@@ -11,6 +11,7 @@ import com.ruoyi.common.utils.ServletUtils;
|
|
|
import com.ruoyi.common.utils.poi.ExcelUtil;
|
|
|
import com.ruoyi.common.utils.spring.SpringUtils;
|
|
|
import com.ruoyi.finance.domain.TFee;
|
|
|
+import com.ruoyi.finance.domain.TWareHouseFees;
|
|
|
import com.ruoyi.finance.service.ITFeeService;
|
|
|
import com.ruoyi.framework.web.service.TokenService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -99,4 +100,16 @@ public class TContrastController extends BaseController {
|
|
|
public AjaxResult remove(@PathVariable Long[] fIds) {
|
|
|
return toAjax(tFeeService.deleteTFeeByIds(fIds));
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 收费查询
|
|
|
+ */
|
|
|
+ @PreAuthorize("@ss.hasPermi('finance:contrast:list')")
|
|
|
+ @GetMapping("/contrastList")
|
|
|
+ public TableDataInfo chargeList(TWareHouseFees tWareHouseFees) {
|
|
|
+ startPage();
|
|
|
+ List<Map<String, Object>> list = tFeeService.warehouseBillsFeesList(tWareHouseFees);
|
|
|
+ return getDataTable(list);
|
|
|
+ }
|
|
|
+
|
|
|
}
|