This commit is contained in:
2025-04-07 12:46:19 +08:00
parent 9c5cd30398
commit d8bdc0a0ac
3 changed files with 18 additions and 13 deletions

View File

@@ -2,8 +2,8 @@
"name" : "恒森", "name" : "恒森",
"appid" : "__UNI__8D175E0", "appid" : "__UNI__8D175E0",
"description" : "恒森WMS手持系统", "description" : "恒森WMS手持系统",
"versionName" : "1.1.7", "versionName" : "1.1.8",
"versionCode" : 117, "versionCode" : 118,
"transformPx" : false, "transformPx" : false,
/* 5+App */ /* 5+App */
"app-plus" : { "app-plus" : {

View File

@@ -42,7 +42,7 @@
<span class="filter_label filter_input_disabled">单位</span> <span class="filter_label filter_input_disabled">单位</span>
</view> </view>
<view class="zd-col-18"> <view class="zd-col-18">
<input type="text" class="filter_input filter_input_disabled" v-model="currentData.unit_id" disabled> <input type="text" class="filter_input filter_input_disabled" v-model="currentData.unit_name" disabled>
</view> </view>
</view> </view>
<view class="zd-row border-bottom"> <view class="zd-row border-bottom">
@@ -95,10 +95,11 @@
<th>序号</th> <th>序号</th>
<th>物料编码</th> <th>物料编码</th>
<th>物料名称</th> <th>物料名称</th>
<th>物料规格</th>
<th>单位</th>
<th>物料批次</th>
<th>物料数量</th> <th>物料数量</th>
<th>单位</th>
<th>单据状态</th>
<th>物料批次</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@@ -106,10 +107,11 @@
<td>{{i+1}}</td> <td>{{i+1}}</td>
<td>{{e.material_code}}</td> <td>{{e.material_code}}</td>
<td>{{e.material_name}}</td> <td>{{e.material_name}}</td>
<td>{{e.material_spec}}</td>
<td>{{e.unit_name}}</td>
<td>{{e.pcsn}}</td>
<td>{{e.qty}}</td> <td>{{e.qty}}</td>
<td>{{e.unit_name}}</td>
<td>{{e.bill_status}}</td>
<td>{{e.pcsn}}</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
@@ -190,7 +192,7 @@
}, },
async _getBillNoInfo (e) { async _getBillNoInfo (e) {
try { try {
let res = await getBillNoInfo(e) let res = await getBillNoInfo(e, this.index1)
if (res && res.length) { if (res && res.length) {
this.dataList = [...res] this.dataList = [...res]
this.pkId = '' this.pkId = ''
@@ -204,6 +206,9 @@
} catch (e) {} } catch (e) {}
}, },
toCheck (e) { toCheck (e) {
if (e.status === '80') {
return
}
this.pkId = this.pkId === e.material_code ? '' : e.material_code this.pkId = this.pkId === e.material_code ? '' : e.material_code
this.pkObj = this.pkId === e.material_code ? e : {} this.pkObj = this.pkId === e.material_code ? e : {}
}, },

View File

@@ -254,7 +254,7 @@ export const inStorageOrder = () => request({
method: 'GET', method: 'GET',
url:'api/pda/inStorage/order' url:'api/pda/inStorage/order'
}) })
export const getBillNoInfo = (id) => request({ export const getBillNoInfo = (code, type) => request({
url:'api/pda/inStorage/getBillNoInfo/' + id, url:'api/pda/inStorage/getBillNoInfo',
method: 'GET' data: {code, form_type: type}
}) })