Browse Source

Merge branch 'groupmealweb' of http://10.2.1.24:10244/zhaoy/BPA.SAAS.Web into groupmealweb

groupmealweb
gwbvipvip 11 months ago
parent
commit
1195a89521
4 changed files with 53 additions and 42 deletions
  1. +1
    -1
      src/pages/database/goods/goodsInfo/components/EditFrom.jsx
  2. +38
    -34
      src/pages/database/goods/goodsInfo/components/goodstechnologymaken.jsx
  3. +12
    -5
      src/pages/database/goods/goodsInfo/index.jsx
  4. +2
    -2
      src/pages/database/goods/goodsInfo/service.js

+ 1
- 1
src/pages/database/goods/goodsInfo/components/EditFrom.jsx View File

@@ -80,7 +80,7 @@ const EditFrom = (props) => {
const onHandleChange = (value, option, index) => {
console.log(fromdata)
console.log(index)
var sd = props.technologyattralldata.filter(x => x.goodstechnologyId == value);
var sd = props.technologyattralldata.filter(x => x.productFunctionId == value);
var newdata = fromdata.map(x => {
if (x.index == index) {


+ 38
- 34
src/pages/database/goods/goodsInfo/components/goodstechnologymaken.jsx View File

@@ -45,39 +45,43 @@ const goodstechnologymaken = (props) => {
interdata()
}, [])
const interdata = () => {
getbyidgoods(props.goodsid).then((res) => {
if (res.succeeded) {
if (res.data.goodsAttributeList.length == 0) {
setdisplay("none")
}else{
res.data.goodsAttributeList.forEach(item=>{
item.defalutvalue=[];
item.goodsAttributeValueList.forEach(x=>{
if(item.attributeName=="默认属性"){
x.check=true;
setAttrvalue(x.attributeValue)
item.defalutvalue.push(x.goodsAttributeValuId)
}else{
x.check=false;
}
console.log("props.goodsid",props.goodsid)
if(props.goodsid!=undefined){
getbyidgoods(props.goodsid).then((res) => {
if (res.succeeded) {
if (res.data.goodsAttributeList.length == 0) {
setdisplay("none")
}else{
res.data.goodsAttributeList.forEach(item=>{
item.defalutvalue=[];
item.goodsAttributeValueList.forEach(x=>{
if(item.attributeName=="默认属性"){
x.check=true;
setAttrvalue(x.attributeValue)
item.defalutvalue.push(x.goodsAttributeValuId)
}else{
x.check=false;
}
})
})
})
}
console.log("商品属性",res.data)
setGoodsinfo(res.data)
var it = [
// {key:'1',label:'',children:(<div><img style={{width:100,height:100}} src={res.data.imgUrl}></img></div>)},
{ key: '1', label: '商品名称', children: res.data.name },
{ key: '2', label: '商品价格', children: res.data.price },
{ key: '3', label: '商品类型', children: res.data.goodsTypeName },
{ key: '4', label: '商品单位', children: res.data.goodsUintName },
]
setItems(it)
} else {
message.error("查询商品信息失败");
}
console.log("商品属性",res.data)
setGoodsinfo(res.data)
var it = [
// {key:'1',label:'',children:(<div><img style={{width:100,height:100}} src={res.data.imgUrl}></img></div>)},
{ key: '1', label: '商品名称', children: res.data.name },
{ key: '2', label: '商品价格', children: res.data.price },
{ key: '3', label: '商品类型', children: res.data.goodsTypeName },
{ key: '4', label: '商品单位', children: res.data.goodsUintName },
]
setItems(it)
} else {
message.error("查询商品信息失败");
}
});
});
}
// GetGoodsTechnology().then((r) => {
// var data = r.data;
// var sd = []
@@ -157,7 +161,7 @@ const goodstechnologymaken = (props) => {
item.data.forEach(item => {
const obj = {};
let propsdatanew = [];
let propsdata = technologyattralldata.filter(x => x.goodstechnologyId == item.chnologyId)
let propsdata = technologyattralldata.filter(x => x.productFunctionId == item.chnologyId)
obj.stepName = item.stepName;
obj.id = item.id;
obj.chnologyId = item.chnologyId;
@@ -170,7 +174,7 @@ const goodstechnologymaken = (props) => {
actionName: x.actionName,
actionType: x.actionType,
actionValue: x.actionValue,
goodstechnologyId: x.goodstechnologyId,
goodstechnologyId: x.productFunctionId,
isBatch: x.isBatch,
sort: x.sort,
goddteid: item.id
@@ -245,7 +249,7 @@ const goodstechnologymaken = (props) => {
if (sd) {
if (sd.goodsTechnologyInfo.length > 0) {
godata = sd.goodsTechnologyInfo.map(x => {
return { value: x.goodsTechnologyId, label: x.name }
return { value: x.deviceTechnologyId, label: x.name }
})
setgoodstechnologydata(godata)


+ 12
- 5
src/pages/database/goods/goodsInfo/index.jsx View File

@@ -134,11 +134,18 @@ const Advanced = (props) => {
tabActiveKey: props.location.query.tabStatus ? props.location.query.tabStatus : 'basis',
});
useEffect(() => {
SetCurrTabKey(tabStatus.tabActiveKey);
initGoodsUnit();
initGoodsType();
initGetbomType();
intBatching();
if(!props.location.query.values.id){
history.push({
pathname: '/database/goods/newgoods',
});
}else{
SetCurrTabKey(tabStatus.tabActiveKey);
initGoodsUnit();
initGoodsType();
initGetbomType();
intBatching();
}
}, [tabStatus])
const onTabChange = (key) => {
if (currentGoodsProp === 1) {


+ 2
- 2
src/pages/database/goods/goodsInfo/service.js View File

@@ -118,12 +118,12 @@ export async function GetGoodsTechnology(data) {
});
}
export async function GetTechnologyactionList(data) {
return request(`/saasbase/api/goodstechnology/gettechnologyactionList?GoodstechnologyId=`+data, {
return request(`/saasbase/api/productfunction/getproductfunctionaction?productFunctionId=`+data, {
method: 'Get',
});
}
export async function GetTechnologyActionListAll() {
return request(`/saasbase/api/devicetechnology/gettechnologyactionlist`, {
return request(`/saasbase/api/productfunction/getproductfunctionactionlist`, {
method: 'Get',
});
}


Loading…
Cancel
Save