添加价格

test
anthonywj 2 years ago
parent 81f0e632ae
commit eb82334bbc

@ -4,7 +4,7 @@ VUE_APP_TITLE = 供应商自助管理平台
# 开发环境配置
ENV = 'development'
VUE_APP_BASE_API = 'http://192.168.0.166:9993'
VUE_APP_BASE_API = 'http://127.0.0.1:9993'
# 应用访问路径 例如使用前缀 /admin/
VUE_APP_CONTEXT_PATH = '/'

@ -6,8 +6,8 @@ ENV = 'production'
# VUE_APP_BASE_API = 'http://116.204.71.86:9150/UDI_WMS_MC/'
#林纪裕
# VUE_APP_BASE_API = 'http://r.jiyuudims.cloud:82/UDI_SPMS_SERVER/'
VUE_APP_BASE_API = 'http://r.jiyuudims.cloud:84/UDI_SPMS_SERVER/'
VUE_APP_BASE_API = 'http://www.linjiyu.lol:82/UDI_SPMS_SERVER/'
# VUE_APP_BASE_API = 'http://www.linjiyu.lol:84/UDI_SPMS_SERVER/'
# VUE_APP_BASE_API = 'http://127.0.0.1:9150/UDI_SPMS_SERVER/'
@ -21,7 +21,7 @@ VUE_APP_BASE_API = 'http://r.jiyuudims.cloud:84/UDI_SPMS_SERVER/'
# VUE_APP_BASE_API = 'http://192.168.0.62:9150/UDI_SPMS_SERVER/'
# 刘恩典
# VUE_APP_BASE_API = 'http://192.168.0.54:9150/UDI_SPMS_SERVER/'
# VUE_APP_BASE_API = 'http://192.168.0.235:9150/UDI_SPMS_SERVER/'
# 漳州中医院
# VUE_APP_BASE_API = 'http://116.204.116.198:9150/UDI_SPMS_SERVER/'

@ -369,7 +369,7 @@
<el-row>
<el-col span="5">
<span class="sptext">是否只允许有库存产品出库</span>
<span class="sptext">入账库使用禁止无库存出库</span>
</el-col>
<el-divider direction="vertical"></el-divider>
<el-col span="5">
@ -377,8 +377,8 @@
:disabled=" inputQuery.mainAction!= 'WareHouseOut' || inputQuery.advancePreIn==1 || inputQuery.scanPreIn==1"
placeholder="是否启用"
>
<el-option label="启用" :value="true"></el-option>
<el-option label="不启用" :value="false"></el-option>
<el-option label="" :value="true"></el-option>
<el-option label="" :value="false"></el-option>
</el-select>
</el-col>
<el-divider direction="vertical"></el-divider>

@ -108,6 +108,7 @@
<el-table-column label="物资名称" prop="cpmctymc" show-overflow-tooltip></el-table-column>
<el-table-column label="规格型号" prop="ggxh" show-overflow-tooltip></el-table-column>
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh" show-overflow-tooltip></el-table-column>
<el-table-column label="价格" prop="price" show-overflow-tooltip></el-table-column>
<el-table-column label="物资分类" prop="classifyName" show-overflow-tooltip></el-table-column>
<el-table-column
v-if="isSpCombine"

@ -254,7 +254,7 @@ import codesPanel from "./PanelCreateOrderCodes"
import codeDetailPanel from "./PanelCreateOrderCodeDetail"
import bizDetailPanel from "./PanelCreateOrderBizDetail"
import A from "../../plugins/KeyScaner"
import {findByInvUser, getLocalJoinByUser} from '@/api/basic/busType'
import {findByInvUser, getLocalJoinByUser, getBusTypeList} from '@/api/basic/busType'
import {deleteRe} from "@/api/auth/register";
export default {
@ -409,11 +409,11 @@ export default {
initBusType() {
let query = {
code: this.orderFormData.invCode,
action: this.orderFormData.action,
};
findByInvUser(query)
getBusTypeList(query)
.then((response) => {
this.busTypeOptions = response.data || [];
this.busTypeOptions = response.data.list || [];
this.curAction = this.getActionItem(this.orderFormData.action);
if ((this.curAction.checkEnable && (this.curAction.checkWebNew || this.curAction.checkUdims || this.curAction.checkCopy
|| this.curAction.checkPdaEd || this.curAction.checkPdaUn || this.curAction.checkPc || this.curAction.checkWebNew || this.curAction.checkSp || this.curAction.checkChange || this.curAction.checkBalance)) || this.viewType == 1) {
@ -496,7 +496,7 @@ export default {
//
getActionItem(action) {
for (let i = 0; i < this.busTypeOptions.length; i++) {
if (this.busTypeOptions[i].action == action) {
if (this.busTypeOptions[i].action === action) {
return this.busTypeOptions[i];
}
}
@ -955,6 +955,7 @@ export default {
// //
this.findInvListByUser();
this.initBusType();
this.findMethod(this.orderFormData.fromCorp);
this.findFromInvList();
} else { //

@ -105,6 +105,11 @@
prop="zczbhhzbapzbh"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="价格"
prop="price"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="器械类别"
prop="qxlb"

@ -74,9 +74,9 @@
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="最小销售产品标识" prop="nameCode" width="140" show-overflow-tooltip></el-table-column>
<el-table-column label="物资编码" prop="thirdId" show-overflow-tooltip></el-table-column>
<el-table-column label="物资名称" prop="cpmctymc" show-overflow-tooltip></el-table-column>
<el-table-column label="规格型号" prop="ggxh" show-overflow-tooltip></el-table-column>
<el-table-column label="价格" prop="price" show-overflow-tooltip></el-table-column>
<el-table-column label="生产企业" prop="ylqxzcrbarmc" show-overflow-tooltip></el-table-column>
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh" show-overflow-tooltip></el-table-column>
<el-table-column label="物资分类" prop="classifyName" show-overflow-tooltip></el-table-column>

@ -62,7 +62,7 @@
</div>
<el-divider style="margin: 15px"></el-divider>
<!--v-if="thirdSysDetail.fromType!=0"-->
<el-table v-loading="loading" :data="list" style="width: 100%" border highlight-current-row>
<el-table-column label="序号" type="index" width="80"></el-table-column>
<el-table-column label="产品编码" prop="code"></el-table-column>
@ -75,7 +75,7 @@
<template slot-scope="scope">
<el-button type="text" @click.native.stop="detailDialog(scope.row)">详情</el-button>
<el-button type="text" @click.native.stop="editDialog(scope.row)">编辑</el-button>
<el-button type="text" @click.native.stop="deleteDialog(scope.row)" v-if="thirdSysDetail.fromType!=0"
<el-button type="text" @click.native.stop="deleteDialog(scope.row)"
:disabled="!configParms.basicThirdProducts">删除
</el-button>
</template>

Loading…
Cancel
Save