chenhaozhe
2025-09-03 346d8baddff15bebed6594e088378ccb64f62df4
components/PushSeOutStockBillPopup/PushSeOutStockBillPopup.vue
@@ -3,16 +3,16 @@
        <uni-popup ref="popup" type="bottom" @change="popupChangeHandler">
            <view class="content">
                <view class="search-condition">
                    <view class="title"><text>出库通知单号: </text></view>
                    <view class="right"><input type="text" v-model="HBillNo" /></view>
                    <view class="title"><text>发货通知单号: </text></view>
                    <view class="right"><input type="text" v-model="HBillNo" @confirm="search" /></view>
                </view>
                <view class="search-condition">
                    <view class="title"><text>客户: </text></view>
                    <view class="right"><input type="text" v-model="HCustomer" /></view>
                    <view class="right"><input type="text" v-model="HCustomer" @confirm="search" /></view>
                </view>
                <view class="search-condition">
                    <view class="title"><text>销售员: </text></view>
                    <view class="right"><input type="text" v-model="HSeller" /></view>
                    <view class="right"><input type="text" v-model="HSeller" @confirm="search" /></view>
                </view>
                <view class="search-condition">
                    <view class="title">
@@ -233,7 +233,7 @@
                }
                if (!CommonUtils.isEmpty(this.HBillNo)) {
                    sWhere += ` and 单据号 like N'%${this.HMaterialID}%'`
                    sWhere += ` and 单据号 like N'%${this.HBillNo}%'`
                }
                if (!CommonUtils.isEmpty(this.HCustomer)) {
                    sWhere += ` and 客户 like N'%${this.HCustomer}%'`