mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-22 09:26:36 +08:00
完善采购订单备注
This commit is contained in:
Binary file not shown.
@@ -16,6 +16,7 @@ namespace Yi.Framework.DtoModel.ERP.Purchase
|
|||||||
public long TotalMoney { get; set; }
|
public long TotalMoney { get; set; }
|
||||||
public long PaidMoney { get; set; }
|
public long PaidMoney { get; set; }
|
||||||
|
|
||||||
|
public string? Remarks { get; set; }
|
||||||
public string SupplierName { get; set; } = string.Empty;
|
public string SupplierName { get; set; } = string.Empty;
|
||||||
public PurchaseStateEnum PurchaseState { get; set; }
|
public PurchaseStateEnum PurchaseState { get; set; }
|
||||||
|
|
||||||
|
|||||||
@@ -16,6 +16,8 @@ namespace Yi.Framework.DtoModel.ERP.Purchase
|
|||||||
public DateTime? NeedTime { get; set; }
|
public DateTime? NeedTime { get; set; }
|
||||||
public string Buyer { get; set; } = string.Empty;
|
public string Buyer { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
public string? Remarks { get; set; }
|
||||||
|
|
||||||
public long SupplierId { get; set; }
|
public long SupplierId { get; set; }
|
||||||
|
|
||||||
public List<PurchaseDetailsCreateUpdateInput>? PurchaseDetails { get; set; }
|
public List<PurchaseDetailsCreateUpdateInput>? PurchaseDetails { get; set; }
|
||||||
|
|||||||
@@ -16,6 +16,8 @@ namespace Yi.Framework.DtoModel.ERP.Purchase
|
|||||||
public string? Buyer { get; set; }
|
public string? Buyer { get; set; }
|
||||||
public long TotalMoney { get; set; }
|
public long TotalMoney { get; set; }
|
||||||
public long PaidMoney { get; set; }
|
public long PaidMoney { get; set; }
|
||||||
|
|
||||||
|
public string? Remarks { get; set; }
|
||||||
public PurchaseStateEnum PurchaseState { get; set; }
|
public PurchaseStateEnum PurchaseState { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -57,6 +57,11 @@ namespace Yi.Framework.Model.ERP.Entitys
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public float PaidMoney { get; set; }
|
public float PaidMoney { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 备注
|
||||||
|
/// </summary>
|
||||||
|
public string? Remarks { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 采购状态
|
/// 采购状态
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
@@ -459,7 +459,7 @@
|
|||||||
<el-input placeholder="请输入物料" />
|
<el-input placeholder="请输入物料" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="6">
|
||||||
<el-form-item label="创建时间" style="width: 308px">
|
<el-form-item label="创建时间" style="width: 308px">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
value-format="YYYY-MM-DD"
|
value-format="YYYY-MM-DD"
|
||||||
@@ -470,6 +470,13 @@
|
|||||||
></el-date-picker>
|
></el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
<el-col :span="10">
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" icon="Search"
|
||||||
|
>查询</el-button
|
||||||
|
>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
@@ -493,7 +500,7 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-form-item label="备注" prop="remarks">
|
<el-form-item label="订单备注" prop="remarks">
|
||||||
{{ form.remarks }}
|
{{ form.remarks }}
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
@@ -669,6 +676,7 @@ function handleGet(row) {
|
|||||||
getListByPurchaseId(row.id).then((response) => {
|
getListByPurchaseId(row.id).then((response) => {
|
||||||
form.value.purchaseDetails = response.data;
|
form.value.purchaseDetails = response.data;
|
||||||
});
|
});
|
||||||
|
form.value.remarks=row.remarks;
|
||||||
openDetails.value = true;
|
openDetails.value = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user