Skip to content

Commit b1438e7

Browse files
authored
Merge pull request #40 from rMozg/fix_search_by_barcode
Fix search by barcode
2 parents 5fe05a9 + 0226a22 commit b1438e7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/src/main/java/ru/evotor/framework/receipt/PositionTable.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package ru.evotor.framework.receipt
33
import android.net.Uri
44

55
object PositionTable {
6-
@JvmField val URI = Uri.withAppendedPath(ReceiptApi.BASE_URI, "Position")
6+
@JvmField val URI = Uri.withAppendedPath(ReceiptApi.BASE_URI, "position")
77
const val ROW_POSITION_UUID = "POSITION_UUID"
88
const val ROW_PARENT_POSITION_UUID = "PARENT_POSITION_UUID"
99
const val ROW_PRODUCT_UUID = "PRODUCT_UUID"

app/src/main/java/ru/evotor/framework/receipt/ReceiptApi.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import ru.evotor.framework.inventory.ProductType
77
import java.math.BigDecimal
88

99
object ReceiptApi {
10-
const val AUTHORITY = "ru.evotor.receipt"
10+
const val AUTHORITY = "ru.evotor.evotorpos.receipt"
1111

1212
@JvmField val BASE_URI = Uri.parse("content://$AUTHORITY")
1313

0 commit comments

Comments
 (0)