feat: opt 进港查询

This commit is contained in:
2026-03-22 16:04:44 +08:00
parent 6c4e97945b
commit 072df758db
8 changed files with 16 additions and 24 deletions

View File

@@ -100,7 +100,9 @@
"Bash(export JAVA_HOME=/Users/kid/.vfox/sdks/java)", "Bash(export JAVA_HOME=/Users/kid/.vfox/sdks/java)",
"mcp__apifox__read_project_oas_kcl8s7", "mcp__apifox__read_project_oas_kcl8s7",
"mcp__apifox__refresh_project_oas_kcl8s7", "mcp__apifox__refresh_project_oas_kcl8s7",
"mcp__apifox__read_project_oas_ref_resources_kcl8s7" "mcp__apifox__read_project_oas_ref_resources_kcl8s7",
"mcp__apifox__read_project_oas_x3v6fh",
"mcp__apifox__read_project_oas_ref_resources_x3v6fh"
], ],
"deny": [], "deny": [],
"ask": [] "ask": []

View File

@@ -1 +1 @@
/Users/kid/.vfox/cache/java/v-17+35-amzn/java-17+35-amzn /Users/kid/.version-fox/cache/java/v-17+35-amzn/java-17+35-amzn

View File

@@ -11,8 +11,5 @@ class LogQueryViewHolder(view: View) : BaseViewHolder<LogBean, ItemLogQueryBindi
override fun onBind(item: Any?, position: Int) { override fun onBind(item: Any?, position: Int) {
val bean = getItemBean(item) val bean = getItemBean(item)
binding.bean = bean binding.bean = bean
itemView.setOnClickListener {
bean?.let { LogDetailActivity.start(itemView.context, it) }
}
} }
} }

View File

