1.完善主榜单完成正向逻辑。
This commit is contained in:
parent
5777f1dae5
commit
cfc8a92acb
|
@ -109,10 +109,10 @@ public class PoundmstController extends BaseController
|
|||
*/
|
||||
@PreAuthorize("@ss.hasPermi('measurement/bill:poundmst:add')")
|
||||
@Log(title = "主榜单信息", businessType = BusinessType.INSERT)
|
||||
@GetMapping(value = "/complete/{id}")
|
||||
public AjaxResult complete(@PathVariable("id") String id)
|
||||
@PostMapping(value = "/complete")
|
||||
public AjaxResult complete(@RequestBody Poundmst poundmst)
|
||||
{
|
||||
return toAjax(poundmstService.completePoundmst(id));
|
||||
return toAjax(poundmstService.completePoundmst(poundmst));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -70,4 +70,8 @@ public interface PoundmstMapper extends BaseMapper<Poundmst>
|
|||
* @return 结果
|
||||
*/
|
||||
public int updateFidById(@Param("id")String id,@Param("fid")String fid);
|
||||
|
||||
public int completeBillMst(@Param("id")String id);
|
||||
|
||||
public int unCompleteBillMst(@Param("id")String id);
|
||||
}
|
||||
|
|
|
@ -56,10 +56,10 @@ public interface IPoundmstService extends IService<Poundmst>
|
|||
/**
|
||||
* 完成主榜单信息
|
||||
*
|
||||
* @param id 主榜单信息
|
||||
* @param poundmst 主榜单信息
|
||||
* @return 结果
|
||||
*/
|
||||
public int completePoundmst(String id);
|
||||
public int completePoundmst(Poundmst poundmst);
|
||||
|
||||
/**
|
||||
* 批量删除主榜单信息
|
||||
|
@ -78,6 +78,20 @@ public interface IPoundmstService extends IService<Poundmst>
|
|||
*/
|
||||
public int updateFidById(String id, String fid);
|
||||
|
||||
/**
|
||||
* 根据id进行单据状态完成。
|
||||
* @param id
|
||||
* @return
|
||||
*/
|
||||
public int completeBillMst(String id);
|
||||
|
||||
/**
|
||||
* 根据Id进行单据反完成
|
||||
* @param id
|
||||
* @return
|
||||
*/
|
||||
public int unCompleteBillMst(String id);
|
||||
|
||||
/**
|
||||
* 删除主榜单信息信息
|
||||
*
|
||||
|
|
|
@ -3,6 +3,7 @@ package com.ruoyi.bill.service.impl;
|
|||
import java.io.IOException;
|
||||
import java.util.List;
|
||||
|
||||
import com.ruoyi.bill.domain.PoundBill;
|
||||
import com.ruoyi.webApi.ApiPostBack;
|
||||
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
@ -28,6 +29,8 @@ public class PoundmstServiceImpl extends ServiceImpl<PoundmstMapper, Poundmst> i
|
|||
|
||||
@Autowired
|
||||
private ApiPostBack apiPostBack;
|
||||
@Autowired
|
||||
private PoundBillServiceImpl poundBillServiceImpl;
|
||||
|
||||
/**
|
||||
* 查询主榜单信息
|
||||
|
@ -64,6 +67,7 @@ public class PoundmstServiceImpl extends ServiceImpl<PoundmstMapper, Poundmst> i
|
|||
public int insertPoundmst(Poundmst poundmst)
|
||||
{
|
||||
poundmst.initAddFields(poundmst);
|
||||
poundmst.setBllstt("1");
|
||||
boolean save = save(poundmst);
|
||||
if (save){
|
||||
return 1;
|
||||
|
@ -103,15 +107,26 @@ public class PoundmstServiceImpl extends ServiceImpl<PoundmstMapper, Poundmst> i
|
|||
}
|
||||
|
||||
@Override
|
||||
public int completePoundmst(String id) {
|
||||
@Transactional(rollbackFor = Exception.class)
|
||||
public int completePoundmst(Poundmst poundmst) {
|
||||
String id = poundmst.getId();
|
||||
String usrcode = poundmst.getUsrcode();
|
||||
try {
|
||||
//根据当前id,查询下游的榜单信息,如果存在非完成状态的数据,则提示报错。
|
||||
PoundBill queryPoundBill = new PoundBill();
|
||||
queryPoundBill.setAppliid(id);
|
||||
queryPoundBill.setBillstate("1");
|
||||
List<PoundBill> poundBills = poundBillServiceImpl.selectPoundBillList(queryPoundBill);
|
||||
if (!poundBills.isEmpty()){
|
||||
//下游还存在未完成的榜单,不允许“完成”
|
||||
throw new Exception("下游存在“未完成”的榜单,不允许完成。");
|
||||
}
|
||||
//推送星空
|
||||
apiPostBack.makePoundmstFormData(id);
|
||||
|
||||
//推送完成后。将单据状态设置为完成。
|
||||
|
||||
completeBillMst(id);
|
||||
}catch (Exception e){
|
||||
throw new RuntimeException("主榜单:" + id + "推送星空时,出现异常:"+e.getMessage());
|
||||
throw new RuntimeException("主榜单:" + usrcode + " 推送星空时,出现异常:"+e.getMessage());
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
@ -137,7 +152,25 @@ public class PoundmstServiceImpl extends ServiceImpl<PoundmstMapper, Poundmst> i
|
|||
*/
|
||||
public int updateFidById(String id, String fid){
|
||||
return poundmstMapper.updateFidById(id,fid);
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* 完成单据
|
||||
* @param id
|
||||
* @return
|
||||
*/
|
||||
public int completeBillMst(String id){
|
||||
return poundmstMapper.completeBillMst(id);
|
||||
}
|
||||
|
||||
/**
|
||||
* 反完成单据
|
||||
* @param id
|
||||
* @return
|
||||
*/
|
||||
public int unCompleteBillMst(String id){
|
||||
return poundmstMapper.unCompleteBillMst(id);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除主榜单信息信息
|
||||
|
|
|
@ -326,6 +326,7 @@ public class ApiTask {
|
|||
// 3. 保存
|
||||
Poundmst poundmst = new Poundmst();
|
||||
poundmst.setId(UUID.randomUUID().toString());
|
||||
poundmst.setBllstt("1");//是否完成
|
||||
poundmst.setBsndt(date);
|
||||
poundmst.setSrcbllid(billno);
|
||||
poundmst.setItmname(materialName);
|
||||
|
@ -361,6 +362,7 @@ public class ApiTask {
|
|||
// 3. 保存过磅申请
|
||||
Poundmst poundmst = new Poundmst();
|
||||
poundmst.setId(UUID.randomUUID().toString());
|
||||
poundmst.setBllstt("1");//是否完成
|
||||
poundmst.setBsndt(date);
|
||||
poundmst.setSrcbllid(billno);
|
||||
poundmst.setFid(fid);
|
||||
|
|
|
@ -311,4 +311,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
set fid = #{fid}
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
||||
<update id="completeBillMst" parameterType="String">
|
||||
update t_data_poundmst
|
||||
set bllstt = '2'
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
||||
<update id="unCompleteBillMst" parameterType="String">
|
||||
update t_data_poundmst
|
||||
set bllstt = '1'
|
||||
where id = #{id}
|
||||
</update>
|
||||
</mapper>
|
|
@ -44,11 +44,12 @@ export function updatePoundmst(data) {
|
|||
}
|
||||
|
||||
|
||||
// 查询主榜单信息详细
|
||||
export function complete(id) {
|
||||
// 完成主榜单。
|
||||
export function complete(data) {
|
||||
return request({
|
||||
url: '/measurement/bill/poundmst/complete/' + id,
|
||||
method: 'get'
|
||||
url: '/measurement/bill/poundmst/complete',
|
||||
method: 'post',
|
||||
data:data
|
||||
})
|
||||
}
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ const service = axios.create({
|
|||
// axios中请求配置有baseURL选项,表示请求URL公共部分
|
||||
baseURL: process.env.VUE_APP_BASE_API,
|
||||
// 超时
|
||||
timeout: 10000
|
||||
timeout: 20000
|
||||
})
|
||||
|
||||
// request拦截器
|
||||
|
|
|
@ -81,8 +81,8 @@
|
|||
<el-form-item prop="sendunitid">
|
||||
<el-checkbox
|
||||
v-model="queryPageParams.mstBill.bllstt"
|
||||
:true-value="'2'"
|
||||
:false-value="'1'"
|
||||
:true-label="'2'"
|
||||
:false-label="'1'"
|
||||
>完成</el-checkbox>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
|
@ -735,6 +735,7 @@ export default {
|
|||
//主榜单相关界面参数
|
||||
mstBillFormData:{
|
||||
selectedIds:[],
|
||||
selectedUsrcodes:[],
|
||||
mstBillForm:{},
|
||||
mstBillRules:{},
|
||||
mstBillTitle:"主榜单信息",
|
||||
|
@ -858,9 +859,11 @@ export default {
|
|||
handleMstSelectionChange(selection) {
|
||||
if (selection.length > 0){
|
||||
this.mstBillFormData.selectedIds = selection.map(item => item.id)
|
||||
this.mstBillFormData.selectedUsrcodes = selection.map(item => item.usrcode)
|
||||
this.queryPoundBillDetailFirst();
|
||||
}else {
|
||||
this.mstBillFormData.selectedIds = [];
|
||||
this.mstBillFormData.selectedUsrcodes = [];
|
||||
}
|
||||
},
|
||||
// 过磅明细多选框选中数据
|
||||
|
@ -1190,7 +1193,19 @@ export default {
|
|||
return;
|
||||
}
|
||||
//触发完成方法
|
||||
await complete(this.mstBillFormData.selectedIds[0])
|
||||
//拼接参数
|
||||
const data = {
|
||||
id:this.mstBillFormData.selectedIds[0],
|
||||
usrcode:this.mstBillFormData.selectedUsrcodes[0],
|
||||
}
|
||||
const res = await complete(data);
|
||||
if (res.code === 200) {
|
||||
this.$message.success("完成主榜单成功!");
|
||||
//查询主榜单数据
|
||||
this.handleSearchMstBillFirst();
|
||||
} else {
|
||||
this.$message.error("完成主榜单失败!");
|
||||
}
|
||||
},
|
||||
|
||||
//searchSelect相关方法
|
||||
|
|
|
@ -81,8 +81,8 @@
|
|||
<el-form-item prop="sendunitid">
|
||||
<el-checkbox
|
||||
v-model="queryPageParams.mstBill.bllstt"
|
||||
:true-value="'2'"
|
||||
:false-value="'1'"
|
||||
:true-label="'2'"
|
||||
:false-label="'1'"
|
||||
>完成</el-checkbox>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
|
|
|
@ -39,13 +39,13 @@
|
|||
<el-form-item>
|
||||
<el-button type="primary" size="mini" @click="handleGetweight">获取重量</el-button>
|
||||
</el-form-item>
|
||||
<el-form-item label="稳定重量" prop="1aaa">
|
||||
<el-input
|
||||
v-model="queryParams.stableWeight"
|
||||
style=""
|
||||
clearable
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="稳定重量" prop="1aaa">
|
||||
<el-input
|
||||
v-model="queryParams.stableWeight"
|
||||
style=""
|
||||
clearable
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" size="mini" @click="changePoundType(true)" :disabled = "autoPoundParams.autoPound">自动过磅</el-button>
|
||||
<el-button type="primary" size="mini" @click="changePoundType(false)" :disabled = "!autoPoundParams.autoPound">手动过磅</el-button>
|
||||
|
@ -53,6 +53,17 @@
|
|||
<el-button type="primary" size="mini" @click="handleSearchMstBillFirst">查询</el-button>
|
||||
<el-button type="primary" size="mini" @click="handleSearchMstBillFirst">打印</el-button>
|
||||
</el-form-item>
|
||||
<el-row>
|
||||
<el-col>
|
||||
<el-form-item prop="sendunitid">
|
||||
<el-checkbox
|
||||
v-model="queryPageParams.mstBill.bllstt"
|
||||
:true-label="'2'"
|
||||
:false-label="'1'"
|
||||
>完成</el-checkbox>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-form>
|
||||
<!-- 主磅单信息 -->
|
||||
<el-card>
|
||||
|
@ -495,6 +506,7 @@ export default {
|
|||
trnunitid:"",//运输单位
|
||||
sendunitid:"",//发货单位
|
||||
poundid:"",//业务磅点,java对象中存储为该字段。
|
||||
bllstt:"1"
|
||||
},
|
||||
poundBillDetail: {
|
||||
total: 0,
|
||||
|
@ -521,6 +533,7 @@ export default {
|
|||
//主榜单相关界面参数
|
||||
mstBillFormData:{
|
||||
selectedIds:[],
|
||||
selectedUsrcodes:[],
|
||||
mstBillForm:{},
|
||||
mstBillRules:{},
|
||||
mstBillTitle:"主榜单信息",
|
||||
|
@ -703,10 +716,12 @@ export default {
|
|||
handleMstSelectionChange(selection) {
|
||||
if (selection.length > 0){
|
||||
this.mstBillFormData.selectedIds = selection.map(item => item.id)
|
||||
this.mstBillFormData.selectedUsrcodes = selection.map(item => item.usrcode)
|
||||
var mstId = this.mstBillFormData.selectedIds[0];
|
||||
this.queryPoundBillDetail(mstId);
|
||||
}else {
|
||||
this.mstBillFormData.selectedIds = [];
|
||||
this.mstBillFormData.selectedUsrcodes = [];
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -969,7 +984,19 @@ export default {
|
|||
return;
|
||||
}
|
||||
//触发完成方法
|
||||
await complete(this.mstBillFormData.selectedIds[0])
|
||||
//拼接参数
|
||||
const data = {
|
||||
id:this.mstBillFormData.selectedIds[0],
|
||||
usrcode:this.mstBillFormData.selectedUsrcodes[0],
|
||||
}
|
||||
const res = await complete(data);
|
||||
if (res.code === 200) {
|
||||
this.$message.success("完成主榜单成功!");
|
||||
//查询主榜单数据
|
||||
this.handleSearchMstBillFirst();
|
||||
} else {
|
||||
this.$message.error("完成主榜单失败!");
|
||||
}
|
||||
},
|
||||
//searchSelect相关方法
|
||||
buildCacheKey({ params, where, groupby = '', orderby = '' }) {
|
||||
|
|
Loading…
Reference in New Issue