Java Code Examples for com.macro.mall.model.PmsProductAttributeCategory#setParamCount()

The following examples show how to use com.macro.mall.model.PmsProductAttributeCategory#setParamCount() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PmsProductAttributeServiceImpl.java    From mall-swarm with Apache License 2.0 6 votes vote down vote up
@Override
public int delete(List<Long> ids) {
    //获取分类
    PmsProductAttribute pmsProductAttribute = productAttributeMapper.selectByPrimaryKey(ids.get(0));
    Integer type = pmsProductAttribute.getType();
    PmsProductAttributeCategory pmsProductAttributeCategory = productAttributeCategoryMapper.selectByPrimaryKey(pmsProductAttribute.getProductAttributeCategoryId());
    PmsProductAttributeExample example = new PmsProductAttributeExample();
    example.createCriteria().andIdIn(ids);
    int count = productAttributeMapper.deleteByExample(example);
    //删除完成后修改数量
    if(type==0){
        if(pmsProductAttributeCategory.getAttributeCount()>=count){
            pmsProductAttributeCategory.setAttributeCount(pmsProductAttributeCategory.getAttributeCount()-count);
        }else{
            pmsProductAttributeCategory.setAttributeCount(0);
        }
    }else if(type==1){
        if(pmsProductAttributeCategory.getParamCount()>=count){
            pmsProductAttributeCategory.setParamCount(pmsProductAttributeCategory.getParamCount()-count);
        }else{
            pmsProductAttributeCategory.setParamCount(0);
        }
    }
    productAttributeCategoryMapper.updateByPrimaryKey(pmsProductAttributeCategory);
    return count;
}
 
Example 2
Source File: PmsProductAttributeServiceImpl.java    From macrozheng with Apache License 2.0 6 votes vote down vote up
@Override
public int delete(List<Long> ids) {
    //获取分类
    PmsProductAttribute pmsProductAttribute = productAttributeMapper.selectByPrimaryKey(ids.get(0));
    Integer type = pmsProductAttribute.getType();
    PmsProductAttributeCategory pmsProductAttributeCategory = productAttributeCategoryMapper.selectByPrimaryKey(pmsProductAttribute.getProductAttributeCategoryId());
    PmsProductAttributeExample example = new PmsProductAttributeExample();
    example.createCriteria().andIdIn(ids);
    int count = productAttributeMapper.deleteByExample(example);
    //删除完成后修改数量
    if(type==0){
        if(pmsProductAttributeCategory.getAttributeCount()>=count){
            pmsProductAttributeCategory.setAttributeCount(pmsProductAttributeCategory.getAttributeCount()-count);
        }else{
            pmsProductAttributeCategory.setAttributeCount(0);
        }
    }else if(type==1){
        if(pmsProductAttributeCategory.getParamCount()>=count){
            pmsProductAttributeCategory.setParamCount(pmsProductAttributeCategory.getParamCount()-count);
        }else{
            pmsProductAttributeCategory.setParamCount(0);
        }
    }
    productAttributeCategoryMapper.updateByPrimaryKey(pmsProductAttributeCategory);
    return count;
}
 
Example 3
Source File: PmsProductAttributeServiceImpl.java    From mall with Apache License 2.0 6 votes vote down vote up
@Override
public int delete(List<Long> ids) {
    //获取分类
    PmsProductAttribute pmsProductAttribute = productAttributeMapper.selectByPrimaryKey(ids.get(0));
    Integer type = pmsProductAttribute.getType();
    PmsProductAttributeCategory pmsProductAttributeCategory = productAttributeCategoryMapper.selectByPrimaryKey(pmsProductAttribute.getProductAttributeCategoryId());
    PmsProductAttributeExample example = new PmsProductAttributeExample();
    example.createCriteria().andIdIn(ids);
    int count = productAttributeMapper.deleteByExample(example);
    //删除完成后修改数量
    if(type==0){
        if(pmsProductAttributeCategory.getAttributeCount()>=count){
            pmsProductAttributeCategory.setAttributeCount(pmsProductAttributeCategory.getAttributeCount()-count);
        }else{
            pmsProductAttributeCategory.setAttributeCount(0);
        }
    }else if(type==1){
        if(pmsProductAttributeCategory.getParamCount()>=count){
            pmsProductAttributeCategory.setParamCount(pmsProductAttributeCategory.getParamCount()-count);
        }else{
            pmsProductAttributeCategory.setParamCount(0);
        }
    }
    productAttributeCategoryMapper.updateByPrimaryKey(pmsProductAttributeCategory);
    return count;
}
 
Example 4
Source File: PmsProductAttributeServiceImpl.java    From macrozheng-mall with MIT License 6 votes vote down vote up
@Override
public int delete(List<Long> ids) {
    //获取分类
    PmsProductAttribute pmsProductAttribute = productAttributeMapper.selectByPrimaryKey(ids.get(0));
    Integer type = pmsProductAttribute.getType();
    PmsProductAttributeCategory pmsProductAttributeCategory = productAttributeCategoryMapper.selectByPrimaryKey(pmsProductAttribute.getProductAttributeCategoryId());
    PmsProductAttributeExample example = new PmsProductAttributeExample();
    example.createCriteria().andIdIn(ids);
    int count = productAttributeMapper.deleteByExample(example);
    //删除完成后修改数量
    if(type==0){
        if(pmsProductAttributeCategory.getAttributeCount()>=count){
            pmsProductAttributeCategory.setAttributeCount(pmsProductAttributeCategory.getAttributeCount()-count);
        }else{
            pmsProductAttributeCategory.setAttributeCount(0);
        }
    }else if(type==1){
        if(pmsProductAttributeCategory.getParamCount()>=count){
            pmsProductAttributeCategory.setParamCount(pmsProductAttributeCategory.getParamCount()-count);
        }else{
            pmsProductAttributeCategory.setParamCount(0);
        }
    }
    productAttributeCategoryMapper.updateByPrimaryKey(pmsProductAttributeCategory);
    return count;
}
 
