单据管理

beta-enc
dongxiaoke 2 years ago
parent 4600e717c4
commit b5ba452cf9
  1. 6
      jianshui-admin/src/main/java/com/jianshui/api/controller/webservice/income/v1/impl/InvoiceCheckWebServiceImpl.java
  2. 104
      jianshui-admin/src/main/java/com/jianshui/web/controller/platform/ProductInfoController.java
  3. 7
      jianshui-income/src/main/java/com/jianshui/income/service/impl/EleCheckInvoiceImpl.java
  4. 225
      jianshui-platform/src/main/java/com/jianshui/platform/domain/ProductInfo.java
  5. 61
      jianshui-platform/src/main/java/com/jianshui/platform/mapper/ProductInfoMapper.java
  6. 61
      jianshui-platform/src/main/java/com/jianshui/platform/service/IProductInfoService.java
  7. 96
      jianshui-platform/src/main/java/com/jianshui/platform/service/impl/ProductInfoServiceImpl.java
  8. 136
      jianshui-platform/src/main/resources/com/jianshui/platform/mapper/ProductInfoMapper.xml
  9. 44
      jianshui-ui/src/api/platform/product_info.js
  10. 411
      jianshui-ui/src/views/platform/product_info/index.vue

@ -179,8 +179,8 @@ public class InvoiceCheckWebServiceImpl {
// 调用发票查询接口
JSONObject request = new JSONObject();
request.put("fpzl", Fpzl); // TODO 新增发票种类字段
request.put("fpje", Kpje); // TODO 开票金额字段
request.put("fpzl", Fpzl);
request.put("fpje", Kpje);
request.put("fpdm", InvCode);
Date kprqDate = null;
try {
@ -196,7 +196,7 @@ public class InvoiceCheckWebServiceImpl {
request.put("fphm", InvNo);
request.put("jym", Jym);
AjaxResult invoiceResult = incomeService.checkInvoiceSingle(companyservice, request);
log.info("【发票查询结果】companyid:{},serviceKey:{},invoiceResult:{}", companyservice.getCompanyid(), serviceKey, JSONObject.toJSONString(invoiceResult));
log.info("【发票查询结果】companyid:{},serviceKey:{},param:{},invoiceResult:{}", companyservice.getCompanyid(), serviceKey, request,JSONObject.toJSONString(invoiceResult));
// JSONObject data = JSONObject.parseObject("{\n" +
// " \"robUserMoney\": 0,\n" +
// " \"resultContent\": {\n" +

@ -0,0 +1,104 @@
package com.jianshui.web.controller.platform;
import java.util.List;
import javax.servlet.http.HttpServletResponse;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.jianshui.common.annotation.Log;
import com.jianshui.common.core.controller.BaseController;
import com.jianshui.common.core.domain.AjaxResult;
import com.jianshui.common.enums.BusinessType;
import com.jianshui.platform.domain.ProductInfo;
import com.jianshui.platform.service.IProductInfoService;
import com.jianshui.common.utils.poi.ExcelUtil;
import com.jianshui.common.core.page.TableDataInfo;
/**
* 商品信息Controller
*
* @author kk
* @date 2023-06-27
*/
@RestController
@RequestMapping("/platform/product_info")
public class ProductInfoController extends BaseController
{
@Autowired
private IProductInfoService productInfoService;
/**
* 查询商品信息列表
*/
@PreAuthorize("@ss.hasPermi('platform:product_info:list')")
@GetMapping("/list")
public TableDataInfo list(ProductInfo productInfo)
{
startPage();
List<ProductInfo> list = productInfoService.selectProductInfoList(productInfo);
return getDataTable(list);
}
/**
* 导出商品信息列表
*/
@PreAuthorize("@ss.hasPermi('platform:product_info:export')")
@Log(title = "商品信息", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, ProductInfo productInfo)
{
List<ProductInfo> list = productInfoService.selectProductInfoList(productInfo);
ExcelUtil<ProductInfo> util = new ExcelUtil<ProductInfo>(ProductInfo.class);
util.exportExcel(response, list, "商品信息数据");
}
/**
* 获取商品信息详细信息
*/
@PreAuthorize("@ss.hasPermi('platform:product_info:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
return AjaxResult.success(productInfoService.selectProductInfoById(id));
}
/**
* 新增商品信息
*/
@PreAuthorize("@ss.hasPermi('platform:product_info:add')")
@Log(title = "商品信息", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody ProductInfo productInfo)
{
return toAjax(productInfoService.insertProductInfo(productInfo));
}
/**
* 修改商品信息
*/
@PreAuthorize("@ss.hasPermi('platform:product_info:edit')")
@Log(title = "商品信息", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody ProductInfo productInfo)
{
return toAjax(productInfoService.updateProductInfo(productInfo));
}
/**
* 删除商品信息
*/
@PreAuthorize("@ss.hasPermi('platform:product_info:remove')")
@Log(title = "商品信息", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
{
return toAjax(productInfoService.deleteProductInfoByIds(ids));
}
}

@ -103,14 +103,14 @@ public class EleCheckInvoiceImpl implements ICheckInvoice {
if ("0000".equals(returnStateInfo.getString("returnCode")) == false) { // 如果返回值不是0000,说明有错误
String errorString = Base64Util.decrypt(returnStateInfo.getString("returnMessage"));
int errorCode = returnStateInfo.getInteger("returnCode");
log.info("单个发票校验错误结果:companyId=" + companyId + ",errorCode=" + errorCode + ",returnMessage=" + errorString);
log.info("单个发票校验错误结果:companyId=" + companyId + ",data=" + data + ",errorCode=" + errorCode + ",returnMessage=" + errorString);
return AjaxResult.error(errorCode, errorString);
}
// 否则成功
String resultStr = resp.getString("content");
JSONObject resultJson = JSONObject.parseObject(Base64Util.decrypt(resultStr)); // 获得返回的数据
log.info("单个发票校验成功结果:companyId=" + companyId + ",resultJson=" + resultJson);
log.info("单个发票校验成功结果:companyId=" + companyId + ",data=" + data + ",resultJson=" + resultJson);
// 处理返回的数据
// 处理invoice_check
JSONObject resultContent = resultJson.getJSONObject("data");
@ -128,7 +128,6 @@ public class EleCheckInvoiceImpl implements ICheckInvoice {
}
invoiceCheck = this.handelCheckResult(invoiceCheck, resultContent); // 批量处理一把
// TODO: 2023/6/5 确定一下哪些需要扣钱
List<String> cyjgList = Arrays.asList("9999", "0002", "0005", "1004", "1006", "1007", "1008", "1009","1010", "1011", "1012", "1013", "1014", "1015", "1020", "1021");
if (cyjgList.contains(invoiceCheck.getCyjg())) {
log.info("单个发票校验错误结果:companyId=" + companyId + ",errorCode=" + invoiceCheck.getCyjg() + ",returnMessage=" + invoiceCheck.getCyjgxx());
@ -180,7 +179,7 @@ public class EleCheckInvoiceImpl implements ICheckInvoice {
// RedisQueueUtil.build().setData(invoiceCheck).onQueue("income_result_save_consumer").retry(0).dispatch();
if (!"0001".equals(invoiceCheck.getCyjg()) ) {
log.info("单个发票校验错误结果:companyId=" + companyId + ",errorCode=" + invoiceCheck.getCyjg() + ",returnMessage=" + invoiceCheck.getCyjgxx());
log.info("单个发票校验错误结果:companyId=" + companyId + ",data=" + data + ",errorCode=" + invoiceCheck.getCyjg() + ",returnMessage=" + invoiceCheck.getCyjgxx());
return new AjaxResult(Integer.parseInt(invoiceCheck.getCyjg()),invoiceCheck.getCyjgxx());
}

@ -0,0 +1,225 @@
package com.jianshui.platform.domain;
import java.math.BigDecimal;
import com.jianshui.common.annotation.Excel;
import com.jianshui.common.core.domain.BaseEntity;
import net.logstash.logback.encoder.org.apache.commons.lang3.builder.ToStringBuilder;
import net.logstash.logback.encoder.org.apache.commons.lang3.builder.ToStringStyle;
/**
* 商品信息对象 product_info
*
* @author kk
* @date 2023-06-27
*/
public class ProductInfo extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** 主键 */
private Long id;
/** 商品编码 */
@Excel(name = "商品编码")
private String productCode;
/** 商品名称 */
@Excel(name = "商品名称")
private String productName;
/** 税率 */
@Excel(name = "税率")
private BigDecimal taxRate;
/** 单价 */
@Excel(name = "单价")
private BigDecimal unitPrice;
/** 规格型号 */
@Excel(name = "规格型号")
private String specification;
/** 计量单位 */
@Excel(name = "计量单位")
private String unitOfMeasurement;
/** 税收分类编码 */
@Excel(name = "税收分类编码")
private String taxCategoryCode;
/** 税收分类编码Id */
@Excel(name = "税收分类编码Id")
private Long taxCategoryCodeId;
/** 税收分类编码简称 */
@Excel(name = "税收分类编码简称")
private String taxCategoryAbbreviation;
/** 是否享受优惠政策 */
@Excel(name = "是否享受优惠政策")
private String isQualifiedForDiscount;
/** 优惠政策类型 */
@Excel(name = "优惠政策类型")
private String discountPolicyType;
/** 零税率标识 */
@Excel(name = "零税率标识")
private String zeroTaxRateIndicator;
/** 状态 */
@Excel(name = "状态")
private String status;
public void setId(Long id)
{
this.id = id;
}
public Long getId()
{
return id;
}
public void setProductCode(String productCode)
{
this.productCode = productCode;
}
public String getProductCode()
{
return productCode;
}
public void setProductName(String productName)
{
this.productName = productName;
}
public String getProductName()
{
return productName;
}
public void setTaxRate(BigDecimal taxRate)
{
this.taxRate = taxRate;
}
public BigDecimal getTaxRate()
{
return taxRate;
}
public void setUnitPrice(BigDecimal unitPrice)
{
this.unitPrice = unitPrice;
}
public BigDecimal getUnitPrice()
{
return unitPrice;
}
public void setSpecification(String specification)
{
this.specification = specification;
}
public String getSpecification()
{
return specification;
}
public void setUnitOfMeasurement(String unitOfMeasurement)
{
this.unitOfMeasurement = unitOfMeasurement;
}
public String getUnitOfMeasurement()
{
return unitOfMeasurement;
}
public void setTaxCategoryCode(String taxCategoryCode)
{
this.taxCategoryCode = taxCategoryCode;
}
public String getTaxCategoryCode()
{
return taxCategoryCode;
}
public void setTaxCategoryCodeId(Long taxCategoryCodeId)
{
this.taxCategoryCodeId = taxCategoryCodeId;
}
public Long getTaxCategoryCodeId()
{
return taxCategoryCodeId;
}
public void setTaxCategoryAbbreviation(String taxCategoryAbbreviation)
{
this.taxCategoryAbbreviation = taxCategoryAbbreviation;
}
public String getTaxCategoryAbbreviation()
{
return taxCategoryAbbreviation;
}
public void setIsQualifiedForDiscount(String isQualifiedForDiscount)
{
this.isQualifiedForDiscount = isQualifiedForDiscount;
}
public String getIsQualifiedForDiscount()
{
return isQualifiedForDiscount;
}
public void setDiscountPolicyType(String discountPolicyType)
{
this.discountPolicyType = discountPolicyType;
}
public String getDiscountPolicyType()
{
return discountPolicyType;
}
public void setZeroTaxRateIndicator(String zeroTaxRateIndicator)
{
this.zeroTaxRateIndicator = zeroTaxRateIndicator;
}
public String getZeroTaxRateIndicator()
{
return zeroTaxRateIndicator;
}
public void setStatus(String status)
{
this.status = status;
}
public String getStatus()
{
return status;
}
@Override
public String toString() {
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId())
.append("productCode", getProductCode())
.append("productName", getProductName())
.append("taxRate", getTaxRate())
.append("unitPrice", getUnitPrice())
.append("specification", getSpecification())
.append("unitOfMeasurement", getUnitOfMeasurement())
.append("taxCategoryCode", getTaxCategoryCode())
.append("taxCategoryCodeId", getTaxCategoryCodeId())
.append("taxCategoryAbbreviation", getTaxCategoryAbbreviation())
.append("isQualifiedForDiscount", getIsQualifiedForDiscount())
.append("discountPolicyType", getDiscountPolicyType())
.append("zeroTaxRateIndicator", getZeroTaxRateIndicator())
.append("status", getStatus())
.append("createBy", getCreateBy())
.append("createTime", getCreateTime())
.append("updateBy", getUpdateBy())
.append("updateTime", getUpdateTime())
.append("remark", getRemark())
.toString();
}
}

@ -0,0 +1,61 @@
package com.jianshui.platform.mapper;
import java.util.List;
import com.jianshui.platform.domain.ProductInfo;
/**
* 商品信息Mapper接口
*
* @author kk
* @date 2023-06-27
*/
public interface ProductInfoMapper
{
/**
* 查询商品信息
*
* @param id 商品信息主键
* @return 商品信息
*/
public ProductInfo selectProductInfoById(Long id);
/**
* 查询商品信息列表
*
* @param productInfo 商品信息
* @return 商品信息集合
*/
public List<ProductInfo> selectProductInfoList(ProductInfo productInfo);
/**
* 新增商品信息
*
* @param productInfo 商品信息
* @return 结果
*/
public int insertProductInfo(ProductInfo productInfo);
/**
* 修改商品信息
*
* @param productInfo 商品信息
* @return 结果
*/
public int updateProductInfo(ProductInfo productInfo);
/**
* 删除商品信息
*
* @param id 商品信息主键
* @return 结果
*/
public int deleteProductInfoById(Long id);
/**
* 批量删除商品信息
*
* @param ids 需要删除的数据主键集合
* @return 结果
*/
public int deleteProductInfoByIds(Long[] ids);
}

@ -0,0 +1,61 @@
package com.jianshui.platform.service;
import java.util.List;
import com.jianshui.platform.domain.ProductInfo;
/**
* 商品信息Service接口
*
* @author kk
* @date 2023-06-27
*/
public interface IProductInfoService
{
/**
* 查询商品信息
*
* @param id 商品信息主键
* @return 商品信息
*/
public ProductInfo selectProductInfoById(Long id);
/**
* 查询商品信息列表
*
* @param productInfo 商品信息
* @return 商品信息集合
*/
public List<ProductInfo> selectProductInfoList(ProductInfo productInfo);
/**
* 新增商品信息
*
* @param productInfo 商品信息
* @return 结果
*/
public int insertProductInfo(ProductInfo productInfo);
/**
* 修改商品信息
*
* @param productInfo 商品信息
* @return 结果
*/
public int updateProductInfo(ProductInfo productInfo);
/**
* 批量删除商品信息
*
* @param ids 需要删除的商品信息主键集合
* @return 结果
*/
public int deleteProductInfoByIds(Long[] ids);
/**
* 删除商品信息信息
*
* @param id 商品信息主键
* @return 结果
*/
public int deleteProductInfoById(Long id);
}

@ -0,0 +1,96 @@
package com.jianshui.platform.service.impl;
import java.util.List;
import com.jianshui.common.utils.DateUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.jianshui.platform.mapper.ProductInfoMapper;
import com.jianshui.platform.domain.ProductInfo;
import com.jianshui.platform.service.IProductInfoService;
/**
* 商品信息Service业务层处理
*
* @author kk
* @date 2023-06-27
*/
@Service
public class ProductInfoServiceImpl implements IProductInfoService
{
@Autowired
private ProductInfoMapper productInfoMapper;
/**
* 查询商品信息
*
* @param id 商品信息主键
* @return 商品信息
*/
@Override
public ProductInfo selectProductInfoById(Long id)
{
return productInfoMapper.selectProductInfoById(id);
}
/**
* 查询商品信息列表
*
* @param productInfo 商品信息
* @return 商品信息
*/
@Override
public List<ProductInfo> selectProductInfoList(ProductInfo productInfo)
{
return productInfoMapper.selectProductInfoList(productInfo);
}
/**
* 新增商品信息
*
* @param productInfo 商品信息
* @return 结果
*/
@Override
public int insertProductInfo(ProductInfo productInfo)
{
productInfo.setCreateTime(DateUtils.getNowDate());
return productInfoMapper.insertProductInfo(productInfo);
}
/**
* 修改商品信息
*
* @param productInfo 商品信息
* @return 结果
*/
@Override
public int updateProductInfo(ProductInfo productInfo)
{
productInfo.setUpdateTime(DateUtils.getNowDate());
return productInfoMapper.updateProductInfo(productInfo);
}
/**
* 批量删除商品信息
*
* @param ids 需要删除的商品信息主键
* @return 结果
*/
@Override
public int deleteProductInfoByIds(Long[] ids)
{
return productInfoMapper.deleteProductInfoByIds(ids);
}
/**
* 删除商品信息信息
*
* @param id 商品信息主键
* @return 结果
*/
@Override
public int deleteProductInfoById(Long id)
{
return productInfoMapper.deleteProductInfoById(id);
}
}

@ -0,0 +1,136 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.jianshui.platform.mapper.ProductInfoMapper">
<resultMap type="ProductInfo" id="ProductInfoResult">
<result property="id" column="id" />
<result property="productCode" column="product_code" />
<result property="productName" column="product_name" />
<result property="taxRate" column="tax_rate" />
<result property="unitPrice" column="unit_price" />
<result property="specification" column="specification" />
<result property="unitOfMeasurement" column="unit_of_measurement" />
<result property="taxCategoryCode" column="tax_category_code" />
<result property="taxCategoryCodeId" column="tax_category_code_id" />
<result property="taxCategoryAbbreviation" column="tax_category_abbreviation" />
<result property="isQualifiedForDiscount" column="is_qualified_for_discount" />
<result property="discountPolicyType" column="discount_policy_type" />
<result property="zeroTaxRateIndicator" column="zero_tax_rate_indicator" />
<result property="status" column="status" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="updateBy" column="update_by" />
<result property="updateTime" column="update_time" />
<result property="remark" column="remark" />
</resultMap>
<sql id="selectProductInfoVo">
select id, product_code, product_name, tax_rate, unit_price, specification, unit_of_measurement, tax_category_code, tax_category_code_id, tax_category_abbreviation, is_qualified_for_discount, discount_policy_type, zero_tax_rate_indicator, status, create_by, create_time, update_by, update_time, remark from product_info
</sql>
<select id="selectProductInfoList" parameterType="ProductInfo" resultMap="ProductInfoResult">
<include refid="selectProductInfoVo"/>
<where>
<if test="productCode != null and productCode != ''"> and product_code = #{productCode}</if>
<if test="productName != null and productName != ''"> and product_name like concat('%', #{productName}, '%')</if>
<if test="taxRate != null "> and tax_rate = #{taxRate}</if>
<if test="unitPrice != null "> and unit_price = #{unitPrice}</if>
<if test="specification != null and specification != ''"> and specification = #{specification}</if>
<if test="unitOfMeasurement != null and unitOfMeasurement != ''"> and unit_of_measurement = #{unitOfMeasurement}</if>
<if test="taxCategoryCode != null and taxCategoryCode != ''"> and tax_category_code = #{taxCategoryCode}</if>
<if test="taxCategoryCodeId != null "> and tax_category_code_id = #{taxCategoryCodeId}</if>
<if test="taxCategoryAbbreviation != null and taxCategoryAbbreviation != ''"> and tax_category_abbreviation = #{taxCategoryAbbreviation}</if>
<if test="isQualifiedForDiscount != null and isQualifiedForDiscount != ''"> and is_qualified_for_discount = #{isQualifiedForDiscount}</if>
<if test="discountPolicyType != null and discountPolicyType != ''"> and discount_policy_type = #{discountPolicyType}</if>
<if test="zeroTaxRateIndicator != null and zeroTaxRateIndicator != ''"> and zero_tax_rate_indicator = #{zeroTaxRateIndicator}</if>
<if test="status != null and status != ''"> and status = #{status}</if>
</where>
</select>
<select id="selectProductInfoById" parameterType="Long" resultMap="ProductInfoResult">
<include refid="selectProductInfoVo"/>
where id = #{id}
</select>
<insert id="insertProductInfo" parameterType="ProductInfo" useGeneratedKeys="true" keyProperty="id">
insert into product_info
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="productCode != null">product_code,</if>
<if test="productName != null">product_name,</if>
<if test="taxRate != null">tax_rate,</if>
<if test="unitPrice != null">unit_price,</if>
<if test="specification != null">specification,</if>
<if test="unitOfMeasurement != null">unit_of_measurement,</if>
<if test="taxCategoryCode != null">tax_category_code,</if>
<if test="taxCategoryCodeId != null">tax_category_code_id,</if>
<if test="taxCategoryAbbreviation != null">tax_category_abbreviation,</if>
<if test="isQualifiedForDiscount != null">is_qualified_for_discount,</if>
<if test="discountPolicyType != null">discount_policy_type,</if>
<if test="zeroTaxRateIndicator != null">zero_tax_rate_indicator,</if>
<if test="status != null">status,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
<if test="remark != null">remark,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="productCode != null">#{productCode},</if>
<if test="productName != null">#{productName},</if>
<if test="taxRate != null">#{taxRate},</if>
<if test="unitPrice != null">#{unitPrice},</if>
<if test="specification != null">#{specification},</if>
<if test="unitOfMeasurement != null">#{unitOfMeasurement},</if>
<if test="taxCategoryCode != null">#{taxCategoryCode},</if>
<if test="taxCategoryCodeId != null">#{taxCategoryCodeId},</if>
<if test="taxCategoryAbbreviation != null">#{taxCategoryAbbreviation},</if>
<if test="isQualifiedForDiscount != null">#{isQualifiedForDiscount},</if>
<if test="discountPolicyType != null">#{discountPolicyType},</if>
<if test="zeroTaxRateIndicator != null">#{zeroTaxRateIndicator},</if>
<if test="status != null">#{status},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
<if test="remark != null">#{remark},</if>
</trim>
</insert>
<update id="updateProductInfo" parameterType="ProductInfo">
update product_info
<trim prefix="SET" suffixOverrides=",">
<if test="productCode != null">product_code = #{productCode},</if>
<if test="productName != null">product_name = #{productName},</if>
<if test="taxRate != null">tax_rate = #{taxRate},</if>
<if test="unitPrice != null">unit_price = #{unitPrice},</if>
<if test="specification != null">specification = #{specification},</if>
<if test="unitOfMeasurement != null">unit_of_measurement = #{unitOfMeasurement},</if>
<if test="taxCategoryCode != null">tax_category_code = #{taxCategoryCode},</if>
<if test="taxCategoryCodeId != null">tax_category_code_id = #{taxCategoryCodeId},</if>
<if test="taxCategoryAbbreviation != null">tax_category_abbreviation = #{taxCategoryAbbreviation},</if>
<if test="isQualifiedForDiscount != null">is_qualified_for_discount = #{isQualifiedForDiscount},</if>
<if test="discountPolicyType != null">discount_policy_type = #{discountPolicyType},</if>
<if test="zeroTaxRateIndicator != null">zero_tax_rate_indicator = #{zeroTaxRateIndicator},</if>
<if test="status != null">status = #{status},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="remark != null">remark = #{remark},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteProductInfoById" parameterType="Long">
delete from product_info where id = #{id}
</delete>
<delete id="deleteProductInfoByIds" parameterType="String">
delete from product_info where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>

@ -0,0 +1,44 @@
import request from '@/utils/request'
// 查询商品信息列表
export function listProduct_info(query) {
return request({
url: '/platform/product_info/list',
method: 'get',
params: query
})
}
// 查询商品信息详细
export function getProduct_info(id) {
return request({
url: '/platform/product_info/' + id,
method: 'get'
})
}
// 新增商品信息
export function addProduct_info(data) {
return request({
url: '/platform/product_info',
method: 'post',
data: data
})
}
// 修改商品信息
export function updateProduct_info(data) {
return request({
url: '/platform/product_info',
method: 'put',
data: data
})
}
// 删除商品信息
export function delProduct_info(id) {
return request({
url: '/platform/product_info/' + id,
method: 'delete'
})
}

@ -0,0 +1,411 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="商品编码" prop="productCode">
<el-input
v-model="queryParams.productCode"
placeholder="请输入商品编码"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="商品名称" prop="productName">
<el-input
v-model="queryParams.productName"
placeholder="请输入商品名称"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="税率" prop="taxRate">
<el-input
v-model="queryParams.taxRate"
placeholder="请输入税率"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="单价" prop="unitPrice">
<el-input
v-model="queryParams.unitPrice"
placeholder="请输入单价"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="规格型号" prop="specification">
<el-input
v-model="queryParams.specification"
placeholder="请输入规格型号"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="计量单位" prop="unitOfMeasurement">
<el-input
v-model="queryParams.unitOfMeasurement"
placeholder="请输入计量单位"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="税收分类编码" prop="taxCategoryCode">
<el-input
v-model="queryParams.taxCategoryCode"
placeholder="请输入税收分类编码"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="税收分类编码Id" prop="taxCategoryCodeId">
<el-input
v-model="queryParams.taxCategoryCodeId"
placeholder="请输入税收分类编码Id"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="税收分类编码简称" prop="taxCategoryAbbreviation">
<el-input
v-model="queryParams.taxCategoryAbbreviation"
placeholder="请输入税收分类编码简称"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="是否享受优惠政策" prop="isQualifiedForDiscount">
<el-input
v-model="queryParams.isQualifiedForDiscount"
placeholder="请输入是否享受优惠政策"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="零税率标识" prop="zeroTaxRateIndicator">
<el-input
v-model="queryParams.zeroTaxRateIndicator"
placeholder="请输入零税率标识"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['platform:product_info:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['platform:product_info:edit']"
>修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['platform:product_info:remove']"
>删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['platform:product_info:export']"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="product_infoList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="主键" align="center" prop="id" />
<el-table-column label="商品编码" align="center" prop="productCode" />
<el-table-column label="商品名称" align="center" prop="productName" />
<el-table-column label="税率" align="center" prop="taxRate" />
<el-table-column label="单价" align="center" prop="unitPrice" />
<el-table-column label="规格型号" align="center" prop="specification" />
<el-table-column label="计量单位" align="center" prop="unitOfMeasurement" />
<el-table-column label="税收分类编码" align="center" prop="taxCategoryCode" />
<el-table-column label="税收分类编码Id" align="center" prop="taxCategoryCodeId" />
<el-table-column label="税收分类编码简称" align="center" prop="taxCategoryAbbreviation" />
<el-table-column label="是否享受优惠政策" align="center" prop="isQualifiedForDiscount" />
<el-table-column label="优惠政策类型" align="center" prop="discountPolicyType" />
<el-table-column label="零税率标识" align="center" prop="zeroTaxRateIndicator" />
<el-table-column label="状态" align="center" prop="status" />
<el-table-column label="备注" align="center" prop="remark" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['platform:product_info:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['platform:product_info:remove']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改商品信息对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-form-item label="商品编码" prop="productCode">
<el-input v-model="form.productCode" placeholder="请输入商品编码" />
</el-form-item>
<el-form-item label="商品名称" prop="productName">
<el-input v-model="form.productName" placeholder="请输入商品名称" />
</el-form-item>
<el-form-item label="税率" prop="taxRate">
<el-input v-model="form.taxRate" placeholder="请输入税率" />
</el-form-item>
<el-form-item label="单价" prop="unitPrice">
<el-input v-model="form.unitPrice" placeholder="请输入单价" />
</el-form-item>
<el-form-item label="规格型号" prop="specification">
<el-input v-model="form.specification" placeholder="请输入规格型号" />
</el-form-item>
<el-form-item label="计量单位" prop="unitOfMeasurement">
<el-input v-model="form.unitOfMeasurement" placeholder="请输入计量单位" />
</el-form-item>
<el-form-item label="税收分类编码" prop="taxCategoryCode">
<el-input v-model="form.taxCategoryCode" placeholder="请输入税收分类编码" />
</el-form-item>
<el-form-item label="税收分类编码Id" prop="taxCategoryCodeId">
<el-input v-model="form.taxCategoryCodeId" placeholder="请输入税收分类编码Id" />
</el-form-item>
<el-form-item label="税收分类编码简称" prop="taxCategoryAbbreviation">
<el-input v-model="form.taxCategoryAbbreviation" placeholder="请输入税收分类编码简称" />
</el-form-item>
<el-form-item label="是否享受优惠政策" prop="isQualifiedForDiscount">
<el-input v-model="form.isQualifiedForDiscount" placeholder="请输入是否享受优惠政策" />
</el-form-item>
<el-form-item label="零税率标识" prop="zeroTaxRateIndicator">
<el-input v-model="form.zeroTaxRateIndicator" placeholder="请输入零税率标识" />
</el-form-item>
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import { listProduct_info, getProduct_info, delProduct_info, addProduct_info, updateProduct_info } from "@/api/platform/product_info";
export default {
name: "Product_info",
data() {
return {
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
product_infoList: [],
//
title: "",
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
productCode: null,
productName: null,
taxRate: null,
unitPrice: null,
specification: null,
unitOfMeasurement: null,
taxCategoryCode: null,
taxCategoryCodeId: null,
taxCategoryAbbreviation: null,
isQualifiedForDiscount: null,
discountPolicyType: null,
zeroTaxRateIndicator: null,
status: null,
},
//
form: {},
//
rules: {
}
};
},
created() {
this.getList();
},
methods: {
/** 查询商品信息列表 */
getList() {
this.loading = true;
listProduct_info(this.queryParams).then(response => {
this.product_infoList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
id: null,
productCode: null,
productName: null,
taxRate: null,
unitPrice: null,
specification: null,
unitOfMeasurement: null,
taxCategoryCode: null,
taxCategoryCodeId: null,
taxCategoryAbbreviation: null,
isQualifiedForDiscount: null,
discountPolicyType: null,
zeroTaxRateIndicator: null,
status: "0",
createBy: null,
createTime: null,
updateBy: null,
updateTime: null,
remark: null
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加商品信息";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids
getProduct_info(id).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改商品信息";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateProduct_info(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addProduct_info(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除商品信息编号为"' + ids + '"的数据项?').then(function() {
return delProduct_info(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('platform/product_info/export', {
...this.queryParams
}, `product_info_${new Date().getTime()}.xlsx`)
}
}
};
</script>
Loading…
Cancel
Save