Ver Fonte

文字修改

shish há 2 anos atrás
pai
commit
42332b56d3

+ 1 - 1
ghsApp/src/admin/home/components/OrderItem.vue

@@ -13,7 +13,7 @@
           <text class="other-book" v-if="item.book == 1" >预订单</text>
           <text class="other-presell" v-if="item.presell == 1" >预售单</text>
           <view :class="['status',currentStatus == 4 ? 'buleColor' : currentStatus == 3 ? 'buleColor' : currentStatus == 1 ? 'defColor' : '']">
-            {{currentStatus==1?'待付款':currentStatus==2?'待发货':currentStatus==3?'已发货':currentStatus==4?'已完成':'已取消'}}
+            {{currentStatus==1?'待付款':currentStatus==2?'待发货':currentStatus==3?'待入库':currentStatus==4?'已完成':'已取消'}}
           </view>
         </view>
         <view class="order-list_info">

+ 1 - 1
ghsApp/src/admin/home/order.vue

@@ -110,7 +110,7 @@ export default {
           id: 2,
         },
         {
-          name: "已发货",
+          name: "待入库",
           value: 0,
           id: 3,
         },

+ 1 - 1
ghsApp/src/filters/constant.js

@@ -64,7 +64,7 @@ const _CONST_MAP = {
 			value: 2
 		},
 		{
-			label: '已发货',
+			label: '待入库',
 			value: 3
 		},
 		{

+ 1 - 1
ghsApp/src/pagesOrder/detail.vue

@@ -134,7 +134,7 @@
 				</view>
 				<view class="order-info_box">
 					<view>订单状态:</view>
-					<view>{{ detailInfo.status==1?'待付款':detailInfo.status==2?'待发货':detailInfo.status==3?'已发货':detailInfo.status==4?'已完成':detailInfo.status==5?'已取消':'已退款' }}</view>
+					<view>{{ detailInfo.status==1?'待付款':detailInfo.status==2?'待发货':detailInfo.status==3?'待入库':detailInfo.status==4?'已完成':detailInfo.status==5?'已取消':'已退款' }}</view>
 				</view>
 				<view class="order-info_box" v-if="detailInfo.fhType == 1">
 					<view>物流单号:</view>

+ 1 - 1
ghsApp/src/pagesOrder/info.vue

@@ -61,7 +61,7 @@
 				</view>
 				<view class="order-info_box">
 					<view>订单状态:</view>
-					<view>{{ detailInfo.status==1?'待付款':detailInfo.status==2?'待发货':detailInfo.status==3?'已发货':detailInfo.status==4?'已完成':detailInfo.status==5?'已取消':'已退款' }}</view>
+					<view>{{ detailInfo.status==1?'待付款':detailInfo.status==2?'待发货':detailInfo.status==3?'待入库':detailInfo.status==4?'已完成':detailInfo.status==5?'已取消':'已退款' }}</view>
 				</view>
 				<view v-if="detailInfo.status==1" class="order-info_box">
 					<view>过期时间:</view>

+ 2 - 2
ghsApp/src/utils/declare.js

@@ -24,7 +24,7 @@ export const OUT_STATUS = {
 	CANCEL: "3"
 };
 
-//采购订单状态:1待付款,2待发货,3已发货,4已完成
+//采购订单状态:1待付款,2待发货,3待入库,4已完成
 export const PURCHASE_ORDER_STATUS = {
 	CONFIRM: "1",
 	UNDIS: "2",
@@ -38,7 +38,7 @@ export const INVENTORY_STATUS = {
 	DONE: "2"
 };
 
-//订单状态 0全部 1待付款 2待发货 3已发货 4待通知 5已取消 6已完成
+//订单状态 0全部 1待付款 2待发货 3待入库 4待通知 5已取消 6已完成
 export const ORDER_STATUS = {
 	ALL: "0",
 	NOPAY: "1",

+ 1 - 1
hdApp/src/admin/goods/plantCg.vue

@@ -41,7 +41,7 @@ export default {
           key: '2'
         },
         {
-          name: "已发货",
+          name: "待入库",
           value: 0,
           key: '3'
         },

+ 1 - 1
hdApp/src/admin/goods/plantCgDetail.vue

@@ -23,7 +23,7 @@
         </view>
         <view class="order-info_box">
           <view>订单状态:</view>
-          <view>{{ detailInfo.status==0?'待付款' :detailInfo.status==1?'待发货' :detailInfo.status==2?'已发货' :detailInfo.status==3?'已完成' :detailInfo.status==4?'已取消' :'待付款' }}</view>
+          <view>{{ detailInfo.status==0?'待付款' :detailInfo.status==1?'待发货' :detailInfo.status==2?'待入库' :detailInfo.status==3?'已完成' :detailInfo.status==4?'已取消' :'待付款' }}</view>
         </view>
       </view>
       <view v-if="detailInfo.remark !=''" class="content-box price-detail">

+ 1 - 1
hdApp/src/admin/goods/plantCgItem.vue

@@ -50,7 +50,7 @@ export default {
           statusName = "待发货";
           break;
         case '2':
-          statusName = "已发货";
+          statusName = "待入库";
           break;
         case '3':
           statusName = "已完成";

+ 2 - 2
hdApp/src/admin/home/order.vue

@@ -90,7 +90,7 @@ export default {
     return {
       tabIndex: 0,
       classifyModal: false,
-      tabs: [ { name: "全部", value: 0 }, { name: "待付款", value: 0 }, { name: "待发货", value: 0 }, { name: "已发货", value: 0 }, { name: "已完成", value: 0 } ],
+      tabs: [ { name: "全部", value: 0 }, { name: "待付款", value: 0 }, { name: "待发货", value: 0 }, { name: "待入库", value: 0 }, { name: "已完成", value: 0 } ],
       operateIndex: null,
       operateData: {},
       freeShipModal: false,
@@ -160,7 +160,7 @@ export default {
     },
     sendOrderFn(item){
       let that = this
-      that.$util.confirmModal({content:'确认已发货?'},() => {
+      that.$util.confirmModal({content:'确认待入库?'},() => {
         sendOrder({id:item.id}).then(res=>{
           if(res.code == 1){
             that.$msg('操作成功')

+ 1 - 1
hdApp/src/admin/order/detail.vue

@@ -102,7 +102,7 @@
 
             <view class="msg-list">
               <view class="label">状态:</view>
-              <view class="value">{{orderInfo.status == 1?'待付款':orderInfo.status==2?'待发货':orderInfo.status == 3?'已发货':orderInfo.status ==4?'已完成':orderInfo.status == 5?'已取消':'待付款'}}</view>
+              <view class="value">{{orderInfo.status == 1?'待付款':orderInfo.status==2?'待发货':orderInfo.status == 3?'待入库':orderInfo.status ==4?'已完成':orderInfo.status == 5?'已取消':'待付款'}}</view>
             </view>
             <view class="msg-list">
               <view class="label">单号:</view>

+ 1 - 1
hdApp/src/filters/constant.js

@@ -64,7 +64,7 @@ const _CONST_MAP = {
 			value: 2
 		},
 		{
-			label: '已发货',
+			label: '待入库',
 			value: 3
 		},
 		{

+ 1 - 1
hdApp/src/pagesOrder/detail.vue

@@ -60,7 +60,7 @@
 				</view>
 				<view class="order-info_box">
 					<view>订单状态:</view>
-					<view>{{ detailInfo.status==1?'待付款':detailInfo.status==2?'待发货':detailInfo.status==3?'已发货':detailInfo.status==4?'已完成':detailInfo.status==5?'已取消':'已退款' }}</view>
+					<view>{{ detailInfo.status==1?'待付款':detailInfo.status==2?'待发货':detailInfo.status==3?'待入库':detailInfo.status==4?'已完成':detailInfo.status==5?'已取消':'已退款' }}</view>
 				</view>
 				<!-- <view class="order-info_box">
                   <view>销售门店:</view>

+ 1 - 1
hdApp/src/pagesPurchase/info.vue

@@ -55,7 +55,7 @@
 					<view>{{ 
 						detailInfo.status==1?'待付款'
 						:detailInfo.status==2?'待发货'
-						:detailInfo.status==3?'已发货'
+						:detailInfo.status==3?'待入库'
 						:detailInfo.status==4?'已签收'
 						:detailInfo.status==5?'已入库'
 						:detailInfo.status==6?'已取消'

+ 1 - 1
hdApp/src/pagesPurchase/orderItem.vue

@@ -62,7 +62,7 @@ export default {
           statusName = "待发货";
           break;
         case '3':
-          statusName = "已发货";
+          statusName = "待入库";
           break;
         case '4':
           statusName = "已完成";

+ 2 - 2
hdApp/src/pagesPurchase/purDetails.vue

@@ -19,7 +19,7 @@
       <view class="bills-info_box content-box" v-if="detailInfo.fhStatus == 1">
         <view class="order-info_box">
           <view>发货状态:</view>
-          <view style="color:green;font-weight:bold;font-size:30upx;">商家已发货</view>
+          <view style="color:green;font-weight:bold;font-size:30upx;">商家待入库</view>
         </view>
         <view class="order-info_box" v-if="detailInfo.fhType == 1">
           <view>物流单号:</view>
@@ -102,7 +102,7 @@
         </view>
         <view class="order-info_box">
           <view>订单状态:</view>
-          <view>{{ detailInfo.status==1?'待付款' :detailInfo.status==2?'待发货' :detailInfo.status==3?'已发货' :detailInfo.status==4?'已完成' :detailInfo.status==5?'已取消' :'待付款' }}</view>
+          <view>{{ detailInfo.status==1?'待付款' :detailInfo.status==2?'待发货' :detailInfo.status==3?'待入库' :detailInfo.status==4?'已完成' :detailInfo.status==5?'已取消' :'待付款' }}</view>
         </view>
 
         <view v-if="detailInfo.refundLog && detailInfo.refundLog == 1" class="order-info_box">

+ 2 - 2
hdApp/src/pagesPurchase/shopping.vue

@@ -48,7 +48,7 @@ export default {
           key: '2'
         },
         {
-          name: "已发货",
+          name: "待入库",
           value: 0,
           key: '3'
         },
@@ -100,7 +100,7 @@ export default {
         this.tabs[0].value = res.data.shop.totalPurchaseOrder // 全部
         this.tabs[1].value = res.data.shop.cgUnPay // 待付款
         this.tabs[2].value = res.data.shop.cgUnSend // 待发货
-        this.tabs[3].value = res.data.shop.cgSending // 已发货
+        this.tabs[3].value = res.data.shop.cgSending // 待入库
         this.tabs[4].value = res.data.shop.cgFinish // 已完成
       })
     },

+ 2 - 2
hdApp/src/utils/declare.js

@@ -24,7 +24,7 @@ export const OUT_STATUS = {
 	CANCEL: "3"
 };
 
-//采购订单状态:1待确认,2待发货,3已发货,4已完成
+//采购订单状态:1待确认,2待发货,3待入库,4已完成
 export const PURCHASE_ORDER_STATUS = {
 	CONFIRM: "1",
 	UNDIS: "2",
@@ -38,7 +38,7 @@ export const INVENTORY_STATUS = {
 	DONE: "2"
 };
 
-//订单状态 0全部 1待付款 2待发货 3已发货 4待通知 5已取消 6已完成
+//订单状态 0全部 1待付款 2待发货 3待入库 4待通知 5已取消 6已完成
 export const ORDER_STATUS = {
 	ALL: "0",
 	NOPAY: "1",