33版本,装货序号显示错乱

This commit is contained in:
lijia 2024-12-18 15:50:54 +08:00
parent d6621e58ce
commit 74e61652f6
2 changed files with 8 additions and 2 deletions

View File

@ -34,8 +34,8 @@ android {
applicationId "com.oneclouds.cargo"
minSdkVersion 23
targetSdkVersion 30
versionCode 32
versionName "3.1.2"
versionCode 33
versionName "3.1.3"
flavorDimensions "CHANNEL_VALUE"

View File

@ -605,6 +605,12 @@ class AnotherOrderActivity : BaseActivity() {
{
oib.isSubmit = 1
oib.formData.isSubmit = 1
oib.putTableData.forEachIndexed { index, putTableDataDTO ->
putTableDataDTO.sort = index+1
}
oib.sendTableData.forEachIndexed { index, putTableDataDTO ->
putTableDataDTO.sort = index+1
}
oib.sendTableData[0].totalPrice =
etMoney.text.toString().toDouble()
Log.e("货源信息", Gson().toJson(oib))