添加价格

20231126-yw
anthonywj 2 years ago
parent 5c1cdf6bc8
commit 9859b53f8a

@ -5,7 +5,7 @@ VUE_APP_TITLE = UDI管理系统
ENV = 'development'
# 开发环境
VUE_APP_BASE_API = 'http://192.168.0.166:9991'
VUE_APP_BASE_API = 'http://127.0.0.1:9991'
VUE_APP_SYNC_API ="http://127.0.0.1:10001"

@ -397,7 +397,7 @@
<el-row>
<el-col span="5">
<span class="sptext">禁止单据库存0库存出库</span>
<span class="sptext">入账库使用禁止无库存出库</span>
</el-col>
<el-divider direction="vertical"></el-divider>
<el-col span="5">
@ -412,7 +412,7 @@
</el-col>
<el-divider direction="vertical"></el-divider>
<el-col span="13">
<span class="sptext">禁止单据库存0库存出库</span>
<span class="sptext">入账库使用禁止无库存出库</span>
</el-col>
</el-row>
<el-divider></el-divider>

@ -109,6 +109,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"

@ -583,7 +583,7 @@ import codesPanel from "./PanelCreateOrderCodes";
import codeDetailPanel from "./PanelCreateOrderCodeDetail";
import bizDetailPanel from "./PanelCreateOrderBizDetail";
import A from "../../plugins/KeyScaner";
import {findByInvUser} from "@/api/basic/busType";
import {findByInvUser, getBusTypeList} from "@/api/basic/busType";
import {getInvSpaceList} from "@/api/inventory/invSpace";
import DialogSelectUnit from "./DialogSelectUnit";
import selectRlDialog from "./DialogSelectRl";
@ -813,11 +813,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 (isBlank(this.curAction)) {
this.curAction = {

@ -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"

Loading…
Cancel
Save