@@ -970,13 +970,6 @@ class HomeFragment : Fragment() {
"ULD管理" "ULD管理"
) )
) )
list.add(
RightMenu(
Constant.AuthName.ComprehensiveColdStorage,
com.lukouguoji.module_base.R.mipmap.gnc_cangku,
"冷库登记"
)
)
} }
else -> { else -> {

View File

@@ -22,7 +22,7 @@ class IntImpQueryFilterDialogModel(
val spCode: MutableLiveData<String>, val spCode: MutableLiveData<String>,
val spCodeList: MutableLiveData<List<KeyValue>>, val spCodeList: MutableLiveData<List<KeyValue>>,
val flightNo: MutableLiveData<String>, val flightNo: MutableLiveData<String>,
val dest: MutableLiveData<String>, val origin: MutableLiveData<String>,
val awbType: MutableLiveData<String>, val awbType: MutableLiveData<String>,
val businessType: MutableLiveData<String>, val businessType: MutableLiveData<String>,
val goodsCn: MutableLiveData<String>, val goodsCn: MutableLiveData<String>,
@@ -75,7 +75,7 @@ class IntImpQueryFilterDialogModel(
fun onResetClick() { fun onResetClick() {
spCode.value = "" spCode.value = ""
flightNo.value = "" flightNo.value = ""
dest.value = "" origin.value = ""
awbType.value = "" awbType.value = ""
businessType.value = "" businessType.value = ""
goodsCn.value = "" goodsCn.value = ""

View File

@@ -62,7 +62,7 @@ class IntImpQueryViewModel : BasePageViewModel(), IOnItemClickListener {
// ==================== 筛选条件 ==================== // ==================== 筛选条件 ====================
val spCode = MutableLiveData("") val spCode = MutableLiveData("")
val flightNo = MutableLiveData("") val flightNo = MutableLiveData("")
val dest = MutableLiveData("") val origin = MutableLiveData("")
val awbType = MutableLiveData("") val awbType = MutableLiveData("")
val businessType = MutableLiveData("") val businessType = MutableLiveData("")
val goodsCn = MutableLiveData("") val goodsCn = MutableLiveData("")
@@ -84,7 +84,7 @@ class IntImpQueryViewModel : BasePageViewModel(), IOnItemClickListener {
spCode = spCode, spCode = spCode,
spCodeList = spCodeList, spCodeList = spCodeList,
flightNo = flightNo, flightNo = flightNo,
dest = dest, origin = origin,
awbType = awbType, awbType = awbType,
businessType = businessType, businessType = businessType,
goodsCn = goodsCn, goodsCn = goodsCn,
@@ -104,7 +104,7 @@ class IntImpQueryViewModel : BasePageViewModel(), IOnItemClickListener {
"wbNo" to waybillNo.value!!.ifEmpty { null }, "wbNo" to waybillNo.value!!.ifEmpty { null },
"spCode" to spCode.value!!.ifEmpty { null }, "spCode" to spCode.value!!.ifEmpty { null },
"fno" to flightNo.value!!.ifEmpty { null }, "fno" to flightNo.value!!.ifEmpty { null },
"dest" to dest.value!!.ifEmpty { null }, "origin" to origin.value!!.ifEmpty { null },
"awbType" to awbType.value!!.ifEmpty { null }, "awbType" to awbType.value!!.ifEmpty { null },
"businessType" to businessType.value!!.ifEmpty { null }, "businessType" to businessType.value!!.ifEmpty { null },
"goods" to goodsCn.value!!.ifEmpty { null } "goods" to goodsCn.value!!.ifEmpty { null }
@@ -118,7 +118,7 @@ class IntImpQueryViewModel : BasePageViewModel(), IOnItemClickListener {
"wbNo" to waybillNo.value!!.ifEmpty { null }, "wbNo" to waybillNo.value!!.ifEmpty { null },
"spCode" to spCode.value!!.ifEmpty { null }, "spCode" to spCode.value!!.ifEmpty { null },
"fno" to flightNo.value!!.ifEmpty { null }, "fno" to flightNo.value!!.ifEmpty { null },
"dest" to dest.value!!.ifEmpty { null }, "origin" to origin.value!!.ifEmpty { null },
"awbType" to awbType.value!!.ifEmpty { null }, "awbType" to awbType.value!!.ifEmpty { null },
"businessType" to businessType.value!!.ifEmpty { null }, "businessType" to businessType.value!!.ifEmpty { null },
"goods" to goodsCn.value!!.ifEmpty { null } "goods" to goodsCn.value!!.ifEmpty { null }

View File

@@ -63,13 +63,13 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginBottom="10dp" /> android:layout_marginBottom="10dp" />
<!-- 目的--> <!-- 始发-->
<com.lukouguoji.module_base.ui.weight.data.layout.PadDataLayoutNew <com.lukouguoji.module_base.ui.weight.data.layout.PadDataLayoutNew
hint='@{"请输入目的港"}' hint='@{"请输入始发港"}'
title='@{"目的港"}' title='@{"始发港"}'
titleLength="@{4}" titleLength="@{4}"
type="@{DataLayoutType.INPUT}" type="@{DataLayoutType.INPUT}"
value='@={model.dest}' value='@={model.origin}'
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginBottom="10dp" /> android:layout_marginBottom="10dp" />

View File

@@ -88,7 +88,7 @@
<TextView <TextView
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text='@{String.valueOf(bean.awbPc)}' android:text='@{String.valueOf(bean.inPc)}'
tools:text="10" /> tools:text="10" />
</androidx.appcompat.widget.LinearLayoutCompat> </androidx.appcompat.widget.LinearLayoutCompat>
@@ -109,7 +109,7 @@
<TextView <TextView
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text='@{String.valueOf(bean.awbWeight)}' android:text='@{String.valueOf(bean.inWeight)}'
tools:text="200" /> tools:text="200" />
</androidx.appcompat.widget.LinearLayoutCompat> </androidx.appcompat.widget.LinearLayoutCompat>