Commit 377709c3 by Denglingling

完善器械消耗展示内容-厂家产品代码

parent 34bd4432
...@@ -64,6 +64,7 @@ class ConsumDetailsPage extends Component { ...@@ -64,6 +64,7 @@ class ConsumDetailsPage extends Component {
surgery_collect_number: orderId surgery_collect_number: orderId
} }
let detailResult = await requestEquipDetails(global_domain_config, params) let detailResult = await requestEquipDetails(global_domain_config, params)
console.log('消耗明细 res===', detailResult)
if(detailResult.error_code === 0) { if(detailResult.error_code === 0) {
let {lines} = detailResult.data let {lines} = detailResult.data
// 需要过滤已提过消耗的数据 raised_consume="Y" // 需要过滤已提过消耗的数据 raised_consume="Y"
...@@ -302,20 +303,20 @@ class ConsumDetailsPage extends Component { ...@@ -302,20 +303,20 @@ class ConsumDetailsPage extends Component {
</View> </View>
<View style={styles.sub_list_rig}> <View style={styles.sub_list_rig}>
<Text style={styles.rig_tit}> <Text style={styles.rig_tit}>
{index+1}. {item.general_name ? item.general_name : '通用名称无'} {index+1}. {item.manufacturer_product_code ? item.manufacturer_product_code : '厂家产品代码无'}
</Text> </Text>
<Text style={[styles.rig_ser, styles.te_ot_str]}> <Text style={[styles.rig_ser, styles.te_ot_str]}>
物料名称 {item.item_name ? item.item_name : '无'} 物料名称 {item.item_name ? item.item_name : '无'}
</Text> </Text>
<Text style={[styles.rig_ser, styles.te_ot_one]}> <Text style={[styles.rig_ser, styles.te_ot_one]}>
通用名称 {item.general_name ? item.general_name : '无'}
</Text>
<Text style={[styles.rig_ser, styles.te_ot_one]}>
规格型号:{item.specification ? item.specification : '无'} 规格型号:{item.specification ? item.specification : '无'}
</Text> </Text>
<Text style={[styles.rig_ser, styles.te_ot_two]}> <Text style={[styles.rig_ser, styles.te_ot_thr]}>
序列号:{item.serial_number ? item.serial_number : '无'} 序列号:{item.serial_number ? item.serial_number : '无'}
</Text> </Text>
{/* <Text style={styles.rig_ser}>
厂家产品代码:{item.manufacturer_product_code ? item.manufacturer_product_code : '无'}
</Text> */}
</View> </View>
</TouchableOpacity> </TouchableOpacity>
) )
......
...@@ -96,20 +96,20 @@ class FillUnitPricePage extends Component { ...@@ -96,20 +96,20 @@ class FillUnitPricePage extends Component {
return( return(
<View style={styles.cons_sub_list}> <View style={styles.cons_sub_list}>
<Text style={styles.cont_tit}> <Text style={styles.cont_tit}>
{index+1}. {item.general_name ? item.general_name : '通用名称无'} {index+1}. {item.manufacturer_product_code ? item.manufacturer_product_code : '厂家产品代码无'}
</Text> </Text>
<Text style={[styles.cont_ser, styles.te_ot_str]}> <Text style={[styles.cont_ser, styles.te_ot_str]}>
物料名称:{item.item_name ? item.item_name : '无'} 物料名称:{item.item_name ? item.item_name : '无'}
</Text> </Text>
<Text style={[styles.cont_ser, styles.te_ot_one]}> <Text style={[styles.cont_ser, styles.te_ot_one]}>
通用名称:{item.general_name ? item.general_name : '无'}
</Text>
<Text style={[styles.cont_ser, styles.te_ot_one]}>
规格型号:{item.specification ? item.specification : '无'} 规格型号:{item.specification ? item.specification : '无'}
</Text> </Text>
<Text style={[styles.cont_ser, styles.te_ot_two]}> <Text style={[styles.cont_ser, styles.te_ot_thr]}>
序列号:{item.serial_number ? item.serial_number : '无'} 序列号:{item.serial_number ? item.serial_number : '无'}
</Text> </Text>
{/* <Text style={styles.cont_ser}>
厂家产品代码:{item.manufacturer_product_code ? item.manufacturer_product_code : '无'}
</Text> */}
<View style={styles.cont_pri}> <View style={styles.cont_pri}>
<Text style={styles.pri_icon}>*</Text> <Text style={styles.pri_icon}>*</Text>
<Text style={styles.pri_inner}>单价:</Text> <Text style={styles.pri_inner}>单价:</Text>
......
...@@ -85,20 +85,20 @@ class ShowDetailPage extends Component { ...@@ -85,20 +85,20 @@ class ShowDetailPage extends Component {
return( return(
<View style={styles.cons_sub_list}> <View style={styles.cons_sub_list}>
<Text style={styles.cont_tit}> <Text style={styles.cont_tit}>
{index+1}. {item.general_name ? item.general_name : '通用名称无'} {index+1}. {item.manufacturer_product_code ? item.manufacturer_product_code : '厂家产品代码无'}
</Text> </Text>
<Text style={[styles.cont_ser, styles.te_ot_str]}> <Text style={[styles.cont_ser, styles.te_ot_str]}>
物料名称:{item.item_name ? item.item_name : '无'} 物料名称:{item.item_name ? item.item_name : '无'}
</Text> </Text>
<Text style={[styles.cont_ser, styles.te_ot_one]}> <Text style={[styles.cont_ser, styles.te_ot_one]}>
通用名称:{item.general_name ? item.general_name : '无'}
</Text>
<Text style={[styles.cont_ser, styles.te_ot_one]}>
规格型号:{item.specification ? item.specification : '无'} 规格型号:{item.specification ? item.specification : '无'}
</Text> </Text>
<Text style={[styles.cont_ser, styles.te_ot_two]}> <Text style={[styles.cont_ser, styles.te_ot_thr]}>
序列号:{item.serial_number ? item.serial_number : '无'} 序列号:{item.serial_number ? item.serial_number : '无'}
</Text> </Text>
{/* <Text style={styles.cont_ser}>
厂家产品代码:{item.manufacturer_product_code ? item.manufacturer_product_code : '无'}
</Text> */}
</View> </View>
) )
} }
......
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 sign in to comment