Commit 377709c3 by Denglingling

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

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