Commit 110ea964 authored by zhang_z's avatar zhang_z

修改BUG;

parent 36b28d50
<component name="ProjectDictionaryState">
<dictionary name="Eurus">
<words>
<w>baseinfo</w>
</words>
</dictionary>
</component>
\ No newline at end of file
...@@ -174,7 +174,7 @@ public class SsskuPresenter extends SsskuContract.Presenter { ...@@ -174,7 +174,7 @@ public class SsskuPresenter extends SsskuContract.Presenter {
mView.dismissAllDialog(); mView.dismissAllDialog();
this.getSkugrp(); this.getSkugrp();
}, throwable -> { }, throwable -> {
ToastUtils.showShort(throwable.getMessage()); ToastUtils.showShort(throwable.getMessage());
}) })
); );
} }
...@@ -195,7 +195,7 @@ public class SsskuPresenter extends SsskuContract.Presenter { ...@@ -195,7 +195,7 @@ public class SsskuPresenter extends SsskuContract.Presenter {
mView.dismissAllDialog(); mView.dismissAllDialog();
this.getSkugrp(); this.getSkugrp();
}, throwable -> { }, throwable -> {
ToastUtils.showShort(throwable.getMessage()); ToastUtils.showShort(throwable.getMessage());
}) })
); );
} }
...@@ -212,7 +212,7 @@ public class SsskuPresenter extends SsskuContract.Presenter { ...@@ -212,7 +212,7 @@ public class SsskuPresenter extends SsskuContract.Presenter {
mView.dismissAllDialog(); mView.dismissAllDialog();
this.getSkugrp(); this.getSkugrp();
}, throwable -> { }, throwable -> {
ToastUtils.showShort(throwable.getMessage()); ToastUtils.showShort(throwable.getMessage());
}) })
); );
} }
...@@ -230,7 +230,7 @@ public class SsskuPresenter extends SsskuContract.Presenter { ...@@ -230,7 +230,7 @@ public class SsskuPresenter extends SsskuContract.Presenter {
mView.addSku(sssku1); mView.addSku(sssku1);
} }
}, },
throwable -> ToastUtils.showShort(throwable.getMessage())); throwable -> ToastUtils.showShort(throwable.getMessage()));
break; break;
case C.SKU_EDITOR_MODE.UPDATE: case C.SKU_EDITOR_MODE.UPDATE:
ApiFactory.Sssku.update(sssku).subscribe( ApiFactory.Sssku.update(sssku).subscribe(
...@@ -244,7 +244,7 @@ public class SsskuPresenter extends SsskuContract.Presenter { ...@@ -244,7 +244,7 @@ public class SsskuPresenter extends SsskuContract.Presenter {
} else { } else {
mView.deleteSku(sssku1.getId()); mView.deleteSku(sssku1.getId());
} }
}, throwable -> ToastUtils.showShort(throwable.getMessage())); }, throwable -> ToastUtils.showShort(throwable.getMessage()));
break; break;
case C.SKU_EDITOR_MODE.UNKNOWN: case C.SKU_EDITOR_MODE.UNKNOWN:
ApiFactory.Sssku.addSssku(sssku).subscribe( ApiFactory.Sssku.addSssku(sssku).subscribe(
...@@ -255,7 +255,7 @@ public class SsskuPresenter extends SsskuContract.Presenter { ...@@ -255,7 +255,7 @@ public class SsskuPresenter extends SsskuContract.Presenter {
if (sssku1.getSkuGrpId().longValue() == mSkuGrpId) { if (sssku1.getSkuGrpId().longValue() == mSkuGrpId) {
mView.addSku(sssku1); mView.addSku(sssku1);
} }
}, throwable -> ToastUtils.showShort(throwable.getMessage())); }, throwable -> ToastUtils.showShort(throwable.getMessage()));
break; break;
} }
} }
...@@ -304,7 +304,8 @@ public class SsskuPresenter extends SsskuContract.Presenter { ...@@ -304,7 +304,8 @@ public class SsskuPresenter extends SsskuContract.Presenter {
mView.showLoadingDialog(); mView.showLoadingDialog();
mCompositeDisposable.add( mCompositeDisposable.add(
ApiFactory.Sssku.querySssku(mPageNum, "", mSkuGrpId) ApiFactory.Sssku.querySssku(mPageNum, "", mSkuGrpId)
.doOnSubscribe(subscription -> mView.dismissLoadingDialog()) .doOnSubscribe(subscription -> mView.showLoadingDialog())
.doFinally(() -> mView.dismissLoadingDialog())
.subscribe(ssskuPager -> { .subscribe(ssskuPager -> {
if (mPageNum == 1 && mSkuGrpId == 0L) if (mPageNum == 1 && mSkuGrpId == 0L)
mView.loadSsskuCount(ssskuPager.getTotalRow()); mView.loadSsskuCount(ssskuPager.getTotalRow());
...@@ -338,7 +339,7 @@ public class SsskuPresenter extends SsskuContract.Presenter { ...@@ -338,7 +339,7 @@ public class SsskuPresenter extends SsskuContract.Presenter {
ApiFactory.Sskugrp.querySskugrp().subscribe(sskugrpPager -> { ApiFactory.Sskugrp.querySskugrp().subscribe(sskugrpPager -> {
mView.loadSkugrps(sskugrpPager.getList()); mView.loadSkugrps(sskugrpPager.getList());
}, throwable -> { }, throwable -> {
ToastUtils.showShort(throwable.getMessage()); ToastUtils.showShort(throwable.getMessage());
} }
) )
); );
......
...@@ -101,16 +101,16 @@ public class SendTickerFragment extends BaseFragment<SendTicketPresenter, ...@@ -101,16 +101,16 @@ public class SendTickerFragment extends BaseFragment<SendTicketPresenter,
mLoadingDialog); mLoadingDialog);
} else if (nowtype == 1) { } else if (nowtype == 1) {
Long tempLevelId = levelList.get(nowVipGroupId).getId(); Long tempLevelId = levelList.get(nowVipGroupId).getId();
if (tempLevelId == SendTickerC.getVipType().get(0).getId()) { if (tempLevelId == SendTickerC.getVipType(mContext).get(0).getId()) {
//选择全部会员 //选择全部会员
mPresenter.sendTickerBefor(null, null, null, tickerId, mPresenter.sendTickerBefor(null, null, null, tickerId,
mLoadingDialog); mLoadingDialog);
return; return;
} }
for (int i = 1; i < SendTickerC.getVipType().size(); i++) { for (int i = 1; i < SendTickerC.getVipType(mContext).size(); i++) {
long tempServerId = SendTickerC.getServerId(tempLevelId); long tempServerId = SendTickerC.getServerId(tempLevelId);
//选择 当月下月以及流失会员 //选择 当月下月以及流失会员
if (tempLevelId == SendTickerC.getVipType().get(i).getId() && if (tempLevelId == SendTickerC.getVipType(mContext).get(i).getId() &&
tempServerId != -1) { tempServerId != -1) {
mPresenter.sendTickerBefor(tempServerId + "", null, mPresenter.sendTickerBefor(tempServerId + "", null,
null, tickerId, null, tickerId,
...@@ -203,16 +203,16 @@ public class SendTickerFragment extends BaseFragment<SendTicketPresenter, ...@@ -203,16 +203,16 @@ public class SendTickerFragment extends BaseFragment<SendTicketPresenter,
mLoadingDialog); mLoadingDialog);
} else if (nowtype == 1) { } else if (nowtype == 1) {
Long tempLevelId = levelList.get(nowVipGroupId).getId(); Long tempLevelId = levelList.get(nowVipGroupId).getId();
if (tempLevelId == SendTickerC.getVipType().get(0).getId()) { if (tempLevelId == SendTickerC.getVipType(mContext).get(0).getId()) {
//选择全部会员 //选择全部会员
mPresenter.sendTicker(null, null, null, tickerId, mPresenter.sendTicker(null, null, null, tickerId,
mLoadingDialog); mLoadingDialog);
return; return;
} }
for (int i = 1; i < SendTickerC.getVipType().size(); i++) { for (int i = 1; i < SendTickerC.getVipType(mContext).size(); i++) {
long tempServerId = SendTickerC.getServerId(tempLevelId); long tempServerId = SendTickerC.getServerId(tempLevelId);
//选择 当月下月以及流失会员 //选择 当月下月以及流失会员
if (tempLevelId == SendTickerC.getVipType().get(i).getId() && if (tempLevelId == SendTickerC.getVipType(mContext).get(i).getId() &&
tempServerId != -1) { tempServerId != -1) {
mPresenter.sendTicker(tempServerId + "", null, mPresenter.sendTicker(tempServerId + "", null,
null, tickerId, null, tickerId,
...@@ -234,15 +234,15 @@ public class SendTickerFragment extends BaseFragment<SendTicketPresenter, ...@@ -234,15 +234,15 @@ public class SendTickerFragment extends BaseFragment<SendTicketPresenter,
mViewBinding.llAll.setVisibility(View.VISIBLE); mViewBinding.llAll.setVisibility(View.VISIBLE);
RealmResults<Level> levels = DBFactory.getRealm().where(Level.class).findAll(); RealmResults<Level> levels = DBFactory.getRealm().where(Level.class).findAll();
levelList = new ArrayList<>(); levelList = new ArrayList<>();
SendTickerC.getVipType().get(0).setSelect(true); SendTickerC.getVipType(mContext).get(0).setSelect(true);
levelList.add(SendTickerC.getVipType().get(0)); levelList.add(SendTickerC.getVipType(mContext).get(0));
for (int i = 0; i < levels.size(); i++) { for (int i = 0; i < levels.size(); i++) {
levels.get(i).setSelect(false); levels.get(i).setSelect(false);
levelList.add(levels.get(i)); levelList.add(levels.get(i));
} }
for (int i = 1; i < SendTickerC.getVipType().size(); i++) { for (int i = 1; i < SendTickerC.getVipType(mContext).size(); i++) {
SendTickerC.getVipType().get(i).setSelect(false); SendTickerC.getVipType(mContext).get(i).setSelect(false);
levelList.add(SendTickerC.getVipType().get(i)); levelList.add(SendTickerC.getVipType(mContext).get(i));
} }
mViewBinding.tvSelect.setText(levelList.get(nowVipGroupId).getVipLevelName()); mViewBinding.tvSelect.setText(levelList.get(nowVipGroupId).getVipLevelName());
mViewBinding.vipType.setAdapter(vipGroupAdapter); mViewBinding.vipType.setAdapter(vipGroupAdapter);
......
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<layout xmlns:tools="http://schemas.android.com/tools" <layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"> xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<data> <data>
<import type="android.view.View" /> <import type="android.view.View" />
<variable <variable
name="sumNum" name="sumNum"
type="String" /> type="String" />
<variable <variable
name="finallyPrice" name="finallyPrice"
type="String" /> type="String" />
<variable <variable
name="isShowSupplier" name="isShowSupplier"
type="Boolean" /> type="Boolean" />
<variable <variable
name="isShowBar" name="isShowBar"
type="Boolean" /> type="Boolean" />
<variable <variable
name="shopOderName" name="shopOderName"
type="String" /> type="String" />
<variable <variable
name="shopName" name="shopName"
type="String" /> type="String" />
<variable <variable
name="shopAddress" name="shopAddress"
type="String" /> type="String" />
<variable <variable
name="shopTel" name="shopTel"
type="String" /> type="String" />
<variable <variable
name="supplierName" name="supplierName"
type="String" /> type="String" />
<variable <variable
name="supplierAddress" name="supplierAddress"
type="String" /> type="String" />
<variable <variable
name="supplierTel" name="supplierTel"
type="String" /> type="String" />
<variable <variable
name="date" name="date"
type="String" /> type="String" />
<variable <variable
name="no" name="no"
type="String" /> type="String" />
</data> </data>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" <RelativeLayout
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:background="@color/white_caocao" android:background="@color/white_caocao"
android:splitMotionEvents="false"> android:splitMotionEvents="false">
<android.support.design.widget.CoordinatorLayout <android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_above="@id/ll_bottom" android:layout_above="@id/ll_bottom"
android:layout_below="@id/ed_title" android:layout_below="@id/ed_title"
android:layout_marginTop="@dimen/all_bounced_padding"> android:layout_marginTop="@dimen/all_bounced_padding">
<android.support.design.widget.AppBarLayout <android.support.design.widget.AppBarLayout
android:id="@+id/app_bar" android:id="@+id/app_bar"
android:layout_width="match_parent" android:layout_width="match_parent"
...@@ -81,8 +81,8 @@ ...@@ -81,8 +81,8 @@
android:gravity="center" android:gravity="center"
app:elevation="0dp" app:elevation="0dp"
app:layout_scrollFlags="snap"> app:layout_scrollFlags="snap">
<android.support.design.widget.CollapsingToolbarLayout <android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsingToolbarLayout" android:id="@+id/collapsingToolbarLayout"
android:layout_width="match_parent" android:layout_width="match_parent"
...@@ -90,26 +90,26 @@ ...@@ -90,26 +90,26 @@
android:fitsSystemWindows="true" android:fitsSystemWindows="true"
app:expandedTitleMarginStart="0dp" app:expandedTitleMarginStart="0dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed|snap"> app:layout_scrollFlags="scroll|exitUntilCollapsed|snap">
<LinearLayout <LinearLayout
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:background="@color/white_caocao" android:background="@color/white_caocao"
android:orientation="vertical"> android:orientation="vertical">
<android.support.constraint.ConstraintLayout <android.support.constraint.ConstraintLayout
android:id="@+id/cl_default" android:id="@+id/cl_default"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content"> android:layout_height="wrap_content">
<TextView <TextView
android:id="@+id/tv_supplier_title" android:id="@+id/tv_supplier_title"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginEnd="@dimen/all_bounced_padding" android:layout_marginEnd="@dimen/all_bounced_padding"
android:paddingBottom="@dimen/all_padding"
android:paddingStart="@dimen/all_bounced_padding" android:paddingStart="@dimen/all_bounced_padding"
android:paddingTop="@dimen/all_padding" android:paddingTop="@dimen/all_padding"
android:paddingBottom="@dimen/all_padding"
android:text="供货方" android:text="供货方"
android:textColor="@color/black" android:textColor="@color/black"
android:textSize="@dimen/all_text_size_low" android:textSize="@dimen/all_text_size_low"
...@@ -118,7 +118,7 @@ ...@@ -118,7 +118,7 @@
app:layout_constraintRight_toRightOf="parent" app:layout_constraintRight_toRightOf="parent"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" /> app:layout_constraintTop_toTopOf="parent" />
<TextView <TextView
android:id="@+id/tv_supplier_name" android:id="@+id/tv_supplier_name"
android:layout_width="wrap_content" android:layout_width="wrap_content"
...@@ -132,8 +132,8 @@ ...@@ -132,8 +132,8 @@
app:layout_constraintBottom_toBottomOf="@id/tv_supplier_title" app:layout_constraintBottom_toBottomOf="@id/tv_supplier_title"
app:layout_constraintEnd_toEndOf="@id/tv_supplier_title" app:layout_constraintEnd_toEndOf="@id/tv_supplier_title"
app:layout_constraintTop_toTopOf="@id/tv_supplier_title" /> app:layout_constraintTop_toTopOf="@id/tv_supplier_title" />
<View <View
android:id="@+id/view_line_left_1" android:id="@+id/view_line_left_1"
android:layout_width="match_parent" android:layout_width="match_parent"
...@@ -141,17 +141,17 @@ ...@@ -141,17 +141,17 @@
android:background="@color/gray_kongming" android:background="@color/gray_kongming"
android:visibility="@{isShowSupplier? View.VISIBLE: View.GONE}" android:visibility="@{isShowSupplier? View.VISIBLE: View.GONE}"
app:layout_constraintTop_toBottomOf="@id/tv_supplier_title" /> app:layout_constraintTop_toBottomOf="@id/tv_supplier_title" />
<LinearLayout <LinearLayout
android:id="@+id/ll_supplier" android:id="@+id/ll_supplier"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:orientation="vertical" android:orientation="vertical"
android:paddingEnd="@dimen/all_bounced_padding"
android:paddingStart="@dimen/all_bounced_padding" android:paddingStart="@dimen/all_bounced_padding"
android:paddingEnd="@dimen/all_bounced_padding"
android:visibility="gone" android:visibility="gone"
app:layout_constraintTop_toTopOf="@id/view_line_left_1"> app:layout_constraintTop_toTopOf="@id/view_line_left_1">
<LinearLayout <LinearLayout
android:id="@+id/ll_supplier_name" android:id="@+id/ll_supplier_name"
android:layout_width="match_parent" android:layout_width="match_parent"
...@@ -159,90 +159,90 @@ ...@@ -159,90 +159,90 @@
android:gravity="center_vertical" android:gravity="center_vertical"
android:orientation="horizontal" android:orientation="horizontal"
android:visibility="@{isShowSupplier? View.VISIBLE: View.GONE}"> android:visibility="@{isShowSupplier? View.VISIBLE: View.GONE}">
<ImageView <ImageView
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:src="@mipmap/icon_stores" /> android:src="@mipmap/icon_stores" />
<TextView <TextView
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:paddingBottom="@dimen/dp_4"
android:paddingLeft="@dimen/all_padding" android:paddingLeft="@dimen/all_padding"
android:paddingTop="@dimen/dp_4" android:paddingTop="@dimen/dp_4"
android:paddingBottom="@dimen/dp_4"
android:text="@{supplierName}" android:text="@{supplierName}"
android:textColor="@color/black" android:textColor="@color/black"
android:textSize="@dimen/all_text_size_low" /> android:textSize="@dimen/all_text_size_low" />
</LinearLayout> </LinearLayout>
<LinearLayout <LinearLayout
android:id="@+id/ll_supplier_address" android:id="@+id/ll_supplier_address"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:gravity="center_vertical" android:gravity="center_vertical"
android:orientation="horizontal" android:orientation="horizontal"
android:visibility="@{isShowSupplier? View.VISIBLE: View.GONE}"> android:visibility="@{isShowSupplier? View.VISIBLE: View.GONE}">
<ImageView <ImageView
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:src="@mipmap/icon_address" /> android:src="@mipmap/icon_address" />
<TextView <TextView
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:paddingBottom="@dimen/dp_4"
android:paddingLeft="@dimen/all_padding" android:paddingLeft="@dimen/all_padding"
android:paddingTop="@dimen/dp_4" android:paddingTop="@dimen/dp_4"
android:paddingBottom="@dimen/dp_4"
android:text="@{supplierAddress}" android:text="@{supplierAddress}"
android:textColor="@color/black" android:textColor="@color/black"
android:textSize="@dimen/all_text_size_low" /> android:textSize="@dimen/all_text_size_low" />
</LinearLayout> </LinearLayout>
<LinearLayout <LinearLayout
android:id="@+id/ll_supplier_phone" android:id="@+id/ll_supplier_phone"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:gravity="center_vertical" android:gravity="center_vertical"
android:orientation="horizontal" android:orientation="horizontal"
android:visibility="@{isShowSupplier? View.VISIBLE: View.GONE}"> android:visibility="@{isShowSupplier? View.VISIBLE: View.GONE}">
<ImageView <ImageView
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:src="@mipmap/icon_telephone" /> android:src="@mipmap/icon_telephone" />
<TextView <TextView
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:paddingBottom="@dimen/dp_4"
android:paddingLeft="@dimen/all_padding" android:paddingLeft="@dimen/all_padding"
android:paddingTop="@dimen/dp_4" android:paddingTop="@dimen/dp_4"
android:paddingBottom="@dimen/dp_4"
android:text="@{supplierTel}" android:text="@{supplierTel}"
android:textColor="@color/black" android:textColor="@color/black"
android:textSize="@dimen/all_text_size_low" /> android:textSize="@dimen/all_text_size_low" />
</LinearLayout> </LinearLayout>
</LinearLayout> </LinearLayout>
<TextView <TextView
android:id="@+id/tv_shop_title" android:id="@+id/tv_shop_title"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginEnd="@dimen/all_bounced_padding" android:layout_marginEnd="@dimen/all_bounced_padding"
android:paddingBottom="@dimen/all_padding"
android:paddingStart="@dimen/all_bounced_padding" android:paddingStart="@dimen/all_bounced_padding"
android:paddingTop="@dimen/all_padding" android:paddingTop="@dimen/all_padding"
android:paddingBottom="@dimen/all_padding"
android:text="定货方" android:text="定货方"
android:textColor="@color/black" android:textColor="@color/black"
android:textSize="@dimen/all_text_size_low" android:textSize="@dimen/all_text_size_low"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/ll_supplier" /> app:layout_constraintTop_toBottomOf="@id/ll_supplier" />
<TextView <TextView
android:id="@+id/tv_shop_name" android:id="@+id/tv_shop_name"
android:layout_width="wrap_content" android:layout_width="wrap_content"
...@@ -255,25 +255,25 @@ ...@@ -255,25 +255,25 @@
app:layout_constraintBottom_toBottomOf="@id/tv_shop_title" app:layout_constraintBottom_toBottomOf="@id/tv_shop_title"
app:layout_constraintEnd_toEndOf="@id/tv_shop_title" app:layout_constraintEnd_toEndOf="@id/tv_shop_title"
app:layout_constraintTop_toTopOf="@id/tv_shop_title" /> app:layout_constraintTop_toTopOf="@id/tv_shop_title" />
<View <View
android:id="@+id/view_line_left_2" android:id="@+id/view_line_left_2"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="@dimen/all_slight_line_width" android:layout_height="@dimen/all_slight_line_width"
android:background="@color/gray_kongming" android:background="@color/gray_kongming"
app:layout_constraintTop_toBottomOf="@id/tv_shop_title" /> app:layout_constraintTop_toBottomOf="@id/tv_shop_title" />
<LinearLayout <LinearLayout
android:id="@+id/ll_shop" android:id="@+id/ll_shop"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:orientation="vertical" android:orientation="vertical"
android:paddingEnd="@dimen/all_bounced_padding"
android:paddingStart="@dimen/all_bounced_padding" android:paddingStart="@dimen/all_bounced_padding"
android:paddingEnd="@dimen/all_bounced_padding"
android:visibility="gone" android:visibility="gone"
app:layout_constraintTop_toBottomOf="@id/tv_shop_title"> app:layout_constraintTop_toBottomOf="@id/tv_shop_title">
<LinearLayout <LinearLayout
android:id="@+id/ll_shop_name" android:id="@+id/ll_shop_name"
android:layout_width="match_parent" android:layout_width="match_parent"
...@@ -283,79 +283,79 @@ ...@@ -283,79 +283,79 @@
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@id/view_line_left_2"> app:layout_constraintTop_toTopOf="@id/view_line_left_2">
<ImageView <ImageView
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:src="@mipmap/icon_stores" /> android:src="@mipmap/icon_stores" />
<TextView <TextView
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:paddingBottom="@dimen/dp_4"
android:paddingLeft="@dimen/all_padding" android:paddingLeft="@dimen/all_padding"
android:paddingTop="@dimen/dp_4" android:paddingTop="@dimen/dp_4"
android:paddingBottom="@dimen/dp_4"
android:text="@{shopName}" android:text="@{shopName}"
android:textColor="@color/black" android:textColor="@color/black"
android:textSize="@dimen/all_text_size_low" /> android:textSize="@dimen/all_text_size_low" />
</LinearLayout> </LinearLayout>
<LinearLayout <LinearLayout
android:id="@+id/ll_shop_address" android:id="@+id/ll_shop_address"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:gravity="center_vertical" android:gravity="center_vertical"
android:orientation="horizontal" android:orientation="horizontal"
app:layout_constraintEnd_toEndOf="@id/ll_shop_name" app:layout_constraintEnd_toEndOf="@id/ll_shop_name"
app:layout_constraintStart_toStartOf="@id/ll_shop_name" app:layout_constraintStart_toStartOf="@id/ll_shop_name"
app:layout_constraintTop_toBottomOf="@id/ll_shop_name"> app:layout_constraintTop_toBottomOf="@id/ll_shop_name">
<ImageView <ImageView
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:src="@mipmap/icon_address" /> android:src="@mipmap/icon_address" />
<TextView <TextView
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:paddingBottom="@dimen/dp_4"
android:paddingLeft="@dimen/all_padding" android:paddingLeft="@dimen/all_padding"
android:paddingTop="@dimen/dp_4" android:paddingTop="@dimen/dp_4"
android:paddingBottom="@dimen/dp_4"
android:text="@{shopAddress}" android:text="@{shopAddress}"
android:textColor="@color/black" android:textColor="@color/black"
android:textSize="@dimen/all_text_size_low" /> android:textSize="@dimen/all_text_size_low" />
</LinearLayout> </LinearLayout>
<LinearLayout <LinearLayout
android:id="@+id/ll_shop_phone" android:id="@+id/ll_shop_phone"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:gravity="center_vertical" android:gravity="center_vertical"
android:orientation="horizontal" android:orientation="horizontal"
app:layout_constraintEnd_toEndOf="@id/ll_shop_name" app:layout_constraintEnd_toEndOf="@id/ll_shop_name"
app:layout_constraintStart_toStartOf="@id/ll_shop_name" app:layout_constraintStart_toStartOf="@id/ll_shop_name"
app:layout_constraintTop_toBottomOf="@id/ll_shop_address"> app:layout_constraintTop_toBottomOf="@id/ll_shop_address">
<ImageView <ImageView
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:src="@mipmap/icon_telephone" /> android:src="@mipmap/icon_telephone" />
<TextView <TextView
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:paddingBottom="@dimen/dp_4"
android:paddingLeft="@dimen/all_padding" android:paddingLeft="@dimen/all_padding"
android:paddingTop="@dimen/dp_4" android:paddingTop="@dimen/dp_4"
android:paddingBottom="@dimen/dp_4"
android:text="@{shopTel}" android:text="@{shopTel}"
android:textColor="@color/black" android:textColor="@color/black"
android:textSize="@dimen/all_text_size_low" /> android:textSize="@dimen/all_text_size_low" />
</LinearLayout> </LinearLayout>
</LinearLayout> </LinearLayout>
<View <View
android:id="@+id/view_line_left_3" android:id="@+id/view_line_left_3"
android:layout_width="match_parent" android:layout_width="match_parent"
...@@ -363,70 +363,70 @@ ...@@ -363,70 +363,70 @@
android:background="@color/gray_kongming" android:background="@color/gray_kongming"
android:visibility="@{isShowSupplier? View.VISIBLE: View.GONE}" android:visibility="@{isShowSupplier? View.VISIBLE: View.GONE}"
app:layout_constraintTop_toBottomOf="@id/ll_shop" /> app:layout_constraintTop_toBottomOf="@id/ll_shop" />
<LinearLayout <LinearLayout
android:id="@+id/ll_date" android:id="@+id/ll_date"
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:gravity="center_vertical" android:gravity="center_vertical"
android:orientation="horizontal" android:orientation="horizontal"
android:paddingEnd="@dimen/all_bounced_padding"
android:paddingStart="@dimen/all_bounced_padding" android:paddingStart="@dimen/all_bounced_padding"
android:paddingEnd="@dimen/all_bounced_padding"
android:visibility="@{isShowSupplier? View.VISIBLE: View.GONE}" android:visibility="@{isShowSupplier? View.VISIBLE: View.GONE}"
app:layout_constraintEnd_toEndOf="@id/ll_shop" app:layout_constraintEnd_toEndOf="@id/ll_shop"
app:layout_constraintStart_toStartOf="@id/ll_shop" app:layout_constraintStart_toStartOf="@id/ll_shop"
app:layout_constraintTop_toBottomOf="@id/view_line_left_3"> app:layout_constraintTop_toBottomOf="@id/view_line_left_3">
<ImageView <ImageView
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:src="@mipmap/icon_dates_green" /> android:src="@mipmap/icon_dates_green" />
<TextView <TextView
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:paddingBottom="@dimen/dp_4"
android:paddingLeft="@dimen/all_padding" android:paddingLeft="@dimen/all_padding"
android:paddingTop="@dimen/dp_4" android:paddingTop="@dimen/dp_4"
android:paddingBottom="@dimen/dp_4"
android:text="@{date}" android:text="@{date}"
android:textColor="@color/black" android:textColor="@color/black"
android:textSize="@dimen/all_text_size_low" /> android:textSize="@dimen/all_text_size_low" />
</LinearLayout> </LinearLayout>
<LinearLayout <LinearLayout
android:id="@+id/ll_no" android:id="@+id/ll_no"
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:gravity="center_vertical" android:gravity="center_vertical"
android:orientation="horizontal" android:orientation="horizontal"
android:paddingEnd="@dimen/all_bounced_padding"
android:paddingStart="@dimen/all_bounced_padding" android:paddingStart="@dimen/all_bounced_padding"
android:paddingEnd="@dimen/all_bounced_padding"
android:visibility="@{isShowSupplier? View.VISIBLE: View.GONE}" android:visibility="@{isShowSupplier? View.VISIBLE: View.GONE}"
app:layout_constraintEnd_toEndOf="@id/ll_shop" app:layout_constraintEnd_toEndOf="@id/ll_shop"
app:layout_constraintStart_toStartOf="@id/ll_shop" app:layout_constraintStart_toStartOf="@id/ll_shop"
app:layout_constraintTop_toBottomOf="@id/ll_date"> app:layout_constraintTop_toBottomOf="@id/ll_date">
<ImageView <ImageView
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:src="@mipmap/icon_no_green" /> android:src="@mipmap/icon_no_green" />
<TextView <TextView
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:paddingBottom="@dimen/dp_4"
android:paddingLeft="@dimen/all_padding" android:paddingLeft="@dimen/all_padding"
android:paddingTop="@dimen/dp_4" android:paddingTop="@dimen/dp_4"
android:paddingBottom="@dimen/dp_4"
android:text="@{no}" android:text="@{no}"
android:textColor="@color/black" android:textColor="@color/black"
android:textSize="@dimen/all_text_size_low" /> android:textSize="@dimen/all_text_size_low" />
</LinearLayout> </LinearLayout>
</android.support.constraint.ConstraintLayout> </android.support.constraint.ConstraintLayout>
</LinearLayout> </LinearLayout>
<android.support.v7.widget.Toolbar <android.support.v7.widget.Toolbar
android:id="@+id/toolbar" android:id="@+id/toolbar"
android:layout_width="match_parent" android:layout_width="match_parent"
...@@ -439,11 +439,11 @@ ...@@ -439,11 +439,11 @@
app:contentInsetStart="0dp" app:contentInsetStart="0dp"
app:elevation="0dp" app:elevation="0dp"
app:layout_collapseMode="pin"> app:layout_collapseMode="pin">
<android.support.constraint.ConstraintLayout <android.support.constraint.ConstraintLayout
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent"> android:layout_height="match_parent">
<LinearLayout <LinearLayout
android:id="@+id/ll_result" android:id="@+id/ll_result"
android:layout_width="180dp" android:layout_width="180dp"
...@@ -452,21 +452,21 @@ ...@@ -452,21 +452,21 @@
android:orientation="horizontal" android:orientation="horizontal"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@id/tv_result_hint"> app:layout_constraintTop_toBottomOf="@id/tv_result_hint">
<TextView <TextView
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:gravity="center" android:gravity="center"
android:paddingBottom="@dimen/dp_4"
android:paddingLeft="@dimen/all_padding" android:paddingLeft="@dimen/all_padding"
android:paddingRight="@dimen/all_padding"
android:paddingTop="@dimen/all_padding" android:paddingTop="@dimen/all_padding"
android:paddingRight="@dimen/all_padding"
android:paddingBottom="@dimen/dp_4"
android:text="@{finallyPrice}" android:text="@{finallyPrice}"
android:textColor="@color/reddeep" android:textColor="@color/reddeep"
android:textSize="@dimen/big_big_text_size" /> android:textSize="@dimen/big_big_text_size" />
</LinearLayout> </LinearLayout>
<LinearLayout <LinearLayout
android:id="@+id/ll_num" android:id="@+id/ll_num"
android:layout_width="0dp" android:layout_width="0dp"
...@@ -478,7 +478,7 @@ ...@@ -478,7 +478,7 @@
app:layout_constraintHorizontal_weight="1" app:layout_constraintHorizontal_weight="1"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@id/ll_result"> app:layout_constraintTop_toTopOf="@id/ll_result">
<TextView <TextView
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
...@@ -487,11 +487,11 @@ ...@@ -487,11 +487,11 @@
android:textColor="@color/reddeep" android:textColor="@color/reddeep"
android:textSize="@dimen/big_big_text_size" android:textSize="@dimen/big_big_text_size"
android:textStyle="bold" /> android:textStyle="bold" />
</LinearLayout> </LinearLayout>
<TextView <TextView
android:id="@+id/tv_result_hint" android:id="@+id/tv_result_hint"
android:layout_width="wrap_content" android:layout_width="wrap_content"
...@@ -505,7 +505,7 @@ ...@@ -505,7 +505,7 @@
app:layout_constraintStart_toStartOf="@id/ll_result" app:layout_constraintStart_toStartOf="@id/ll_result"
app:layout_constraintTop_toBottomOf="@id/ll_no" app:layout_constraintTop_toBottomOf="@id/ll_no"
tools:ignore="NotSibling" /> tools:ignore="NotSibling" />
<TextView <TextView
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
...@@ -518,19 +518,19 @@ ...@@ -518,19 +518,19 @@
app:layout_constraintEnd_toEndOf="@id/ll_num" app:layout_constraintEnd_toEndOf="@id/ll_num"
app:layout_constraintStart_toStartOf="@id/ll_num" app:layout_constraintStart_toStartOf="@id/ll_num"
app:layout_constraintTop_toTopOf="@id/tv_result_hint" /> app:layout_constraintTop_toTopOf="@id/tv_result_hint" />
<View <View
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="@dimen/all_bounced_padding" android:layout_height="@dimen/all_bounced_padding"
android:background="@drawable/singleline_zhouyu_huanggai" android:background="@drawable/singleline_zhouyu_huanggai"
app:layout_constraintTop_toBottomOf="@id/ll_result" /> app:layout_constraintTop_toBottomOf="@id/ll_result" />
</android.support.constraint.ConstraintLayout> </android.support.constraint.ConstraintLayout>
</android.support.v7.widget.Toolbar> </android.support.v7.widget.Toolbar>
</android.support.design.widget.CollapsingToolbarLayout> </android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout> </android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView <android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view" android:id="@+id/recycler_view"
android:layout_width="match_parent" android:layout_width="match_parent"
...@@ -538,71 +538,71 @@ ...@@ -538,71 +538,71 @@
android:background="@color/gray_zhouyu" android:background="@color/gray_zhouyu"
android:visibility="visible" android:visibility="visible"
app:layout_behavior="@string/appbar_scrolling_view_behavior"> app:layout_behavior="@string/appbar_scrolling_view_behavior">
</android.support.v7.widget.RecyclerView> </android.support.v7.widget.RecyclerView>
</android.support.design.widget.CoordinatorLayout> </android.support.design.widget.CoordinatorLayout>
<EditText <EditText
android:id="@+id/ed_title" android:id="@+id/ed_title"
style="@style/searchBarEditor" style="@style/searchBarEditor"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="30dp" android:layout_height="30dp"
android:layout_alignParentTop="true" android:layout_alignParentTop="true"
android:layout_marginBottom="@dimen/padding_small"
android:layout_marginEnd="@dimen/all_bounced_padding"
android:layout_marginStart="@dimen/all_bounced_padding" android:layout_marginStart="@dimen/all_bounced_padding"
android:layout_marginTop="@dimen/padding_small" android:layout_marginTop="@dimen/padding_small"
android:layout_marginEnd="@dimen/all_bounced_padding"
android:layout_marginBottom="@dimen/padding_small"
android:drawablePadding="@dimen/all_padding" android:drawablePadding="@dimen/all_padding"
android:hint="@string/statistics_order_edit_hint" android:hint="@string/statistics_order_edit_hint"
android:inputType="number" android:inputType="number"
android:textColor="@color/black_likui" android:textColor="@color/black_likui"
android:textSize="@dimen/all_text_size_low" /> android:textSize="@dimen/all_text_size_low" />
<View <View
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="@dimen/all_bounced_padding" android:layout_height="@dimen/all_bounced_padding"
android:layout_below="@id/ed_title" android:layout_below="@id/ed_title"
android:background="@drawable/singleline_zhouyu_huanggai" /> android:background="@drawable/singleline_zhouyu_huanggai" />
<android.support.constraint.ConstraintLayout <android.support.constraint.ConstraintLayout
android:id="@+id/ll_bottom" android:id="@+id/ll_bottom"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="@dimen/layout_statistics_bottom_height" android:layout_height="@dimen/layout_statistics_bottom_height"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true" android:layout_alignParentStart="true"
android:layout_alignParentBottom="true"
android:background="@color/white_caocao" android:background="@color/white_caocao"
app:layout_constraintBottom_toBottomOf="parent"> app:layout_constraintBottom_toBottomOf="parent">
<TextView <TextView
android:id="@+id/btn_cancel" android:id="@+id/btn_cancel"
style="@style/button_passive" style="@style/button_passive"
android:layout_width="@dimen/button1_width" android:layout_width="@dimen/button1_width"
android:layout_height="@dimen/button1_height" android:layout_height="@dimen/button1_height"
android:text="取消" android:text="@string/all_cancel"
android:textSize="@dimen/all_text_size" android:textSize="@dimen/all_text_size"
app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toLeftOf="@id/btn_ok" app:layout_constraintRight_toLeftOf="@id/btn_ok"
app:layout_constraintTop_toTopOf="parent" /> app:layout_constraintTop_toTopOf="parent" />
<TextView <TextView
android:id="@+id/btn_ok" android:id="@+id/btn_ok"
style="@style/button_positive" style="@style/button_positive"
android:layout_width="@dimen/button1_width" android:layout_width="@dimen/button1_width"
android:layout_height="@dimen/button1_height" android:layout_height="@dimen/button1_height"
android:text="定货提交" android:text="@string/settle_complete"
android:textSize="@dimen/all_text_size" android:textSize="@dimen/all_text_size"
app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toRightOf="@id/btn_cancel" app:layout_constraintLeft_toRightOf="@id/btn_cancel"
app:layout_constraintRight_toRightOf="parent" app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" /> app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout> </android.support.constraint.ConstraintLayout>
<View <View
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="@dimen/view_line_L050" android:layout_height="@dimen/view_line_L050"
......
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
<string name="replenishment_hint_supplierName">Please enter the supplier name</string> <string name="replenishment_hint_supplierName">Please enter the supplier name</string>
<string name="replenishment_tv_replenishmentDetail">Order details</string> <string name="replenishment_tv_replenishmentDetail">Order details</string>
<string name="replenishment_toast_noNeedDo">Stock is normal</string> <string name="replenishment_toast_noNeedDo">Stock is normal</string>
<string name="replenishment_tv_amt">Amount</string>
<!--盘点界面--> <!--盘点界面-->
...@@ -68,7 +69,7 @@ ...@@ -68,7 +69,7 @@
<string name="ticket_tv_sendSuc">Successful issue</string> <string name="ticket_tv_sendSuc">Successful issue</string>
<string name="ticket_default_allVip">All vip</string> <string name="ticket_default_allVip">All vip</string>
<string name="ticket_default_monthBirthday">Birthday of this month</string> <string name="ticket_default_monthBirthday">Birthday of this month</string>
<string name="ticket_default_nextMonthBirthday">Next month's birthday</string> <string name="ticket_default_nextMonthBirthday">Next month\'s birthday</string>
<string name="ticket_default_lostVip">Lost Vip</string> <string name="ticket_default_lostVip">Lost Vip</string>
......
...@@ -3,17 +3,17 @@ ...@@ -3,17 +3,17 @@
<!--店员管理--> <!--店员管理-->
<string name="user_toast_changeSuc">修改成功</string> <string name="user_toast_changeSuc">修改成功</string>
<string name="user_toast_ifDeleteUser">确定是否删除店员?</string> <string name="user_toast_ifDeleteUser">确定是否删除店员?</string>
<!--商品管理--> <!--商品管理-->
<string name="sku_default_skuname"></string> <string name="sku_default_skuname"></string>
<string name="sku_default_grpName">全部商品</string> <string name="sku_default_grpName">全部商品</string>
<string name="sku_title_iconHad">已有</string> <string name="sku_title_iconHad">已有</string>
<string name="sku_title_iconAdd">新增</string> <string name="sku_title_iconAdd">新增</string>
<string name="sku_toast_doSuc">操作成功</string> <string name="sku_toast_doSuc">操作成功</string>
<!--补货管理--> <!--补货管理-->
<string name="replenishment_toast_ifDelete">是否删除</string> <string name="replenishment_toast_ifDelete">是否删除</string>
<string name="replenishment_tv_item"></string> <string name="replenishment_tv_item"></string>
...@@ -26,15 +26,16 @@ ...@@ -26,15 +26,16 @@
<string name="replenishment_hint_supplierName">请输入供货商名称</string> <string name="replenishment_hint_supplierName">请输入供货商名称</string>
<string name="replenishment_tv_replenishmentDetail">定货详情</string> <string name="replenishment_tv_replenishmentDetail">定货详情</string>
<string name="replenishment_toast_noNeedDo">库存正常,无需补货</string> <string name="replenishment_toast_noNeedDo">库存正常,无需补货</string>
<string name="replenishment_tv_amt">金额</string>
<!--盘点界面--> <!--盘点界面-->
<string name="inventory_tv_cnt">盘点件数:</string> <string name="inventory_tv_cnt">盘点件数:</string>
<string name="inventory_tv_result">盘点结果:</string> <string name="inventory_tv_result">盘点结果:</string>
<string name="inventory_tv_date">盘点时间:</string> <string name="inventory_tv_date">盘点时间:</string>
<string name="inventory_tv_num">构成数量:</string> <string name="inventory_tv_num">构成数量:</string>
<string name="inventory_tv_systemCnt">系统库存:</string> <string name="inventory_tv_systemCnt">系统库存:</string>
<string name="inventory_tv_noEsc">暂不退出</string> <string name="inventory_tv_noEsc">暂不退出</string>
<string name="inventory_toast_ifDelete">退出前是否删除本次盘库记录</string> <string name="inventory_toast_ifDelete">退出前是否删除本次盘库记录</string>
<string name="inventory_toast_ifAdd">请确认添加记录</string> <string name="inventory_toast_ifAdd">请确认添加记录</string>
...@@ -42,7 +43,7 @@ ...@@ -42,7 +43,7 @@
<string name="inventory_toast_skuDone">商品已盘点</string> <string name="inventory_toast_skuDone">商品已盘点</string>
<string name="inventory_toast_ifDelete2">请确认删除此记录</string> <string name="inventory_toast_ifDelete2">请确认删除此记录</string>
<string name="inventory_tv_item">条目</string> <string name="inventory_tv_item">条目</string>
<!--统计界面--> <!--统计界面-->
<string name="statistics_tv_this">本店</string> <string name="statistics_tv_this">本店</string>
<string name="statistics_tv_dateM"></string> <string name="statistics_tv_dateM"></string>
...@@ -50,7 +51,7 @@ ...@@ -50,7 +51,7 @@
<string name="statistics_tv_orderList">订单列表</string> <string name="statistics_tv_orderList">订单列表</string>
<string name="statistics_toast_noPrint">无法打印</string> <string name="statistics_toast_noPrint">无法打印</string>
<string name="statistics_toast_refundSuc">退货成功</string> <string name="statistics_toast_refundSuc">退货成功</string>
<!--发券--> <!--发券-->
<string name="ticket_default_noDiscount">无折扣</string> <string name="ticket_default_noDiscount">无折扣</string>
<string name="ticket_title_allVip">全部会员</string> <string name="ticket_title_allVip">全部会员</string>
...@@ -72,6 +73,4 @@ ...@@ -72,6 +73,4 @@
<string name="ticket_default_lostVip">流失会员</string> <string name="ticket_default_lostVip">流失会员</string>
</resources> </resources>
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
<string name="replenishment_hint_supplierName">请输入供货商名称</string> <string name="replenishment_hint_supplierName">请输入供货商名称</string>
<string name="replenishment_tv_replenishmentDetail">定货详情</string> <string name="replenishment_tv_replenishmentDetail">定货详情</string>
<string name="replenishment_toast_noNeedDo">库存正常,无需补货</string> <string name="replenishment_toast_noNeedDo">库存正常,无需补货</string>
<string name="replenishment_tv_amt">金额</string>
<!--盘点界面--> <!--盘点界面-->
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment