Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
MiYaFastCashier
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
jiangjiantao
MiYaFastCashier
Commits
f42fba82
Commit
f42fba82
authored
Oct 31, 2022
by
赵鹏翔
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev_v2.1.6' into 'develop'
Dev v2.1.6 See merge request
!9
parents
d224c083
094baf4e
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
128 additions
and
56 deletions
+128
-56
LoginActivity.kt
app/src/main/java/com/miya/fastcashier/ui/LoginActivity.kt
+0
-3
SearchOrderActivity.kt
.../main/java/com/miya/fastcashier/ui/SearchOrderActivity.kt
+5
-2
activity_login.xml
app/src/main/res/layout/activity_login.xml
+8
-8
activity_search_order.xml
app/src/main/res/layout/activity_search_order.xml
+16
-4
colors.xml
app/src/main/res/values/colors.xml
+1
-0
版本历史.md
doc/版本历史.md
+5
-1
MiYaPayPlantformPayWayEnum.java
...r/lib_common/function/pay/MiYaPayPlantformPayWayEnum.java
+3
-7
PrintService.kt
...com/fastcashier/lib_common/function/print/PrintService.kt
+88
-29
versions.gradle
versions.gradle
+2
-2
No files found.
app/src/main/java/com/miya/fastcashier/ui/LoginActivity.kt
View file @
f42fba82
...
...
@@ -174,9 +174,6 @@ class LoginActivity : AppCompatActivity() {
// }
}
/**
* Extension function to simplify setting an afterTextChanged action to EditText components.
*/
private
fun
EditText
.
afterTextChanged
(
afterTextChanged
:
(
String
)
->
Unit
)
{
this
.
addTextChangedListener
(
object
:
TextWatcher
{
...
...
app/src/main/java/com/miya/fastcashier/ui/SearchOrderActivity.kt
View file @
f42fba82
...
...
@@ -54,13 +54,15 @@ class SearchOrderActivity : BaseActivity() {
binding
.
vpPage
.
adapter
=
object
:
FragmentStateAdapter
(
this
)
{
override
fun
getItemCount
():
Int
{
return
2
return
3
}
override
fun
createFragment
(
position
:
Int
):
Fragment
{
return
when
(
position
)
{
0
->
SearchOrderFragment
(
MiYaPayPlantformPayWayEnum
.
MiyaPayType
.
WEIXIN
)
else
->
SearchOrderFragment
(
MiYaPayPlantformPayWayEnum
.
MiyaPayType
.
ALIPAY
)
1
->
SearchOrderFragment
(
MiYaPayPlantformPayWayEnum
.
MiyaPayType
.
ALIPAY
)
else
->
SearchOrderFragment
(
MiYaPayPlantformPayWayEnum
.
MiyaPayType
.
TONGLIANZHIFU
)
}
}
}
...
...
@@ -72,6 +74,7 @@ class SearchOrderActivity : BaseActivity() {
when
(
position
)
{
0
->
tab
.
text
=
"微信"
1
->
tab
.
text
=
"支付宝"
2
->
tab
.
text
=
"通联支付"
else
->
tab
.
text
=
""
}
}.
attach
()
...
...
app/src/main/res/layout/activity_login.xml
View file @
f42fba82
...
...
@@ -2,7 +2,7 @@
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:app=
"http://schemas.android.com/apk/res-auto"
xmlns:tools=
"http://schemas.android.com/tools"
android:id=
"@+id/container"
android:id=
"@+id/c
l_c
ontainer"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
tools:context=
".ui.LoginActivity"
>
...
...
@@ -60,7 +60,7 @@
app:layout_constraintVertical_bias=
"0.2"
/>
<ImageView
android:id=
"@+id/iv
L
ogo"
android:id=
"@+id/iv
_l
ogo"
android:layout_width=
"120dp"
android:layout_height=
"120dp"
android:layout_marginStart=
"39dp"
...
...
@@ -78,11 +78,11 @@
android:text=
"您好,欢迎登录!"
android:textColor=
"@color/black"
android:textSize=
"48sp"
app:layout_constraintStart_toEndOf=
"@+id/iv
L
ogo"
app:layout_constraintTop_toTopOf=
"@+id/iv
L
ogo"
/>
app:layout_constraintStart_toEndOf=
"@+id/iv
_l
ogo"
app:layout_constraintTop_toTopOf=
"@+id/iv
_l
ogo"
/>
<TextView
android:id=
"@+id/tv
S
log"
android:id=
"@+id/tv
_s
log"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginStart=
"23dp"
...
...
@@ -90,8 +90,8 @@
android:text=
"欢迎使用匡威商米收银"
android:textColor=
"#666666"
android:textSize=
"28sp"
app:layout_constraintBottom_toBottomOf=
"@+id/iv
L
ogo"
app:layout_constraintStart_toEndOf=
"@+id/iv
L
ogo"
/>
app:layout_constraintBottom_toBottomOf=
"@+id/iv
_l
ogo"
app:layout_constraintStart_toEndOf=
"@+id/iv
_l
ogo"
/>
<TextView
android:id=
"@+id/tv_error_info"
...
...
@@ -101,7 +101,7 @@
android:textColor=
"#FF5A59"
android:textSize=
"24sp"
android:visibility=
"gone"
app:layout_constraintStart_toEndOf=
"@+id/iv
L
ogo"
app:layout_constraintStart_toEndOf=
"@+id/iv
_l
ogo"
app:layout_constraintStart_toStartOf=
"@+id/et_username"
app:layout_constraintTop_toBottomOf=
"@+id/et_password"
/>
...
...
app/src/main/res/layout/activity_search_order.xml
View file @
f42fba82
...
...
@@ -8,15 +8,27 @@
android:id=
"@+id/title"
layout=
"@layout/title"
/>
<View
android:id=
"@+id/v_block"
android:layout_width=
"match_parent"
android:layout_height=
"85dp"
android:background=
"@color/white"
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintEnd_toEndOf=
"parent"
android:layout_marginTop=
"87dp"
app:layout_constraintTop_toTopOf=
"parent"
/>
<com.google.android.material.tabs.TabLayout
android:id=
"@+id/tlIndicator"
android:layout_width=
"match_parent"
android:layout_height=
"85dp"
android:layout_marginTop=
"87dp"
android:background=
"@color/white"
app:layout_constraintTop_toTopOf=
"parent"
android:layout_marginEnd=
"30dp"
app:layout_constraintTop_toTopOf=
"@id/v_block"
app:layout_constraintStart_toStartOf=
"@id/v_block"
app:layout_constraintBottom_toBottomOf=
"@id/v_block"
app:layout_constraintEnd_toEndOf=
"@id/v_block"
app:tabGravity=
"fill"
app:tabIndicatorColor=
"
#
FF4B8A"
app:tabIndicatorColor=
"
@color/color_
FF4B8A"
app:tabIndicatorFullWidth=
"false"
app:tabIndicatorHeight=
"5dp"
app:tabMode=
"fixed"
...
...
app/src/main/res/values/colors.xml
View file @
f42fba82
...
...
@@ -25,6 +25,7 @@
<color
name=
"color_141C30"
>
#141C30
</color>
<color
name=
"color_D1D1DC"
>
#D1D1DC
</color>
<color
name=
"color_323233"
>
#323233
</color>
<color
name=
"color_FF4B8A"
>
#FF4B8A
</color>
<color
name=
"lfile_colorAccent"
>
#FF8000
</color>
<color
name=
"lfile_colorPrimary"
>
#FF8000
</color>
...
...
doc/版本历史.md
View file @
f42fba82
# 版本历史
## tag
####v2.1.6 :
-通联支付方式对接,打印、查询订单功能新增通联相关业务
## tag
####优化版本 :
-基础业务组件抽取,libcommon库抽取
-混淆配置,灰度转正式
## tag
####v2.1.
6
:
####v2.1.
5.1
:
-统计打印业务逻辑优化,时间选择控件优化
## tag
...
...
lib_common/src/main/java/com/fastcashier/lib_common/function/pay/MiYaPayPlantformPayWayEnum.java
View file @
f42fba82
...
...
@@ -23,12 +23,13 @@ public class MiYaPayPlantformPayWayEnum {
GONGHANG
(
"K"
,
"工行"
),
FEIFAN
(
"L"
,
"飞凡"
),
HUARUIYINHANG
(
"M"
,
"华润银行"
),
YINLIANQIANBAO
(
"N"
,
"银联钱包"
),
JINGDONG2
(
"P"
,
"京东钱包2.0"
),
RUNQIANBAO
(
"T"
,
"润钱包"
),
YIDONG
(
"U"
,
"移动钱包"
),
MINSHENG
(
"S"
,
"民生银行"
),
YINLIANSHANGWU
(
"Q"
,
"银联商务"
);
YINLIANSHANGWU
(
"Q"
,
"银联商务"
),
TONGLIANZHIFU
(
"N"
,
"通联支付"
);
//N实际上是银联钱包,但是匡威平台银联支付走的是通联支付的渠道,app内默认处理成通联支付的形式
// YINLIANQIANBAO("N", "银联钱包");
/**
* 资源id
...
...
@@ -69,9 +70,4 @@ public class MiYaPayPlantformPayWayEnum {
}
}
}
lib_common/src/main/java/com/fastcashier/lib_common/function/print/PrintService.kt
View file @
f42fba82
package
com.fastcashier.lib_common.function.print
import
android.text.TextUtils
import
com.fastcashier.lib_common.BuildConfig
import
com.fastcashier.lib_common.function.account.AccountService
import
com.fastcashier.lib_common.function.account.SelfCashierAccountInfo
import
com.fastcashier.lib_common.function.pay.MiYaPayPlantformPayWayEnum
...
...
@@ -60,25 +61,25 @@ object PrintService {
selfCashierAccountInfo
:
SelfCashierAccountInfo
,
serialNumber
:
String
)
{
// if (BuildConfig.DEBUG) {
// printCashier(printer, payServiceResponse, selfCashierAccountInfo, serialNumber)
// } else {
printCashier
(
printer
,
payServiceResponse
,
selfCashierAccountInfo
,
serialNumber
)
Timer
().
schedule
(
4000
)
{
printCustomer
(
if
(
BuildConfig
.
DEBUG
)
{
printCashier
(
printer
,
payServiceResponse
,
selfCashierAccountInfo
,
serialNumber
)
}
else
{
printCashier
(
printer
,
payServiceResponse
,
selfCashierAccountInfo
,
serialNumber
)
Timer
().
schedule
(
4000
)
{
printCustomer
(
printer
,
payServiceResponse
,
selfCashierAccountInfo
,
serialNumber
)
}
}
// }
}
/**
...
...
@@ -125,7 +126,13 @@ object PrintService {
if
(
couponDetail
.
size
>=
2
&&
!
TextUtils
.
isEmpty
(
couponDetail
[
1
])
&&
couponDetail
[
1
]
!=
"0"
&&
couponDetail
[
1
]
!=
"0.00"
)
{
val
shopCoupon
=
couponDetail
[
1
]
//打印商家优惠
printer
.
printText
(
"商家优惠:${StringPriceFormatUtils.transStringPriceToDecimalString(shopCoupon)}元"
)
printer
.
printText
(
"商家优惠:${
StringPriceFormatUtils
.
transStringPriceToDecimalString
(
shopCoupon
)
}
元
"
)
}
if
(
couponDetail
.
size
>=
3
&&
!
TextUtils
.
isEmpty
(
couponDetail
[
2
])
&&
couponDetail
[
2
]
!=
"0"
&&
couponDetail
[
2
]
!=
"0.00"
)
{
//平台优惠
...
...
@@ -142,7 +149,13 @@ object PrintService {
}
if
(
couponDetail
.
isNotEmpty
()
&&
!
TextUtils
.
isEmpty
(
couponDetail
[
0
]))
{
val
payPrice
=
couponDetail
[
0
]
printer
.
printText
(
"客户支付:${StringPriceFormatUtils.transStringPriceToDecimalString(payPrice)}元"
)
printer
.
printText
(
"客户支付:${
StringPriceFormatUtils
.
transStringPriceToDecimalString
(
payPrice
)
}
元
"
)
}
printer
.
printText
(
"持卡人签名:"
)
...
...
@@ -197,7 +210,13 @@ object PrintService {
if
(
couponDetail
.
size
>=
2
&&
!
TextUtils
.
isEmpty
(
couponDetail
[
1
])
&&
couponDetail
[
1
]
!=
"0"
&&
couponDetail
[
1
]
!=
"0.00"
)
{
val
shopCoupon
=
couponDetail
[
1
]
//打印商家优惠
printer
.
printText
(
"商家优惠:${StringPriceFormatUtils.transStringPriceToDecimalString(shopCoupon)}元"
)
printer
.
printText
(
"商家优惠:${
StringPriceFormatUtils
.
transStringPriceToDecimalString
(
shopCoupon
)
}
元
"
)
}
if
(
couponDetail
.
size
>=
3
&&
!
TextUtils
.
isEmpty
(
couponDetail
[
2
])
&&
couponDetail
[
2
]
!=
"0"
&&
couponDetail
[
2
]
!=
"0.00"
)
{
//平台优惠
...
...
@@ -214,7 +233,13 @@ object PrintService {
}
if
(
couponDetail
.
isNotEmpty
()
&&
!
TextUtils
.
isEmpty
(
couponDetail
[
0
]))
{
val
payPrice
=
couponDetail
[
0
]
printer
.
printText
(
"客户支付:${StringPriceFormatUtils.transStringPriceToDecimalString(payPrice)}元"
)
printer
.
printText
(
"客户支付:${
StringPriceFormatUtils
.
transStringPriceToDecimalString
(
payPrice
)
}
元
"
)
}
printer
.
printText
(
"\n\n"
)
}
...
...
@@ -270,17 +295,25 @@ object PrintService {
payServiceResponse
:
PayServiceResponse
,
selfCashierAccountInfo
:
SelfCashierAccountInfo
)
{
refundPrintCashier
(
printer
,
payServiceResponse
,
selfCashierAccountInfo
)
Timer
().
schedule
(
4000
)
{
refundPrintCustomer
(
if
(
BuildConfig
.
DEBUG
)
{
refundPrintCashier
(
printer
,
payServiceResponse
,
selfCashierAccountInfo
)
}
else
{
refundPrintCashier
(
printer
,
payServiceResponse
,
selfCashierAccountInfo
)
Timer
().
schedule
(
4000
)
{
refundPrintCustomer
(
printer
,
payServiceResponse
,
selfCashierAccountInfo
)
}
}
}
...
...
@@ -329,7 +362,13 @@ object PrintService {
if
(
couponDetail
.
size
>=
2
&&
!
TextUtils
.
isEmpty
(
couponDetail
[
1
])
&&
couponDetail
[
1
]
!=
"0"
&&
couponDetail
[
1
]
!=
"0.00"
)
{
val
shopCoupon
=
couponDetail
[
1
]
//打印商家优惠
printer
.
printText
(
"商家优惠:${StringPriceFormatUtils.transStringPriceToDecimalString(shopCoupon)}元"
)
printer
.
printText
(
"商家优惠:${
StringPriceFormatUtils
.
transStringPriceToDecimalString
(
shopCoupon
)
}
元
"
)
}
if
(
couponDetail
.
size
>=
3
&&
!
TextUtils
.
isEmpty
(
couponDetail
[
2
])
&&
couponDetail
[
2
]
!=
"0"
&&
couponDetail
[
2
]
!=
"0.00"
)
{
//平台优惠
...
...
@@ -346,7 +385,13 @@ object PrintService {
}
if
(
couponDetail
.
isNotEmpty
()
&&
!
TextUtils
.
isEmpty
(
couponDetail
[
0
]))
{
val
payPrice
=
couponDetail
[
0
]
printer
.
printText
(
"客户支付:${StringPriceFormatUtils.transStringPriceToDecimalString(payPrice)}元"
)
printer
.
printText
(
"客户支付:${
StringPriceFormatUtils
.
transStringPriceToDecimalString
(
payPrice
)
}
元
"
)
}
printer
.
printText
(
"持卡人签名:"
)
...
...
@@ -402,7 +447,13 @@ object PrintService {
if
(
couponDetail
.
size
>=
2
&&
!
TextUtils
.
isEmpty
(
couponDetail
[
1
])
&&
couponDetail
[
1
]
!=
"0"
&&
couponDetail
[
1
]
!=
"0.00"
)
{
val
shopCoupon
=
couponDetail
[
1
]
//打印商家优惠
printer
.
printText
(
"商家优惠:${StringPriceFormatUtils.transStringPriceToDecimalString(shopCoupon)}元"
)
printer
.
printText
(
"商家优惠:${
StringPriceFormatUtils
.
transStringPriceToDecimalString
(
shopCoupon
)
}
元
"
)
}
if
(
couponDetail
.
size
>=
3
&&
!
TextUtils
.
isEmpty
(
couponDetail
[
2
])
&&
couponDetail
[
2
]
!=
"0"
&&
couponDetail
[
2
]
!=
"0.00"
)
{
//平台优惠
...
...
@@ -419,7 +470,13 @@ object PrintService {
}
if
(
couponDetail
.
isNotEmpty
()
&&
!
TextUtils
.
isEmpty
(
couponDetail
[
0
]))
{
val
payPrice
=
couponDetail
[
0
]
printer
.
printText
(
"客户支付:${StringPriceFormatUtils.transStringPriceToDecimalString(payPrice)}元"
)
printer
.
printText
(
"客户支付:${
StringPriceFormatUtils
.
transStringPriceToDecimalString
(
payPrice
)
}
元
"
)
}
printer
.
printText
(
"\n\n"
)
}
...
...
@@ -536,7 +593,9 @@ object PrintService {
printer
.
printText
(
Page58MmPrintUtils
.
printTwoData
(
"退款金额"
,
""
+
StringPriceFormatUtils
.
transStringPriceToDecimalString
(
statisticBean
.
refundTotalAmount
.
toString
())
""
+
StringPriceFormatUtils
.
transStringPriceToDecimalString
(
statisticBean
.
refundTotalAmount
.
toString
()
)
)
)
}
...
...
versions.gradle
View file @
f42fba82
ext
{
VERSION_CODE
=
2
6
VERSION_NAME
=
'2.1.
5
'
VERSION_CODE
=
2
7
VERSION_NAME
=
'2.1.
6
'
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment