Commit ef165d4b by 泽锋 李

fix

parent f48ee5f9
......@@ -71,6 +71,7 @@ namespace AutoTurnOver.DB
amount = (itemSku.price ?? 0) * itemSku.count,
quantity = itemSku.count,
bailun_sku = itemSku.bailun_sku,
sku_name = itemSku.sku_name,
main_id = new_main_id,
price = (itemSku.price ?? 0)
});
......@@ -110,6 +111,7 @@ t2.purchase_id,
t2.warehouse_code,
t2.warehouse_name,
t1.bailun_sku,
t1.sku_name,
t1.price,
t1.quantity,
t1.amount
......
......@@ -24,6 +24,7 @@ namespace AutoTurnOver.Models
public int id { get; set; }
public int main_id { get; set; }
public string bailun_sku { get; set; }
public string sku_name { get; set; }
public decimal price { get; set; }
public int quantity { get; set; }
......@@ -50,6 +51,7 @@ namespace AutoTurnOver.Models
public string warehouse_code { get; set; }
public string warehouse_name { get; set; }
public string bailun_sku { get; set; }
public string sku_name { get; set; }
public decimal price { get; set; }
public int quantity { get; set; }
......
......@@ -11,6 +11,10 @@ namespace AutoTurnOver.Services
{
return DB.dc_auto_return_goods_config_dao.SkuPage(m, offset, limit, ref total);
}
public List<dc_auto_pick_up_goods_order_view_dto> PickSkuPage(dc_auto_return_goods_sku_search_dto m, int offset, int limit, ref int total)
{
return DB.dc_auto_pick_up_goods_order_dao.SkuPage(m, offset, limit, ref total);
}
public void Push(dc_auto_return_goods_sku_search_dto input_data, UserData user)
{
......
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 to comment