Example 5
Source File: PmsProductAttributeServiceImpl.java    From mall-swarm with Apache License 2.0 5 votes vote down vote up
@Override
public int create(PmsProductAttributeParam pmsProductAttributeParam) {
    PmsProductAttribute pmsProductAttribute = new PmsProductAttribute();
    BeanUtils.copyProperties(pmsProductAttributeParam, pmsProductAttribute);
    int count = productAttributeMapper.insertSelective(pmsProductAttribute);
    //新增商品属性以后需要更新商品属性分类数量
    PmsProductAttributeCategory pmsProductAttributeCategory = productAttributeCategoryMapper.selectByPrimaryKey(pmsProductAttribute.getProductAttributeCategoryId());
    if(pmsProductAttribute.getType()==0){
        pmsProductAttributeCategory.setAttributeCount(pmsProductAttributeCategory.getAttributeCount()+1);
    }else if(pmsProductAttribute.getType()==1){
        pmsProductAttributeCategory.setParamCount(pmsProductAttributeCategory.getParamCount()+1);
    }
    productAttributeCategoryMapper.updateByPrimaryKey(pmsProductAttributeCategory);
    return count;
}
 
Example 6
Source File: PmsProductAttributeServiceImpl.java    From macrozheng with Apache License 2.0 5 votes vote down vote up
@Override
public int create(PmsProductAttributeParam pmsProductAttributeParam) {
    PmsProductAttribute pmsProductAttribute = new PmsProductAttribute();
    BeanUtils.copyProperties(pmsProductAttributeParam, pmsProductAttribute);
    int count = productAttributeMapper.insertSelective(pmsProductAttribute);
    //新增商品属性以后需要更新商品属性分类数量
    PmsProductAttributeCategory pmsProductAttributeCategory = productAttributeCategoryMapper.selectByPrimaryKey(pmsProductAttribute.getProductAttributeCategoryId());
    if(pmsProductAttribute.getType()==0){
        pmsProductAttributeCategory.setAttributeCount(pmsProductAttributeCategory.getAttributeCount()+1);
    }else if(pmsProductAttribute.getType()==1){
        pmsProductAttributeCategory.setParamCount(pmsProductAttributeCategory.getParamCount()+1);
    }
    productAttributeCategoryMapper.updateByPrimaryKey(pmsProductAttributeCategory);
    return count;
}
 
Example 7
Source File: PmsProductAttributeServiceImpl.java    From mall with Apache License 2.0 5 votes vote down vote up
@Override
public int create(PmsProductAttributeParam pmsProductAttributeParam) {
    PmsProductAttribute pmsProductAttribute = new PmsProductAttribute();
    BeanUtils.copyProperties(pmsProductAttributeParam, pmsProductAttribute);
    int count = productAttributeMapper.insertSelective(pmsProductAttribute);
    //新增商品属性以后需要更新商品属性分类数量
    PmsProductAttributeCategory pmsProductAttributeCategory = productAttributeCategoryMapper.selectByPrimaryKey(pmsProductAttribute.getProductAttributeCategoryId());
    if(pmsProductAttribute.getType()==0){
        pmsProductAttributeCategory.setAttributeCount(pmsProductAttributeCategory.getAttributeCount()+1);
    }else if(pmsProductAttribute.getType()==1){
        pmsProductAttributeCategory.setParamCount(pmsProductAttributeCategory.getParamCount()+1);
    }
    productAttributeCategoryMapper.updateByPrimaryKey(pmsProductAttributeCategory);
    return count;
}
 
Example 8
Source File: PmsProductAttributeServiceImpl.java    From macrozheng-mall with MIT License 5 votes vote down vote up
@Override
public int create(PmsProductAttributeParam pmsProductAttributeParam) {
    PmsProductAttribute pmsProductAttribute = new PmsProductAttribute();
    BeanUtils.copyProperties(pmsProductAttributeParam, pmsProductAttribute);
    int count = productAttributeMapper.insertSelective(pmsProductAttribute);
    //新增商品属性以后需要更新商品属性分类数量
    PmsProductAttributeCategory pmsProductAttributeCategory = productAttributeCategoryMapper.selectByPrimaryKey(pmsProductAttribute.getProductAttributeCategoryId());
    if(pmsProductAttribute.getType()==0){
        pmsProductAttributeCategory.setAttributeCount(pmsProductAttributeCategory.getAttributeCount()+1);
    }else if(pmsProductAttribute.getType()==1){
        pmsProductAttributeCategory.setParamCount(pmsProductAttributeCategory.getParamCount()+1);
    }
    productAttributeCategoryMapper.updateByPrimaryKey(pmsProductAttributeCategory);
    return count;
}